cancel
Showing results for 
Search instead for 
Did you mean: 

Pass URL parameters to SAP Portal from an external application

Former Member
0 Kudos

Hi all,

as for the subject, is it possible to read into a Java WebDynpro URL GET parameters, passed from an external portal application?

Best Regards,

Raffaele Frattini

Accepted Solutions (0)

Answers (2)

Answers (2)

susmita_panigrahi
Active Participant
0 Kudos

Hi

Please refer the below forum:

Thanks

Susmita

Former Member
0 Kudos

Hi,

Any one come with the scenario where we need to pass the external parameter in standard portal url, and read the parameter in webdynpro ABAP program to trigger the event. Please suggest.

Passing the parameter by typing the parameter after portal url like http://xxx:50000/irj/portal?clientid=20 ,each time user will have different client id pass by himself.

Thanks

BR

Former Member
0 Kudos

hello Vivek,

did you solve that requerimient, pass the user ID to ECC ? using parameters?

Appreciate your help.

Thanks.

Former Member
0 Kudos

Hi Raffaele,

Yes it is.

Add the parametername to the application parameters of your Web Dynpro App and use the following code snippet:


IWDRequest request = WDProtocolAdapter.getProtocolAdapter().getRequestObject();
String version = request.getParameter("version");    

You can use the paramter then in the URL that calls the portal.

It worked for me.

Hope this helps.

Regards,

Alain

0 Kudos

It works,

Thanks