- Developing Applications with Oracle Visual Builder in Oracle Integration 3
- Develop Applications
- Work With JSON Action Chains
- Built-in Actions
- Add a For Each Action
Add a For Each Action
You add a For Each action to execute another action for each item in an array. The action in the loop will be executed once for each item in the array.
To add a For Each action to an action chain:
- Open the Actions editor, for example, at the page level.
- Create an action chain, or open an existing action chain to add the action in the editor.
- Drag For Each from the Logic section of the Actions palette into the action chain.
You can drag the action onto the Add icon (
) in the action chain, or between existing actions in the chain.
Description of the illustration foreach-add.png - Configure the action's properties in the Properties pane:
- Update the ID field to make the action more easily identifiable.
- Click Assign next to Parameters to set up an expression for the
items
parameter that evaluates to an array, for example,$page.variables.ExpenseReportADP.data
:The For Each action uses 'items' and the 'actionId' and adds a
$current
context variable for the called action to access the current item. You can inject additional properties into the available contexts for the called action to reference in its parameter expressions (as we'll see in subsequent steps). - If you want to use your own context name, enter an alias for
$current
in the As field, for example, foo. This alias can then be referenced in nested called actions. - Define whether your called actions must run serially (default) or in parallel. Regardless of the mode, the For Each action will not complete until the actions for each item in the
items
array are complete.
- Now click the Add icon (
) inside the cycle loop and add the action you want to loop over the array. Here's an example that adds an action to call the
PATCH /ExpenseReport/{ExpenseReport_Id}
REST endpoint.When assigning the results of the REST call to a variable, you can use the following parameter expressions for the called action:Parameter Name Description $current.data
The current array item. $current.index
The current array index. alias.data
An alternate syntax for $current.data
, which allows a reference to$current
from nested contexts.alias.index
An alternate syntax for $current.index
, which allows a reference to$current
from nested contexts.For example, to pass the ID of the current expense report in the loop, you can use
$current.index
in the source expression:
Description of the illustration foreach-assignparams-currentindex.pngIf you defined a context alias, for example,
foo
, you'd be able to create expressions that referencefoo.data
andfoo.index
:
Description of the illustration foreach-asalias.pngThe outcome of the action is either "success", with an array containing the return value of the last action's results or "failure" if there is some exception/error.
- As a final step, click the Add icon (
) to add an action (for example, a Fire Notification action) where the For Each action's loops ends.