cancel
Showing results for 
Search instead for 
Did you mean: 

Should the condition in the loop step

Former Member
0 Kudos

Should the condition in the loop step in the integration process(BPM) be = or not= ?I need to do the following>>perform certain operation only when the container value is less than 3 Else then get out of the loop.

Regards,

Mansi

Accepted Solutions (1)

Accepted Solutions (1)

former_member192892
Active Contributor
0 Kudos

It should be not =

Inside the loop increment the count...when count reaches 3, it'll exit the loop

Answers (2)

Answers (2)

henrique_pinto
Active Contributor
0 Kudos

The loop step in ccBPM implements a while loop.

So, while count not = 3, it will be executed.

Once the counter reachs 3, the loop will be terminated.

Regards,

Henrique.

Former Member
0 Kudos

not =