cancel
Showing results for 
Search instead for 
Did you mean: 

URL Parameters with WebDynpro IView

Former Member
0 Kudos

Hi All

My question may be very simple.I would like to send two parameters to URL and based on those two I should be able see iview in full page. Also i should be able to change parameters in URL directly and see output.

I know that we can pass parameters to iview using iview property.But when I see this iview I am not able to see URL parameter likes http://<host>:<port>/irj/portal?param1=test1&param2=test2.

Can any one help on this.

Accepted Solutions (1)

Accepted Solutions (1)

raja_thangamani
Active Contributor
0 Kudos

Use Dynamic Parameters to achieve this.

Refer below link <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/44/be65751c743959e10000000a1553f6/content.htm">Dynamic Parameter</a>

Raja T

Former Member
0 Kudos

Thanks for your reply. Can you please suggest me how to pass 3 parameters. I followed param1=value&param2=value2& but I am getting syntax error. Can any one suggest me?

WDPortalNavigation.navigateAbsolute(

				roleid,

			   WDPortalNavigationMode.SHOW_INPLACE,

			   (String) null,

			   (String) null,

			   WDPortalNavigationHistoryMode.NO_DUPLICATIONS,

			   (String) null,

			   (String) null,

			   "CC=" + "Param1");

Former Member
0 Kudos

Hi.

Use as follows

WDPortalNavigation.navigateAbsolute(

"ROLES://portal_content/xxxx/xxxx/xxxxx",

WDPortalNavigationMode.SHOW_INPLACE,

"",

"",

WDPortalNavigationHistoryMode.NO_DUPLICATIONS,

"",

"",

"param1=value1&param2=value2");

Regards

Ayyapparaj

Answers (0)