Retreive process values from Asynchronous sub process.

Their is a sub process that is configured asynchronously which also includes an attended task. So, in what way(s) can we retrieve

1) The values of the process variables from the Async sub process to the parent process?

2) When the sub process is completed how to update it in the parent process? 

Thanks in Advance.

  Discussion posts and replies are publicly visible

Parents
  • Hi Rakesh Singh,
    I have a few doubts in this design approach,
    As you aware that the parent process continues with its flow as soon as the Asynchronous sub process started.
    What happens if the parent process Ends before the sub process ends?
    You can pass the variables as reference but remember you should not pass the CDT's as reference.
    If your design is insisting to go with Asynchronous sub process you can persist the details in DB and in parent process you can pull
    them from DB.

    Why cannot you try with Synchronous sub process?
Reply
  • Hi Rakesh Singh,
    I have a few doubts in this design approach,
    As you aware that the parent process continues with its flow as soon as the Asynchronous sub process started.
    What happens if the parent process Ends before the sub process ends?
    You can pass the variables as reference but remember you should not pass the CDT's as reference.
    If your design is insisting to go with Asynchronous sub process you can persist the details in DB and in parent process you can pull
    them from DB.

    Why cannot you try with Synchronous sub process?
Children