This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DB Query to detect if a Non-Blocking flow is still running?

DB Query to detect if a Non-Blocking flow is still running?

I have a flow that triggers another flow (NON-BLOCKING) but I want to be able to detect if the NON-BLOCKING FLOW is still running so I don't run twice.

I tried to run thIs query on table OO_EXECUTION_SUMMARY but it's not there so I'm at a lost right now... 

Can someone lead me to the right answer? THANKS IN ADVANCE!

SELECT
FLOW_UUID,
FLOW_PATH,
EXECUTION_NAME
FROM OO_EXECUTION_SUMMARY WHERE
STATUS = 'RUNNING' AND
UPPER(FLOW_UUID) = UPPER('${FlowUUID}')