I have a bpm method directive that creates a ud11 table row. How can I fire another different bpm method directive which fires when the ud11 table row is added from my previous bpm method directive. It looks like a bpm cannot fire another bpm? Is this true?
Do your add in a PRE method directive and add the widget at the end to enable POST.
Then create a POST method directive starting off with a condition to check if it was fired from the PRE.
In that case, I would do your second BPM on a UD11 InTrans Data Directive.
Make the first condition off of start be āā¦at least one Added row in UD11ā.
Hi Richard,
In general, you cannot fire BPM directives at all. It is the responsibility of the runtime.
Both Aaronās suggestions are correct. You need to use the one more relevant for your task.
You can add another PRE directive with āorderā greater than the first one and use the condition block that checks some conditions. For example, you can set a BPM Data context field in one directive, and check it in another.
You can use Enable Post-Proc widget in your directive, then add a POST directive and use āis enabled by XXX directiveā condition in it.