cancel
Showing results for 
Search instead for 
Did you mean: 

Call WDA from ABAP via function module

0 Kudos

Hi WDA experts,

is there any possibility to call a WDA within a ABAP report AND include it in the process.

The best would be to call a WDA via a function module - make some inputs on the WDA side - press submit and the function module gives me the data from the webdynpro back to my application.

I know that I can call a WDA via the function CALL_BROWSER, but in this case the WDA application is fully independent from the report and I am not able to post any data back to the report.

I also know FM WDY_EXECUTE_IN_PLACE, but in this case I need a HTML container to display the WDA and there it seems that I also never get back any data back to the report.

Any hints are appreciated.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Not too hard:

CALL WDA passing in a KEY on start plug.

write the data to a shared memory object using the key passed as the

key to a shared memort object on the submit.

(see blogs on writing Shared maemory objects in ABAP)

Then simply exit APP.

On return read the data from the Shared memory Object.

The shared memory object lives across the 2 sessions.

cheers

Phil.

Answers (0)