_DEL_TAB_UIBB SAP Method Add UIBB to a tab
Below is documentation, parameters and attributes of ABAP Method _DEL_TAB_UIBB within SAP class CL_FPM_CONFIG_WRITER. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_FPM_CONFIG_WRITER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method _DEL_TAB_UIBB can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method _DEL_TAB_UIBB
.| Name | Type | Data Type | Description | Default Value |
| IV_COMPONENT | Importing | TYPE WDY_COMPONENT_NAME | Web Dynpro: Component Name | |
| IV_INTERFACE_VIEW | Importing | TYPE WDY_VIEW_NAME | Web Dynpro: Name of a Web Dynpro View | |
| IV_TAB_ID | Importing | TYPE STRING | ||
| IV_VARIANT_ID | Importing | TYPE STRING |
Exceptions of Method _DEL_TAB_UIBB
CX_WD_PERSONALIZATION - Floorplan exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_FPM_CONFIG_WRITER.
DATA: lv_IV_COMPONENT TYPE WDY_COMPONENT_NAME,
lv_IV_INTERFACE_VIEW TYPE WDY_VIEW_NAME,
lv_IV_TAB_ID TYPE STRING,
lv_IV_VARIANT_ID TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>_DEL_TAB_UIBB(
EXPORTING
IV_COMPONENT = lv_IV_COMPONENT
IV_INTERFACE_VIEW = lv_IV_INTERFACE_VIEW
IV_TAB_ID = lv_IV_TAB_ID
IV_VARIANT_ID = lv_IV_VARIANT_ID ).
Links to Related Class(s)
CL_FPM_C...Full list of available SAP object classes
Search for further information about these or an SAP related objects