cancel
Showing results for 
Search instead for 
Did you mean: 

Web Dynpro Issue

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 (3)

Answers (3)

Former Member
0 Kudos

Issue resolved with different solution.

Former Member
0 Kudos

Hi,

Your are not clear about from where you are getting the data. If it is from BAPI(ECC system) then It seems notification no is an import parameter for your back. So you need to explicitily set the notification no. If you dont want to allow user to enter and if is a standard notification no of a user and in your wdDoinit() you can set the notification no with according to the user name of portal. Work on this and let me know if it works.

Regards

Raghu

Former Member
0 Kudos

hi!

there can be two workaround for your problem.

1)use linkToUrl ui element

2)create external window to call url in another window.

IWDWindow window = wdComponentAPI.

getWindowManager().createExternalWindow("https://www.sdn.sap.com","sdn",false);

window.open();

thanks

vishal