Exam UiADPv1 All QuestionsBrowse all questions from this 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?

    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
ramziothmaneOption: C

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

kingkayy

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

Thank you for the clarification