ENABLE_GUI_STATUS_FUNCTION SAP Method Enable/Disable GUI Status Function
Below is documentation, parameters and attributes of ABAP Method ENABLE_GUI_STATUS_FUNCTION within SAP class /BOFU/CL_VIM_VIEW_DAC. 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 /BOFU/CL_VIM_VIEW_DAC into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method ENABLE_GUI_STATUS_FUNCTION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ENABLE_GUI_STATUS_FUNCTION
.| Name | Type | Data Type | Description | Default Value |
| IV_ENABLE | Importing | TYPE ABAP_BOOL | ||
| IV_FUNCTION | Importing | TYPE SY-UCOMM | Function code that PAI triggered | |
| CT_EXCL_FUNC | Changing | TYPE /BOFU/IF_VIM_VIEW_DAC=>TT_GUI_STATUS_EXCL_FUNC | GUI Status Exclude Functions |
Exceptions of Method ENABLE_GUI_STATUS_FUNCTION
This method does not have any exceptionsExample ABAP coding
DATA: lv_CT_EXCL_FUNC TYPE /BOFU/IF_VIM_VIEW_DAC=>TT_GUI_STATUS_EXCL_FUNC,
lv_IV_ENABLE TYPE ABAP_BOOL,
lv_IV_FUNCTION TYPE SY-UCOMM,
lv_other TYPE c.
CALL METHOD /BOFU/CL_VIM_VIEW_DAC=>ENABLE_GUI_STATUS_FUNCTION(
EXPORTING
IV_ENABLE = lv_IV_ENABLE
IV_FUNCTION = lv_IV_FUNCTION
CHANGING
CT_EXCL_FUNC = lv_CT_EXCL_FUNC ).
Links to Related Class(s)
/BOFU/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects