I need to display my Webdynpro application in SAP GUI.
I am doing that using function:
DATA: container_bottom TYPE REF TO cl_gui_container. CALL FUNCTION 'WDY_EXECUTE_IN_PLACE' EXPORTING APPLICATION = 'ZFI_BUDGET_AMEND' * INTERNALMODE = 'X' * CONTAINER_NAME = 'CONTAINER_BOTTOM' IMPORTING out_url = out_url EXCEPTIONS invalid_application = 1 browser_not_started = 2 OTHERS = 3.
If I do not submit parameter CONTAINER_NAME - then Webdynpro is displayed in a new screen.
I want my application to be displayed in the part of the same screen it is called from.
Before the application is called dynpro screen is already split in to containers.
So I submitted parameter CONTAINER_NAME - but the webdynpro doesn't get displayed.
Thru debug I can see that object CONTAINER_BOTTOM was created and webdynpro has been called.
But nothing is displayed.
Any help is appreciated.
Tatyana