UiPath Automation Developer Professional v1 — Question 92
A developer needs to design a process using the REFramework, but without Orchestrator Queues. Which is the correct order of actions the developer needs to do in the Get Transaction Data state in this case?
Answer options
- A. 1. Remove the Get Transaction Item activity from GetTransactionData workflow. 2. Add a Read Range activity in GetTransactionData workflow to read the data from a local Excel file. 3. Add the logic required to read the data source only one time. 4. Add the logic required to retrieve only one row from read data each time. 5. Add the logic required to check if all rows/transaction items from the read data have been processed.
- B. 1. Remove the Get Transaction Item activity from GetTransactionData workflow. 2. Add a Read Range activity in GetTransactionData workflow to read the data from a local Excel file. 3. Add the logic required to read the data source only one time. 4. Add the logic required to retrieve only one row from read data each time.
- C. 1. Remove the Get Transaction Item activity from GetTransactionData workflow. 2. Add a Read Row activity in GetTransactionData workflow to read the data from a local Excel file. 3. Add the logic required to read the data source only one time. 4. Add the logic required to retrieve only one row from read data each time. 5. Add the logic required to check if all rows/transaction items from the read data have been processed.
- D. 1. Remove the Get Transaction Item activity from GetTransactionData workflow. 2. Add a Read Row activity in GetTransactionData workflow to read the data from a local Excel file. 3. Add the logic required to read the data source only one time. 4. Add the logic required to check if all rows/transaction items from the read data have been processed.
Correct answer: A
Explanation
The correct answer is A, as it includes the necessary steps to read all rows from an Excel file while ensuring that the data source is read only once and that each row is processed one at a time. Options B, C, and D either lack the step to check if all rows have been processed or incorrectly use a Read Row activity instead of Read Range, which is essential for accessing multiple rows.