Hi, I’m implementing a REFramework in UiPath and I’m not sure how to correctly split my steps between Init, Get Transaction Data, and Process Transaction.
My process steps are as follows:
-
Check whether today’s file already exists in the BK folder in SharePoint.
- If it does not exist, check the Input folder.
- If it also does not exist in the Input folder, copy the template file to the Input folder.
1.1 If today’s file is found in the BK folder, go directly to Step 5.
1.2 Otherwise, proceed to Step 2 to download files where the status is blank or fail.
-
Log in to the DWH web portal.
-
Download files TAS, Txx, and TER (iterate through each row where status = blank) and update the status to indicate whether the download was successful.
-
Log out of the system.
-
Clean the data for each file.
-
Convert the files to .txt format.
-
Send an email notification.
Could you advise how these steps should be organized within the REFramework structure (Init, Get Transaction Data, Process Transaction)?