Hello Community!
Above is the flagging file for an process,Iam using Reframework template to create this process,Basically i want that if specific file Request status column found Pending then it will open the website and genererate the request on website and once the request is successfully generated it will mark done for that file and go for another transaction and look for another file name pending…How can i design in reframework what will be the condition in get transaction state?
Hi @Priyesh_Shetty ,
You can read the excel data in INIT phase as below
Input_data.AsEnumerable().Where(Function (row) row("DownloadStatus").ToString.ToUpper.Trim.Equals("PENDING")).CopyToDataTable
And next flow process you can add it into process phase
Regards,
Vinit Mhatre
@Vinit_Mhatre
What about the get transaction state?
Hi @Priyesh_Shetty ,
Use below Re_template For Datatable
- Simply place your data into the Init stage.
- There is no need to change anything in get transaction data.
- Add your actual flow to the process state.
Excel_re_template.zip (949.2 KB)
Regards,
Vinit Mhatre
@Vinit_Mhatre it is taking Done status also from a row.
Io transaction number < dttransaction.rows.count this condition taking all the rows it should only take pending rows
Could you please share me your workflow?