Want get transaction activity to be run two times

I am using RE framework without queue. In my process, I have read excel and store it in transactiondata datatable. Now I want to run half of my application process, after that I need to get transaction data again for my rest process. How is it possible?

Hello @Omkar_Shete2

  1. Initialize: Set TransactionNumber to 0 in InitAllApplications.
  2. Process Half:
  • In ProcessTransaction, process if TransactionNumber is less than or equal to half the rows.
  1. Restart:
  • In EndProcess, reset TransactionNumber to 0.

By using TransactionNumber to track progress, you can process the first half, then restart from the beginning for the rest.

Thanks & Cheers!!!

Hello, Thanks for your quick reply… I have one excel file of 10 records and 4 columns. I have used without queue method for RE… Now I want to open my application fill one by one data and complete the process as soon as this process gets completed some backend process over for 1St item then I want again fetching the data from 1St item onwards and complete remaining part

Each time you finish a transaction, update a spreadsheet column indicating that the row has been processed. In your steps that read the file for processing, make it filter out the ones that have already been processed.

Hello postwick,
Thanks for your reply.
In my application I will fill one field and download pdf file… But during these 2 stages there is delay of 1hr… for the sake of time utilisation, I want one by one data to come and enter the field and click on generate pdf… After this I want again transaction number 1 onwards and click on download pdf…

In RE without queue, tell me the steps for the same to work

Why don’t you simply use a queue?

How is this possible by using datatable in RE framework

Using queue how to do it. Plz explain step by step…

You write a dispatcher automation that reads the Excel file and puts items into a queue. Then you have a dispatcher automation that pulls items from the queue and processes them.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.