UiADPv1 Exam QuestionsBrowse all questions from this exam

UiADPv1 Exam - Question 105


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?

Show Answer
Correct Answer: A

To design a process using the REFramework without Orchestrator Queues, the developer needs to adapt the Get Transaction Data state to handle data from a local source, such as an Excel file. First, the Get Transaction Item activity must be removed because without Orchestrator Queues, transaction items are not fetched automatically. A Read Range activity is added to read the complete data from the Excel file at once. It is crucial to read the entire data source in a single operation to avoid multiple accesses to the file, which is inefficient. The read data should be processed one row at a time; the logic must include mechanisms for fetching each individual row in sequence and also for checking if all rows have been processed. This ensures that the state correctly manages local data transactions.

Discussion

1 comment
Sign in to comment
ramziothmaneOption: C
Apr 11, 2024

C is the correct for me, correct me if i m wrong

kingkayy
Apr 16, 2024

You will need to read the entire excel sheet hence Read range activity to read entire sheet from excel as TransactionData. Reading a row means you'll have to keep on going to the excel for data. So, A is the right answer.

ramziothmane
Apr 20, 2024

Thank you for the clarification