a!sblDelete( scsExternalSystemKey, usePerUserCredentials, hostname, port, enterpriseApp, appManager, language, parameters )
Deletes a record from Siebel.
Keyword | Type | Description |
---|---|---|
|
Text |
The key from the Third Party Credentials admin console page that corresponds to the set of credentials that should be used to authenticate. |
|
Boolean |
If |
|
Text |
The application server host of the SAP server (ASHOST). The value can be an IP address, a fully-qualified domain name, or SAP's router string format. For example, |
|
Number (Integer) |
The port the Siebel server is listening on. For example, |
|
Text |
The enterprise application of the target system. For example, |
|
Text |
The active application manager of the target system. For example, |
|
Text |
The target system language. For example, |
|
Any Type |
The record to delete, given as a dictionary with the field structure of the Siebel Business Component and Business Object to delete. |
Writer
This function returns a writer and must be used with the bind() function.
Copy and paste an example into an Appian Expression Editor to experiment with it.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
=load(
local!sblId,
local!sblDeleteWriter: bind(
null,
a!sblDelete(
scsExternalSystemKey: cons!SBL_SCS_KEY,
usePerUserCredentials: true,
hostname: cons!SBL_HOSTNAME,
port: cons!SBL_PORT,
enterpriseApp: cons!SBL_APP,
appManager: cons!SBL_APP_MANAGER,
language: cons!SBL_LANGUAGE,
parameters: _
)
),
{
a!textField(
label: "Object ID",
instructions: "Enter the ID of the Siebel object to delete",
value: local!sblId,
saveInto: local!sblId
),
a!buttonArrayLayout(
buttons: {
a!buttonWidget(
label: "Delete",
value: {
'Order Entry (Sales)': { 'Order Entry - Orders': {}, Id: local!sblId }
},
saveInto: local!sblDeleteWriter
)
}
)
}
)
Feature | Compatibility | Note |
---|---|---|
Portals | Partially compatible | Can be used with Appian Portals if it is connected using an integration and web API. |
Offline Mobile | Partially compatible | Can be used with offline mobile if it is loaded at the top of the form. |
Sync-Time Custom Record Fields | Incompatible | |
Real-Time Custom Record Fields | Incompatible | Custom record fields that evaluate in real time must be configured using one or more Custom Field functions. |
Process Reports | Incompatible | Cannot be used to configure a process report. |
Process Events | Incompatible | Cannot be used to configure a process event node, such as a start event or timer event. |
a!sblDelete() Function