Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Current version of IWS doesn’t fully support MC2 workflows due to MC2 workflows use completely different file/data exchange model between tasks/processes. But we However, you can adopt classic MC workflows for MC2 EJM by adding a set of task parameters.

Each process in MC2 EJM has inbound and outgoing parameters.

Inbound parameters.

DataFrom

...

The parameter tell EJM from where get files. EJM can get files from previous processes or data events.

...

-          To get files from a certain process we should specify TASK_[process name]

E.g. we have For example, in my_process1 sub-process in the workflow, to get the sub-process result files we should specify:

DataFrom=TASK_my_process1

It is possible to specify a set of sub-processes , to do that specify by specifying them separated by comma:

 DataFrom=TASK_my_process1,TASK_my_process3,TASK_my_process78

...