cancel
Showing results for 
Search instead for 
Did you mean: 

automatically process a URL link

Former Member
0 Kudos

Does anyone know if I can call a url link within a webdynpro program without building a UI and having the user press the link?

If that is not possible, is there anyway I can create a link to url and force the application to process the link without user interaction?

Accepted Solutions (0)

Answers (2)

Answers (2)

vijayakhanna_raman
Active Contributor
0 Kudos

Hi,

I dint get properly what u said but chek with this.

U can Force ur application using exit plug and open some other link in the same window

Go the interface view, and create the outbound plug name xxx with parameter Url of type String.

Add this interface view in the prorerties tab of the view and write this code.

wdThis.wdGet<Application name>InterfaceViewController().wdFirePlugXxx("http://google.com");

Regards,

Vijayakhanna Raman

Former Member
0 Kudos

Hi Steve,

you can create external window with URL you will:

IWDWindow win=wdComponentAPI.getWindowManager().createNonModalExternalWindow(url,title);
win.open();

regards

Bogdan