cancel
Showing results for 
Search instead for 
Did you mean: 

Query on loop in Integration process

Former Member
0 Kudos

what condition do we give in loop. is it end condition or looping condition?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Loop is used in BPM when you want to execute series of step repeatedly, you apply loop between those step that you want to repeat so you never give looping condition but an end condition and looping stops when end condition is met.

You define condition using condition editor and formulate logical condition by linking 2 operand with an operator(like equal, not equal, exists).

For more details on condition go through this page

<a href="http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm</a>

Thanks,

Anu

Rewars points if helpful

Answers (2)

Answers (2)

Former Member
0 Kudos

Hey Sankar,

You use a loop ( ) to repeat the execution of steps within the loop. The loop continues to run while the end condition returns true (while loop).

Check this link:

http://help.sap.com/saphelp_nw04/helpdata/en/3c/831620a4f1044dba38b370f77835cc/frameset.htm

<b>*Reward points if helpful*</b>

Regards,

Sushil.

Former Member
former_member614185
Contributor
0 Kudos

Use loop to repeat the execution of steps within the loop. The loop continues to run while the end condition returns true (while loop).