I am searching for a sample xmal file of reframework.
I am not using Orchestrator. So in didn’t understand what i need to put in get transaction data.xmal file.
I want to select a row from datatable and i need to set it as gettransactionitem so that it will process the data in Process.xmal and it has to select the 2nd row and process it and the flow has to do for all rows in data table.
You have to change the transaction item data type to data row everywhere in the RE-Framework.
Init state - read all work items into a data table and filter the rows (if any) into data rows
Get transaction state- loop thru one data row at a time
Process state - process the data row and back to the Get transaction state to process the next data row
End state - to end the process
It is explained in the walk through document of Assignment 2 (Calculate Client Security Hash) in advanced certification of UIPath Academy.
I would strongly suggest you to simply follow the flow of the template. In the end, Studio executes everything from the beginning until the end.
You could download an example from the link I posted above and debug it by clicking Step Into button. Another way would be to simply go over it one activity at a time in the execution order.
It might take you some time, but will be worth it and should clarify how it works.