How can we get output data from an Asynchronous process and use further .
Discussion posts and replies are publicly visible
Not. That's the whole purpose of an async process. You do not care about the output. If you need the output, make it a synchronous process.
Hello
What is your use case? Are you aware that we use Asynchronous when there is no dependency of data that is altered in the child process for the parent process?
docs.appian.com/.../Sub-Process_Activity.html
Thanks for the response.
Thanks for the response , I just wanted to know if there is any way to get the data .
No, you need to go with Synchronous process.
YOu have to use sync process if you want to get the data as an output... but if you need yo use the data further (in another process); you can store it in database and read when needed
Thanks .
Go with synchronous process. That is the only way you can use the output data.