I want to implement below scenario using UiPath RE-Framework:
step1: Read data from excel file available in predefined location
step2: add the extracted excel data to queue
Once the data is added to queue, i don’t want to process those items . I will create a separate performer to process those items.
Please let me know where do i need to change/modify RE-Framework stages. if changes required, then please explain the steps.
If possible please share the screenshots so that it might be helpful for the people who are also looking for the same logic.
You can refer below mentioned video of Rakesh
It is having similar implementation like read data from excel upload them in queue and then read it back from queue
Only thing is this is created on older version but the functionality is same
You will be able to relate with new Version studio and orchestrator
if the data is available in predefined and all data to be added then better use read range and then bulk add queue item to add all data at once instead of going with ref again
if you still want to use then your transaction item can change to datarow to make it add in loop or make it linear and do the same as step 1 in process xaml
You don’t need to add any additional states in re-framework for this functionality.
Best place to include this logic would be in "Initialization’ state.
Create a workflow in initialization stage which includes below:
Read data from excel using excel application scope and read range
Add those items to the queue using Add queue items or Bulk add queue items.
Once created, you will be able to get the queue items automatically from Get transaction state. and refer those queue items in Process state using TransactionItem object.
For better understanding on Re-framework, you can also read through below manual: REFramework documentation.pdf (507.8 KB)