Hi All,
I have the WINDOW structure:
- TABSTRIP(embeded view)
--VIEW1(view container)
---MAIN(embede view)
-
VCU_USER_DETAILS(view container)
-
VIEW_DETAILS(embedded view)
-
VCE_SCREEN(view container)
I have to display dynamic views in the lastview(VIEW_DETAILS) in view container(VCE_SCREEN').
TRY.
l_api_main->do_dynamic_navigation(
source_window_name = 'ZWINDOW'
source_vusage_name = 'VIEW_DETAILS_USAGE_2'
source_plug_name = source_plug_name
target_component_name = target_component_name
target_view_name = target_view_name
target_plug_name = 'DEFAULT'
target_embedding_position = 'VIEW_DETAILS/VCE_SCREEN'
).
CATCH cx_wd_runtime_repository INTO lr_exception.
DATA s TYPE string.
s = lr_exception->get_text( ).
RAISE EXCEPTION TYPE cx_wdr_rt_exception.
ENDTRY.
The dynamic view is displyed but TABSTRIP disappears.
Thanks, Natalia.