I have an issue while running my process with orchestrator. We have our project saved in Shared Drive. i have situations like saving excel to shared location and writing outputs into it.When i run my project through Uipath studio, its working fine.But if i publish it to orchestrator its not writing or saving excel in shared drive but the remaining steps are executing fine.
Fine
is it completing the process or getting stuck at the place where excel is written
if that gets completed then we need to check with the folder path of the excel
or
if that gets stuck then we need to look into the process
Cheers @Satish_Ch
its getting completed. I dont think we need to change folder path of excel as read range path also, for it its working fine only for writing its not working.
I think there is a problem with something else. Is the path you are accessing too long?
If that is the case uipath should throw an error, worth the check.
Is there a possibility that some other bot is also accessing the file? Some cases it will be able to read but not actually save the changes.
Maybe there is a workaround, copy the excel file to the local system make required changes and then replace it with file transfer protocol.
Please check the path of the files you are writing too.
Because what happens is, if you are running from studio relative path also works. But while running the bot through orchestrator we have to pass absolute path only.
Fine
So let’s do one thing
I think this happens because of multiple of generic access level restriction to the folder
—I would suggest to create a local folder in the machine where this process is ran and create the process in such a way that first the file is created and stored in that local folder
—later we can use MOVE FILE activity and mention the source path property as the local folder with file path and the destination as shared folder path
Make sure that the shared folder is synced to your machine where this process is run
I hope this would work for sure
Kindly try this and let know for any queries or clarification
Cheers @Satish_Ch