Hi,
We're deploying a process whereby a check takes place and aborts the job if an exception occurs. There's going to be a macro variable in the code, let's call it AdminOverride, which is implicitly set to N. We'd like to set it to Y using the Trigger Flow > With Variables feature of Process Manager.
Now, I've done similar things before by using the -set command line feature, and then %sysget(Var) in the SAS code being run. It appears this isn't working based on the test I've done so far.
I have set a flow with three jobs. Each job tries to %sysget Var1, Var2 & Var3. I have tried four different methods of creating Var1, 2 & 3:
View > Global Variables > Add. I now have a Var1, 2 & 3 each with their own value. This didn't work.
On an exited flow, Right click > Set Variables > Add. I added JS_FLOW_VARIABLE_LIST as the Name and "Var1=Testing1" as the Value. This didn't work.
On the same exited Flow, Right click > Set Variables > Add. This time I just added Var1 as the Name and Testing_1 as the Value. This didn't work.
Finally, on the exited flow, I clicked ReRun and then ticked the "With variables" box. I added the string "Var1=Testing__1" (without quotes). This also didn't work.
So, if neither of these options presents the variable so that I can obtain it via %sysget, what am I supposed to use to obtain the value of Var1, 2 & 3?