New Smartsheet activities ‘Download sheet’ and Box ‘Download file’ used to download the files with their names as reflected in Smartsheet and Box, but now all files are renamed and the blank spaces are being replaced by “%20”
Example:
Before / As it should: “Smartsheet file name.xlsx”
Now: “Smartsheet%20file%20name.xlsx”
Multiple automations affected.
UiPath.IntegrationService.Activities v1.8.0
Studio v2023.10.4
Personally, I’m unfamiliar with the smartsheet activities, but I assume in the ‘Download File’ activity there should be a place to rename the file for downloading? If so, you could create a variable to store the file name in it and pass that variable into the ‘Download File’ activity.
If you need it dynamic and can’t hardcode the file name, you could grab the original file name “Smartsheet%20file%20name.xlsx” and put it into a variable, lets call it originalString. Using an Assign activity we could do originalString = originalString.Replace(“%20”, " ") and that should give you the clean string of “Smartsheet file name.xlsx”
Hello @BrianaB
Yes, we could adjust the file name, the issue here is the activities are getting updating internally by UiPath and making multiple production robots fail with no advice.
hi @Juan_Felipe_Carvajal
I am not aware of the smartsheet activities or any integration services activities, but I believe that no packages or activities are automatically upgraded in any process unless done manually.
"Integration Service connectors are available in Automation Cloud and they receive updates on a regular basis. The fast pace of a Cloud product can quickly make a traditional activity package obsolete. UiPath.IntegrationService.Activities solves this problem through its auto-upgrade mechanism.
With UiPath.IntegrationService.Activities you get:
Automatic and effortless upgrades for the existing activities to the latest connector version when opening a workflow."