cancel
Showing results for 
Search instead for 
Did you mean: 

How to pass parameter to webdynpro application URL?

Former Member
0 Kudos

Hi,

I want to add a parameter to the webdynpro application url:

apllication url is like this :

http://<server name >/webdynpro/dispatcher/local/AFEDETAILS/Afebb?SAPtestId=27

the above is the url i am getting for application.

i want to add a parameter proposalno after SAPtestId.how to proceed on this?

Thanks in advance.

Regards,

Pavani

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member185086
Active Contributor
0 Kudos

Hi Pavani

[One similar help|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417300)ID1765047750DB11565023222061882772End?blog=/pub/wlg/10931]

Best Regards

Satish Kumar

Former Member
0 Kudos

Hi pavani,

Use the following code

if you use parameter application, application1 then code will look like this


  String application =  WDWebContextAdapter.getWebContextAdapter().getRequestParameter(  "application");
  String application1=  WDWebContextAdapter.getWebContextAdapter().getRequestParameter( "application1");

then u can get the parameters in Webdynpro url in following way

http://<server name >/webdynpro/dispatcher/local/AFEDETAILS/Afebb?SAPtestId=27&application=<your value>&application1=<your value>

if u attach this iview to Portal Page enter the Application parameter properties

application=<your value>&application1=<your value>

Regards,

Manivannan P

Edited by: manivannan palanisamy on Oct 15, 2009 5:31 PM