cancel
Showing results for 
Search instead for 
Did you mean: 

SAP iRPA - Start web application with dynamic url

bkmarzec
Discoverer
0 Kudos

In iRPA workflow I have an input variable (myItemID). I want to use this variable in my workflow to open web application based on dynamic url, e.g.: https://www.example.com/?inventoryid=[myItemID]

Is there any option to start web application with such "dynamic" urls?

View Entire Topic
TJe
Product and Topic Expert
Product and Topic Expert

I have used the following code to set the url on a page:

appBI.pLogonBI.setPath(e.env.prod, 'http://<prod>:8080/BOE/BI');
appBI.pLogonBI.setPath(e.env.test, 'http://server42:8080/BOE/BI');

bkmarzec
Discoverer

Hi Thomas,

thank you for fast answer! It worked perfect!

Best regards,
Bart