cancel
Showing results for 
Search instead for 
Did you mean: 

Problem in abap web dynpro URL issue

Former Member
0 Kudos

Hello All,

I have created a web dynpro for calling different tables with F4 help dynamically through ALV webdynpro, I can update, delete/insert row in ALV for multiple tables with one webdynpro program.

Now problem is user wants to create url for different tables and keep it in the portal using with this webdynpro program like that i need to create more than 20' url's and keep it in portal with current created web dynpro program.

Could please provide any solution for this issue.

Thanks in advance.

Regards

Sri

Accepted Solutions (0)

Answers (1)

Answers (1)

Katan
Active Participant
0 Kudos

You could try passing the table name as a URL parameter. 

i.e.

http://<server>:<port>/sap/bc/webdynpro/sap/<app_name>?table=MARA

This can be read in your WD application and use it to determine the table to display.  There is a heap of content out there on the internet that explains how to do this.

https://help.sap.com/saphelp_nw04s/helpdata/en/2f/e7574174c58547e10000000a1550b0/content.htm

Regards,

Katan

Former Member
0 Kudos

Hi Katan,

Thanks for your replay.

I am not able to find out any information on above link, could please provide correct link for more details.

Regards

Srini

FredericGirod
Active Contributor
0 Kudos

The solution provide by Katan Patel is the good, you could use parameters inside the URL. You just have to catch the value of the parameter in your webdynpro.

There is a wiki on this subject : How to read URL parameters in Web Dynpro for ABAP - Web Dynpro ABAP - SCN Wiki

regards

Fred