cancel
Showing results for 
Search instead for 
Did you mean: 

Launching WebDynpro ABAP app from .NET app along with passing parameters

Former Member
0 Kudos

Hello experts,

Is it possible to launch a WebDynpro ABAP application by clicking on a link in a .Net application?

The requirement also calls for passing paramters from the .Net app to the WebDynpro app.

Is this possible? If so, how?

Regards,

Puja

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Any answers/views/thoughts?

alejandro_bindi
Active Contributor
0 Kudos

Sure...you can send parameters via GET or POST the usual way you do with any web application.

Then you can read them in the inbound handler of the Window (method HANDLEDEFAULT):


  DATA:
    lt_parameters TYPE tihttpnvp.
 
  wdevent->get_data(
    EXPORTING
      name = if_wd_application=>all_url_parameters
    IMPORTING
      value = lt_parameters ). 

You can also have fixed parameters defined...

Search the forum and help.sap.com, you have plenty of examples and documentation.

Regards

Answers (0)