Is there an equivalent for Dynamic Sub Process V2 ?

Hi,

I was using Dynamic Sub Process V2 to start processes from other applications using the process model uuid as a parameter.

This method lets me export my application without having any dependents, which is my goal. I want my application to be exportable without any dependents.

Now that Dynamic Sub Process V2 is not available anymore in the Shared Components, is there another solution to start a process with the pmuuid as a parameter.

I tried to use the new "Start process" node but it requires a process model as a parameter and I don't know how to get an external process model with its uuid.

 

Do you have any idea how to replace the Dynamic Sub Process plugin ?

I wish someone could help me ...

Regards

Alexandre

  Discussion posts and replies are publicly visible

Parents
  • For people having the same problem, I found a solution.

    With the Uuid, I can find the process Id using getprocessmodeldetailsbyuuid :

    split(
     split(
       getprocessmodeldetailsbyuuid(
         ri!pmUuid
       ),
       ","
     )[4],
     ":"
    )[2]

    Then I can get the process model in a PV with a cast I didn't know :

    cast('type!{http://www.appian.com/ae/types/2009}ProcessModel', rule!EWS_getPmIdByUuid(ri!item.uuid))

     

    Maybe there is a way to do the same cast with uuid but I don't know it.

Reply
  • For people having the same problem, I found a solution.

    With the Uuid, I can find the process Id using getprocessmodeldetailsbyuuid :

    split(
     split(
       getprocessmodeldetailsbyuuid(
         ri!pmUuid
       ),
       ","
     )[4],
     ":"
    )[2]

    Then I can get the process model in a PV with a cast I didn't know :

    cast('type!{http://www.appian.com/ae/types/2009}ProcessModel', rule!EWS_getPmIdByUuid(ri!item.uuid))

     

    Maybe there is a way to do the same cast with uuid but I don't know it.

Children
No Data