recursions in Blue Prism

matuopm

Member
Well my initial thought was, that when I enter the choice stage that on some point it will end up at the end stage.

The choice works basically like this:

I enter the choice with a certain X (number). and during the process i manipulate X so that an on some point the x meets the criteria to reach the end.

example:

x=3

choice x
choice x=1 => link to end
choice x=2 => calc X-1 and do some other stuff and Enter Page blabla
choice x=3 => calc X-1 and do some other stuff and Enter Page blabla
 

gil.silva

Active Member
I understand, but I can't see a good case where it would be better to call again the page than loop to the beginning of the flow, which will have the same effect.
 

matuopm

Member
Well the Page has like 18 choices and some of them lead to the top some don't. It's a mess o_O
and in some choices there are smaller "underchoices" with like 3-4 cases.
 
Top