cancel
Showing results for 
Search instead for 
Did you mean: 

WebDynpro Application:Getting specific page on from URL of the applicatio

Former Member
0 Kudos

Dear all,

I am resolving a problem in Webdynpro for Java application.

Workflow of the application is as:

User puts notification no and clicks on "notification details" button and user gets the details on the another page.

URL of this second page is same as the first one.

My requirement is to make user enable the notification details avalable directly through the URL

Will it be possible to pass the notification no in the url to get the direct notification details page to user?

e.g. is it possible to send url to user as so that he gets notification details directly?

Sample URL

http://<server name:port>/<webdynpro>/<dispatcher>/<Track name>/<Application Name>:"Notification no"

Thanks and regards,

Pradnya

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Issue resolved with the help of other forum

abhimanyu_lagishetti7
Active Contributor
0 Kudos

Ofcourse Possible,

You can pass URL parameters to Web dynpro ABAP, like

http://<host>:<port>/sap/bc/webdynpro/z_web_app?<parameter_name>=<value>;

you can get this parameter in Web dynpro Window DEFAULT inbound plug method HANDLEDEFAULT

wdevent->get_string( '<parameter_name>' ). will return the <value> of the parameter passed

Abhi