04-07-2020 12:20 PM
The usecase is to generate a uniqueID and load the uniqueID and status as “inprogress” in database.
After that call the child pipelines.If all the child pipeline gets executed successfully update the status of uniqueID to success in database.
Is there any way to make uniqueID as global so that I can use it at the end of the flow.Even I have to pass the uniqueID in the error handler of the parent pipeline.But it shows the value as NULL for the error pipeline parameter.
So is there any way to make uniqueID as global parameter so that I can use it for later processing and passing it at the start.
Thanks,
Pratiksha
04-07-2020 01:20 PM
pipe.ruuid of the parent pipeline might be a handy value to use.
04-09-2020 12:17 AM
Thank you christwr it worked.