Hi,
Good Day
May I know the root cause of this error?
If I run this workflow alone, there is no error but when I integrate it with REFramework it shoes the above error.
Best regards,
Ssellur
Hi,
Good Day
May I know the root cause of this error?
If I run this workflow alone, there is no error but when I integrate it with REFramework it shoes the above error.
Best regards,
Ssellur
Hi @Llessur
Check the arguments & variables that you are passing in the workflow. Are they have correct values when you run in RE.
If the folder already exists then try selecting the option of replace.
Yes so far it is correct. However, it does not work.
Now.ToString(“MM-dd-yyyy”)
Is the value above in the Config will result into error?
Now.ToString(“MM-dd-yyyy”) is a VB.NET expression, but the Config file only stores plain text values.
UiPath does not evaluate expressions inside Config.xlsx automatically.
Better to Keep “MM-dd-yyyy” in config
If I leave “MM-dd-yyyy” will it automatically recognize today’s date?
Yes probably this will cause an error.
Store only the date format in config file
DateFormat = “MM-dd-yyyy”
Or you can directly use this expression for file name without config.
Now.ToString(“MM-dd-yyyy”)
For config- if you save only dateformat in config
Now.ToString(Config(“DateFormat”).ToString)
Hope this helps
Thank you so much for this help
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.