Function: a!recordActionItem()
Displays a record action defined within a record action field. A record action is an end-user action configured within a record type object, such as a related action or a record list action.
See also: Record Action Field
Name | Keyword | Types | Description |
---|---|---|---|
Action |
|
Record Action Reference |
A specific record action reference associated with an Appian record type, configured using |
Identifier |
|
Any Type |
Individual record ID within the record type. Only required for related actions.
|
Notes
Record actions are specific to record types within your environment. If you copy and paste this example into the Expression editor, it will not evaluate in your Test Rules interface. Use it only as a reference.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
=a!recordActionField(
actions: {
a!recordActionItem(
/* For the "action" parameter below, replace the record-action reference
* (recordType!Department.actions.create) with a valid record-action reference in your environment.
*/
action: recordType!Department.actions.create
),
a!recordActionItem(
/* For the "action" parameter below, replace the record-action reference
* (recordType!Department.actions.update) with a valid record-action reference in your environment.
*/
action: recordType!Department.actions.update,
identifier: ri!departmentId
)
}
)
Displays the following: