10-31-2017 04:45 PM
Hi,
I want to conditionally execute a step based on whether the currently executing sequence is the process model client. Is there a boolean property somewhere I can query? I see a "processmodelclient" container, in which I can compare the currently executing sequence path with the process model client path contained in this, but when I execute the sequence standalone (using "run mainsequence" from the execute menu), I get an error in the expression as there is no "runstate" in this circumstance.
Thanks
David J.
Solved! Go to Solution.
10-31-2017 05:19 PM
The ProcessModelClient object only exists if the execution was initiated through a process model entry point. So, what about this for a boolean expression?
RunState.Exists("ProcessModelClient",0)
Hope this helps!
Trent