I’m currently at this portion of the advanced learning practice activity:
I’ve got my sequences invoked
I only had to import arguments for the System1LoginProcess and that is working.
I also removed everything listed below and confirmed that the data scraping and the extracting Structured Data is working.
I haven’t done the following part yet because I didn’t know how to fix the issues that were coming up saying “Cannot assign from type ‘UiPath.Core.QueueItem’ to type ‘System.Data.DataRow’ in Assign activity ‘End Process’.”
o The TransactionItem variable in the Main file should be of the System.Data.DataRow type, as we are extracting the entire table to process it one row at a time. You should also change the argument type in the GetTransactionData, Process and SetTransactionStatus workflows to match the TransactionItem type. o Remove the three SetTransactionStatus activities from the SetTransactionStatus workflow as we are not using the transaction functionality provided by Orchestrator.
I am having trouble with this part as well
For the System1_ExtractData workflow, I imported the arguments from the out_DataTablea argument to dt_WIs variable.
I’m not sure if the Variable type is correct for dt_WIs or WIList.
I have the assign activity:
I need some validation that I have the correct argument types so far and some guidance on this next piece:
I think I’m missing some knowledge in the array, index, and the data table argument variables department.