Skip to main content
Inspiring
August 12, 2024
Question

Asynchronous process

  • August 12, 2024
  • 8 replies
  • 0 views

How can we get output data from an Asynchronous process and use further .

8 replies

stefanhelzle0001
August 12, 2024

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.

Inspiring
August 12, 2024

Thanks for the response.

konduruc733182
August 12, 2024

Hello [mention:23b56b00ee924454b087103e2086677d:e9ed411860ed4f2ba0265705b8793d05] 

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

Inspiring
August 12, 2024

Thanks for the response , I just wanted to know if there is any way to get the data . 

konduruc733182
August 12, 2024

No, you need to go with Synchronous process.

davidj137213
August 12, 2024

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

Inspiring
August 12, 2024

Thanks .

prasantap0900
August 12, 2024

Go with synchronous process. That is the only way you can use the output  data.