This section is applicable only for the users of Adepta Connect.
Anchor | ||||
---|---|---|---|---|
|
While creating a Process Flow, in the Process Designer, write the following script in the Service exception field under the OnException Scripts tab.
...
Info |
---|
import org.apache.commons.lang.exception.ExceptionUtils; Throwable rootCause = ExceptionUtils.getRootCause(exception); |
Anchor | ||
---|---|---|
|
...
|
...
|
...
Process Flow
If the Process Flow is further calling a Transactionanother Process Flow, you need to must create a custom plugin using below JavaScript. After you have created a custom plugin, use it in the Process Flow just before a Call or Spawn activity. In case there are multiple Call or Spawn activities in a Process Flow, you need to add a Custom Plugin before every Call or Spawn activity.
JavaScript for Custom Plugin to set child context Param to call any Transaction: and other required information to call another process flow:
- When streaming is passed to child flow in File Mode:
import com.adeptia.connect2.runtime.RuntimeUtils;
RuntimeUtils.
...
setChildContextForCustomFlow(inputStream, context, service.getLogger(), "<<ACTION_NAME>>
...
");
where,
...
ACTION_NAME
...
is the name of the call or spawn
...
.
...
for
...
example,
...
RuntimeUtils.setChildContextForCustomFlow(inputStream,
...
context,
...
service.getLogger(),
...
"Action_Name
...
"
...
);
Info Ensure that the source activity is File Source when streaming is passed in File Mode and eventContextEnable is true.
Ensure that you have provided the
...
<<ACTION_NAME>> in double quotes (" ").
If you are the owner of the Transaction then type null (without double quotes) as a value in the partner name, for example,
...
When streaming is passed to child flow in Memory Mode:
import com.adeptia.connect2.runtime.RuntimeUtils;
RuntimeUtils.setChildContextForCustomFlow(inputStream, context, service.getLogger(), "<<ACTION_NAME>>", true,
...
"<<contextVarName>>");
where,
ACTION_NAME is the name of the call or spawn.
contextVarName is the name of the context variable that will be used as Key to put stream data on context.Info title Note In Memory mode, it is mandatory to use Context Source in child flow, and eventContextEnable must be false.
Ensure that you have provided the <<ACTION_NAME>> and contextVarName in double quotes (" ").
When no Stream is passed to child flow:
import com.adeptia.connect2.runtime.RuntimeUtils;
RuntimeUtils.
...
setChildContextForCustomFlow(
...
context, service.getLogger(), "<<ACTION_NAME>>"
...
);
where,
ACTION_NAME is the name of the call or spawn.
Info Ensure that you have provided the <<ACTION_NAME>> in double quotes (" ").
JavaScript to check if child flow is Aborted or not:
...
resultCtxVarName is the name of the context variable that contains the status of the sub-flow. The value can be Executed, Aborted, Queued, or Waiting.
JavaScript for Custom plugin to abort parent flow:
import com.adeptia.connect2.runtime.RuntimeUtils;
RuntimeUtils.abortParentFlow(context, "<<ACTION_NAME>>","<<resultCtxVarName>>");
Process Flow Design
Following are the sample designs of the Process Flow, calling a Transaction through Call or Spawn action:
...
Using Single Spawn
Using Multiple Spawn
Calling Transaction in Call or Spawn
To call a Transaction in Call or Spawn action:
...