Flow Services-Invoke (Functions):Use the INVOKE step to request a service within a flow. *Invoke flow services recursively (that is, a flow service that calls itself). If you use a flow service recursively, bear in mind that you must provide a means to end the recursion. *Invoke any...Jul 24, 2023·1 min read
Flow Services-Repeat ContinueSpecifying the REPEAT Condition : When you build a REPEAT step, you set the Repeat on property to specify the condition(success or failure) that will cause its children to re-execute at run time. If you set “Repeat on” to… The...Jul 17, 2023·2 min read
Repeat:(DO WHILE LOOP)The REPEAT step repeatedly executes its child steps up to a maximum number of times that you specify. It determines whether to re-execute the child steps based on a Repeat on condition. You can set the repeat condition to one of the following: *Repea...Jul 10, 2023·2 min read
Flow Services-Branch Continue...Switch Case and If-Else Understanding in one picture: Method 1: Use branch like a switch-case statement (The first branch statement) Method 2: Use branch like an if-else statement (The second branch statement)Jul 3, 2023·1 min read
Flow Services-Branch Continue...Few Pointers for Branch: *You cannot branch on a switch value and an expression for the same BRANCH step. If you want to branch on the value of a single variable and you know the possible run-time values of the switch variable exactly, branch on the ...Jun 26, 2023·2 min read
Flow Service-Branch Continue..2. Branch on an expression:(IF- Else) Use an expression to determine which child step executes. At run time, the BRANCH step evaluates the expression in the Label property of each child step. It executes the first child step whose expression evaluate...Jun 19, 2023·1 min read