Hi Shanmuga,
If we make all the fields that are in this tab as display then automatically the tab disappear... That is how I handled the same scenario. By the way I have not used screen user-exit but Badi (ME_GUI_PO_CUST) for handling the custom tab
IF_EX_ME_PROCESS_PO_CUST~FIELDSELECTION_ITEM Special Field Selection Item Code: READ TABLE ch_fieldselection ASSIGNING <fs> WITH TABLE KEY metafield = mmmfd_cust_10. IF sy-subrc EQ 0. IF lv_flag EQ abap_true. <fs>-fieldstatus = '+'. " Change ELSE. <fs>-fieldstatus = '-'. " Display ENDIF. ENDIF.
Regards,
Murali
Add comment