GET_TAB_VISIBILITY SAP Method of class CL_FPM_LIST_SETTINGS_DIALOG_AS
Below is documentation, parameters and attributes of ABAP Method GET_TAB_VISIBILITY within SAP class CL_FPM_LIST_SETTINGS_DIALOG_AS. 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_LIST_SETTINGS_DIALOG_AS 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 GET_TAB_VISIBILITY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_TAB_VISIBILITY
.| Name | Type | Data Type | Description | Default Value |
| EV_AGGREGATION_VISIBLE | Exporting | TYPE WDY_BOOLEAN | Replacement for Real Boolean Type: 'X' == True '' == False | |
| EV_FILTER_VISIBLE | Exporting | TYPE WDY_BOOLEAN | Supplement for True Boolean Type: 'X' == True '' == False | |
| EV_SORT_VISIBLE | Exporting | TYPE WDY_BOOLEAN | Supplement for True Boolean Type: 'X' == True '' == False | |
| EV_COND_FORMAT_VISIBLE | Exporting | TYPE WDY_BOOLEAN | Replacement for Real Boolean Type: 'X' == True '' == False | |
| EV_EXCEL_VISIBLE | Exporting | TYPE WDY_BOOLEAN | Replacement for Real Boolean Type: 'X' == True '' == False | |
| EV_PDF_VISIBLE | Exporting | TYPE WDY_BOOLEAN | Replacement for Real Boolean Type: 'X' == True '' == False |
Exceptions of Method GET_TAB_VISIBILITY
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_FPM_LIST_SETTINGS_DIALOG_AS.
DATA: lv_EV_AGGREGATION_VISIBLE TYPE WDY_BOOLEAN,
lv_EV_FILTER_VISIBLE TYPE WDY_BOOLEAN,
lv_EV_SORT_VISIBLE TYPE WDY_BOOLEAN,
lv_EV_COND_FORMAT_VISIBLE TYPE WDY_BOOLEAN,
lv_EV_EXCEL_VISIBLE TYPE WDY_BOOLEAN,
lv_EV_PDF_VISIBLE TYPE WDY_BOOLEAN,
lv_other TYPE c.
CALL METHOD lo_class=>GET_TAB_VISIBILITY(
IMPORTING
EV_AGGREGATION_VISIBLE = lv_EV_AGGREGATION_VISIBLE
EV_FILTER_VISIBLE = lv_EV_FILTER_VISIBLE
EV_SORT_VISIBLE = lv_EV_SORT_VISIBLE
EV_COND_FORMAT_VISIBLE = lv_EV_COND_FORMAT_VISIBLE
EV_EXCEL_VISIBLE = lv_EV_EXCEL_VISIBLE
EV_PDF_VISIBLE = lv_EV_PDF_VISIBLE ).
Links to Related Class(s)
CL_FPM_L...Full list of available SAP object classes
Search for further information about these or an SAP related objects