Non-Modal Popup in WebDynpro 4 ABAP?
Hey,
i tried to create a non-modal popup but by opening the popup the following error is raised:
System Tried to Create Amodal Window. This Is Currently Not Possible
Below you can see how i created the popup:
CALL METHOD cl_wd_popup_factory=>popup EXPORTING component = com * used_component_name = view_name = 'VTEST' * create_only = ABAP_FALSE modal = ABAP_FALSE * window_title = close_button = abap_true * button_kind = * message_type = IF_WD_WINDOW=>CO_MSG_TYPE_NONE * close_in_any_case = ABAP_TRUE * IMPORTING * popup_window = * component_usage = . * CATCH cx_wd_runtime_repository . *ENDTRY.
Is there any possibility to create a non-modal popup anyway?
Thanks in advance