Loop

Description

All actions contained within the loop are executed for each item in the specified collection.

Inputs and Outputs

Loop On - Identifies the collection to be looped through. The collection must be of type list, string-list, property-map-list, or result-set. If the collection is of type list, string-list, or property-map-list then for each iteration a loop local variable is created having the same name as the collection being looped on. The value of the local variable is set to the to the item in the collection corresponding to the current iteration, which is assumed to be either a string or a property map. The variable can be referenced within the loop. If the collection is of type result set, then for each iteration of the loop local the result set column names are used to create loop local variables containing the value of the column for current row. The variable can be referenced within the loop