cancel
Showing results for 
Search instead for 
Did you mean: 

Reading Application Parameter

Former Member
0 Kudos

Dear Experts

How can I read the application parameter that is avaliable in url in a webdynpro java application pleas help me out in this issue

Regards

Noel

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Noel,

You can use the following code to get parameters from an URL

IWDProtocolAdapter protocolAdapter = WDProtocolAdapter.getProtocolAdapter();

IWDRequest request = protocolAdapter.getRequestObject();

String paramValue1 = request.getParameter("urlparamname");

urlparamname is the name of parameter in the URL.

Thanks n Regards,

Jhansi Miryala

Answers (1)

Answers (1)

Former Member
0 Kudos

HI Experts

I had got this code will it work

Sting x=WDWebContextAdapter.getWebContextAdapter().getRequestParameter("Param Name");

Regards

Noel