Hello everyone
I’m using reframework template.
I have some args (In/out) created in the process which should be used in the business exception section.
I defined the variable as a in/out arg in process
I used the same name to define it in the main and i match them.
The value is null in the business exception value when i execute the robot
Did i miss smthg?
Hello @dhouha.cherif
From the invoke workflow you maybe assigning the value from argument to the variable. So the argument should be of direction “Out” and you need to make sure there is data in the variable.
So you can either run the execution in debug mode and check how the process is working and you can check in the immediate panel for the variable values.
Else you can use Write line to print the data in the console.
Thanks