I am still new in this UiPath world and it’s been years since the last time I code intensively, I need help in this one.
So here is the case:
In SAP, after I automate some of the tcode execution, at the end of the steps I need to save file in local (spreadsheet) using SAP save local feature.
I need to give the file name with this format:
" <number 01-99>"
Usually when I code manually in other language, I can do it, in pseudocode, by giving curdate+number counter loop, but since this is attended robot that runs every 15 mins, will the counter lose it’s state? Let say currently it save file as “16-02-2021 01”. How can I make sure that the next time the robot runs the file name will be “16-02-2021 02” instead of returning to 01?
And finally, is there any sample? As you can see, when the date change, I want the counter to reset back to 01 again, any idea how to do that?
Thanks. Regards