cancel
Showing results for 
Search instead for 
Did you mean: 

Passing multiple paramteres in url while firing exit plug.

Former Member
0 Kudos

Hi All,

Is there any way to send multiple paramters in the url while firing the exit plug for the url or pointers to use IIWDResponse object inorder to send data along with the url.

Thanks in advance.

Regards

Radhika Kuthiala

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Radhika,

You can follow the this.

1. Create an outBound plug in the interface view with name navigate and Plug type as exit.

2. Add url as the parameter to be passed for the same ou bound plug in the interface view.

3. Now in the view put the following codes onActionNavigate

//Set the required url to a string

String Url = "http://<host>:<port No>/webdynpro/dispatcher/local/XYZ/XYZApp"

//Add the parameters to be passed into the string along with the values for these parameters

Url = Url + "?param1=6&param2=2&param3=0"

//Fire the exit plug in the interface view for navigation to external link.

wdThis.wdGetUIEleCompInterfaceViewController().wdFirePlugNavigate(Url);

Hope it helps you. try it out.

Regards,

Tushar Sinha