I need to call sub process in while loop to do flow as following figure
where activity process in parent process takes only single ID
and select null process get more than one ID
so is there any solution to call sub process in while loop
I need to call sub process in while loop to do flow as following figure
where activity process in parent process takes only single ID
and select null process get more than one ID
so is there any solution to call sub process in while loop
Absolutely!
Click on Call Activity
In the Details Panel select the General Tab
then click on the Iteration Tab
This will allow you to choose the method of loop you want to call the subroutine.
Standard
Parallel execution (all at the same time - as best as practical)
Sequential execution (one must finish before the next starts)
For Parallel and Sequential you can define a fixed number of executions or use a LIST ( [1,2,3] or [“A”, “B”, “C”, “C”, “C”, “D”] for example) for variable number of executions.
Works very well and we use it a lot.
regards
Seán
PS: As this reply answers your question, please mark as resolved.
i tried put parent activity in while ad in each while i assign multiInstanceIterator to parameter called “currentint” but it didn’t work
is is need to create a connector from parent to call subprocess??
No, no need for a connector - it’s “built in”. I use this extensively in my own application.
I can only guess that you have an error in the iteration configuration, or the definition of the called process.
In what sense does it “not work”?
And: have you looked in the bonita-XXX.log file for errors?
@sameh is the best
I suggest you also read the chapter on iteration in the documentation here:
http://documentation.bonitasoft.com/?page=iteration
regards