How can I pass parameter from Process A to Process B using Start Job activity?
Process A is passing the parameter
Process B is displaying the parameter on the orchestrator but I can see it inside the log.
How can I pass parameter from Process A to Process B using Start Job activity?
Process A is passing the parameter
Process B is displaying the parameter on the orchestrator but I can see it inside the log.
In addition below is the dispatcher process
How can I get the batchId number inside the performer process?
The arguments whatever being passed from here should also be configured as arguments with exact same name in the main file of the performer program.
If that’s available you can access the value with it.
Hope that helps.
Thanks
#nK
Thanks but I have tried that did not work.
I can see the BatchID on the orchestrator Job details
But is not showing on the log message inside the process itself.
Did you give like this in log mesaage?
In_inputparameters("BatchId").ToString
Cheers
Thanks a lot @Anil_G it worked.
I made the Argument type a dictionary <string, string>
Really appreciate.