SCREEN_TAB SAP Method Tab of a dynpro screen
Below is documentation, parameters and attributes of ABAP Method SCREEN_TAB within SAP class /BOBF/CL_CONF_UI_VIEW_MODIFIER. 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 /BOBF/CL_CONF_UI_VIEW_MODIFIER 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 SCREEN_TAB can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SCREEN_TAB
.| Name | Type | Data Type | Description | Default Value |
| IV_ELEMENT_KEY | Importing | TYPE /BOBF/CONF_KEY | NodeID | |
| IV_TREE_ELEMENT | Importing | TYPE /BOBF/CONF_UI_TREE | Tree Element | |
| CS_SCREEN | Changing | TYPE SCREEN | Structure Description for the System Data Object SCREEN | |
| RV_MODIFIED | Returning | TYPE ABAP_BOOL |
Exceptions of Method SCREEN_TAB
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BOBF/CL_CONF_UI_VIEW_MODIFIER.
DATA: lv_CS_SCREEN TYPE SCREEN,
lv_IV_ELEMENT_KEY TYPE /BOBF/CONF_KEY,
lv_IV_TREE_ELEMENT TYPE /BOBF/CONF_UI_TREE,
lv_RV_MODIFIED TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD lo_class=>SCREEN_TAB(
EXPORTING
IV_ELEMENT_KEY = lv_IV_ELEMENT_KEY
IV_TREE_ELEMENT = lv_IV_TREE_ELEMENT
CHANGING
CS_SCREEN = lv_CS_SCREEN
RECEIVING
RV_MODIFIED = lv_RV_MODIFIED )
"Alternate coding for Method Call with returning parameter
lv_RV_MODIFIED = lo_class=>SCREEN_TAB(
EXPORTING
IV_ELEMENT_KEY = lv_IV_ELEMENT_KEY
IV_TREE_ELEMENT = lv_IV_TREE_ELEMENT
CHANGING
CS_SCREEN = lv_CS_SCREEN ).
Links to Related Class(s)
/BOBF/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects