cancel
Showing results for 
Search instead for 
Did you mean: 

FPM Hiding Uibb from Subview , not trigger OVERRIDE_CONFIG_TABBED

0 Kudos

Hi everyone,

I'm not able to hide uibb from subview; I follow this steps.
- implement the WD interface IF_FPM_TABBED_CONF_EXIT  in wd custom

- in component configuration z....oif_component , set in global settings->Application Configuration Controller-> wd custom

in wdoinit in view_main of wd custom set this code

data: lofpm type ref to if_fpm,
         lo_ifpm_event type ref to cl_fpm_event,
         lv_tab_id type string,
         lv_tab_name type string.

lofpm = cl_fpm=>get_instance( ).
lo_ifpm_event = cl_fpm_event=>create_by_id( 'CHANGE_TAB_NAME' ).
lo_ifpm_event->mo_event_data->set_value( iv_key = 'ID'
                                        iv_value = lv_tab_id ).
lo_ifpm_event->mo_event_data->set_value( iv_key = 'NAME'
                                        iv_value = lv_tab_name ).
lofpm->raise_event( io_event = lo_ifpm_event ).

but trig the event OVERRIDE_EVENT_OIF and not override_config_tabbed.

Thank in advance

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

adding a configuration to FPM_TABBED_UIBB and specified in the Tabbed UIBB configuration as Application Configuration Controller (AppCC) webdynpro component custom, the event override_config_tabbed was trigged;
maybe u can hide the uibb from the configuration of FPM_TABBED_UIBB a not from oif_component;

from IF_FPM_OIF there isn't method set_invisible( )