Multiple Node Instances Sub Process Index

Hi all,

I am trying to iterate a number of dynamic approval tasks using Multiple Node Instances.  I learned that this is possible but I have a question about how to get the index of the current array element.  For example.  My CDT with a list of approvers is approverData and I can iterate the list of approvers using approverData[index].approverUser.

So suppose I set up a sub process with MNI and I want to call up these dynamic tasks, within the sub process, how can I reference the current item so I can pass rule input variables back and forth to/from form and pv, sub process and main process etc?

Thanks!

  Discussion posts and replies are publicly visible

Parents Reply
  • So I've just tried this - I created a process model that takes as its input a single text field.

    I created another process model that populates an array with 100 items of text using this:

    a!forEach(
      items: fn!enumerate(100)+1,
      expression: fn!concat(
        "Item ", fv!item
      )
    )

    and when I look at the process variables I can see this:

    I am then calling my other process model as a sub-process, setting it up as MNI like this:

    and setting up the call to the sub-process like this:

    When I run the parent process, I can see it has started 100 instances of the sub-process. And if I open up any of the sub-process instances they all have a different value for the input text that I am passing.

    So it works exactly as I described.

Children