Hi Team,
I have one use cases where using an Re-Framework for implementation.
Scenario is :- I have one folder containing 10 input file like
InputFile_XXXX where XXXX is my username.
InputFile_abcd where abcd is another person username
Now to insert the data in queue i am passing Environment.Username as reference which is correct.
Now i want to process using Re-Framework then how we can take only those records whose my username as reference.
suppose another user is executing the bot then bot should take only those record having reference is another username
so here we we can take it in framework ( in Process state)
Thanks Athira,
To pass reference in get transaction item, this functionality is in uipath 2019 or in latest version.
but if are using 2018 then this functionality is not available in it.
So how to pass reference in get transaction item in 2018 version.
In that case, in process state you can give an if condition like : if(in_TransactionItem.Reference=Environment.UserName)
If it’s equal, do the operations, else don’t do anything.