Hi,
I am having a great deal of trouble in defining the condition for a gateway in flowcharts. Main reason is that there is no documentation or examples for defining them. What i am doing is defined in the main process flowchart (refer to screencap). In the exclusive gateway, i trying to check if one variable is less then another variable. If it is, then execute the "Increment days" script task otherwise take the default path(which is "End"). See screencap for gateway definition. When i run the process it always executes the default path. I am not sure if I have defined the condition correctly. The other definition is tried was and did not work was:
ifThen($extend_dayscntl < $extend_days, true);
Also, i do not know a way to debug the contents of the variable (which i could do using echo in php).
Please help.
I am having a great deal of trouble in defining the condition for a gateway in flowcharts. Main reason is that there is no documentation or examples for defining them. What i am doing is defined in the main process flowchart (refer to screencap). In the exclusive gateway, i trying to check if one variable is less then another variable. If it is, then execute the "Increment days" script task otherwise take the default path(which is "End"). See screencap for gateway definition. When i run the process it always executes the default path. I am not sure if I have defined the condition correctly. The other definition is tried was and did not work was:
ifThen($extend_dayscntl < $extend_days, true);
Also, i do not know a way to debug the contents of the variable (which i could do using echo in php).
Please help.
Comment