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?
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 fromread data each time5. 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 workflow2. 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
The correct order of actions in the Get Transaction Data state is:
Remove the Get Transaction Item activity from the GetTransactionData workflow.
Add a Read Range activity in the GetTransactionData workflow to read the data from a local Excel file.
Add the logic required to read the data source only one time.
Add the logic required to retrieve only one row from read data each time.
Add the logic required to check if all rows/transaction items from the read data have been processed.
This sequence ensures that the data is read once, processed row by row, and checks for completion.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit