I am using UIpath studio Community edition 2019.8.0
I am working on the “Calculate Client Hash” Lesson.
I have successfully extracted the WorkItems from the “ACME System 1” website. I checked them in the “if first run-read Config file” workflow. All of the WI5 data was captured in the variable “WIList” (which is a DataRow). All of this has been created per the lesson instructions.
In my “GetTransactionData” workflow, the condition for my IF activity is “in_TransactionNumber<=WIList.count”
I have created an input argument called “WIList” (and selected “in”). It is also a DataRow.
When I run my project, everything works fine until the “Get Transaction Data” where it faults at the IF condition:
“No Condition Defined”
When I look at the “Locals” tab, I can see that the DataTable info is in the “io_TransactionData” argument, but the WIList is ‘null’.
Obviously, the WIList variable that I created in the “if first run-read Config file” workflow is not getting passed into the WIList arguement in the “Get Transaction Data” workflow.
How do I do this correctly?
Thank you for any information…