hi
i want add items to queue in the reframework…i don’t want to process any data in the process state
There is excel file which i want to add in queue
i want to build this programme only in reframework as dispatcher
can anyone tell me what all states i have to keep and delete?
Create a new project in UiPath Studio and select the REFramework template.
Open the Main.xaml file, which contains the main workflow of the REFramework.
Delete the Process.xaml file since you don’t want to process any data in the Process state. Right-click on the Process.xaml file in the Solution Explorer and select “Delete”.
Modify the state transitions in the Main.xaml file. Remove the transition arrow from the GetTransactionData state to the Process state and create a new transition from the GetTransactionData state to the End Process state.
Add activities to read the Excel file and add items to the queue in the GetTransactionData state:
a.ReadRange workbook activity
b.Bulk add queue item activity.
Add activities to read the Excel file and add items to the queue in the GetTransactionData state:
a.ReadRange workbook activity
b.Bulk add queue item activity.
2.Delete the Process transaction state
Here is the file RoboticEnterpriseFramework6.zip (1.3 MB)
You can include it in initialization state inside the if first run activity…ao that it runs only once…make sure you give it at the end of that if condition as in that all the initializing activities like reading the config also will take plce and after that you can add the items