Hello guys. I am developing a robot that needs to use excel files in a specified folder with a fixed name (e.g. Invoice_no). I also need to use a desktop application to input the data stored in these excel files.
The problem is the device I used to develop the robot is not the same device for deploying the robot. May I know how can instruct the robot to get the file path/ application path when it is deployed in a new device?
You need to place the file in a shared folder to avoid the dependency of running machine
Both the machines should have access to shared folder. This is the common practice
OR
if Shared Folder is not an option - You need to modify the code in such a way that it is downloaded from email every time. Whenever you want to process - Send email to BOT account. BOT should check for the email first and download to local and continue processing
Running machine should also have the desktop application. Credentials could be shared via Orchestrator assets. Without installing in the robot running machine - the code will fail. Development and Robot machine infrastructure should be matching for the process to run without fail. I don’t think there is any alternative for this as you are using Desktop application and not the web application