Hi Team,
In my process one of the process triggered unwanted scenarios and if I want to check parent process for the process. But I am unable to find it due to start process triggered the process. Do you know any other way to find the parent process Id or process name. (only for start process). Subprocess we can do by parentprocessid function.
Thanks,
Pradeep Sridharan
Discussion posts and replies are publicly visible
Pradeep Sridharan There isn't a built-in way to directly track the parent process Id for subprocesses launched by a start process.There are strategies you can implement during process design to improve in future.When launching a subprocess from the start process, consider passing relevant data as input parameters.You can set dynamic name of process using parent process data to track back easily.
Hi ,
Thanks for your response.
Yeah agree your point. The process already developed and in prod. For some scenarios facing the issues and want to check some process which parent process has triggered so that reason I want the parent process Id.
Regards,
Pradeep
Pradeep Sridharan In the past, we ran into this problem. We can investigate by looking at the main process's timestamp when it started. If we find subprocesses with timestamps around that time, and examine their data, there might be a connection. This approach takes a bit longer, but you can try it.Let me know if that works for you.