Dear guru,
the situation is:
we have a abap program , which uses
CALL FUNCTION 'WDY_EXECUTE_IN_PLACE'
EXPORTING
PROTOCOL =
INTERNALMODE = 'X'
SMARTCLIENT =
application = 'YHREFM_WD_APPROVE2'
CONTAINER_NAME =
PARAMETERS = lt_parameters
SUPPRESS_OUTPUT =
IMPORTING
OUT_URL =
CHANGING
VIEWER =
EXCEPTIONS
invalid_application = 1
browser_not_started = 2
action_cancelled = 3
OTHERS = 4
.
to call a wda application inside sapgui, and we want to get data return by the wda application in the program.
we tried to use EXPORT/IMPORT TO/FROM MEMORY, but failed.
could you please tell me how to do that?
br
zj