Implement an if statement off of current process

Hello,

I am trying to have a statement check for if a part should be inspected only on a certain step in the flow group. The problem is that the same process has to be visited twice and I need the check to trigger on the second visit.

Is there a way to accomplish this using the flowsteps? When I tried the process below it never seemed to enter the first if statement.

Thank you!

I’m not sure if this is possible with flow steps. An easy workaround would be to “stamp” some property to the product when it first visits that process, and then when it comes again, you read that property to see if that product has visited that process already.

For example, add a new boolean product property, and use if/else to check if it’s true or false.