ADD_VISBIZ_CLASSES SAP Method of class IF_FPM_GUIBB_VISBIZ_CONFIG
Below is documentation, parameters and attributes of ABAP Method ADD_VISBIZ_CLASSES within SAP class IF_FPM_GUIBB_VISBIZ_CONFIG. 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 IF_FPM_GUIBB_VISBIZ_CONFIG 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 ADD_VISBIZ_CLASSES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ADD_VISBIZ_CLASSES
.| Name | Type | Data Type | Description | Default Value |
| IV_ADAPTER_CLASS_NAME | Importing | TYPE VBI_UI_ADAPTER_CLSNAME | UI Adapter class name | |
| IV_APPL_CLASS_NAME | Importing | TYPE VBI_APPLICATION_CLASSNAME | Application classname WD controller | |
| IV_RUN_QUIET | Importing | TYPE VBI_RUN_QUIET | Flag if component should run quiet or show messages | |
| IV_SERVICE_PROVIDER_CLASS | Importing | TYPE VBI_SPROVIDER_CLSNAME | Service Provider class name |
Exceptions of Method ADD_VISBIZ_CLASSES
CX_FPM_CONFIGURATION - Configuration exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_FPM_GUIBB_VISBIZ_CONFIG.
DATA: lv_IV_ADAPTER_CLASS_NAME TYPE VBI_UI_ADAPTER_CLSNAME,
lv_IV_APPL_CLASS_NAME TYPE VBI_APPLICATION_CLASSNAME,
lv_IV_RUN_QUIET TYPE VBI_RUN_QUIET,
lv_IV_SERVICE_PROVIDER_CLASS TYPE VBI_SPROVIDER_CLSNAME,
lv_other TYPE c.
CALL METHOD lo_class=>ADD_VISBIZ_CLASSES(
EXPORTING
IV_ADAPTER_CLASS_NAME = lv_IV_ADAPTER_CLASS_NAME
IV_APPL_CLASS_NAME = lv_IV_APPL_CLASS_NAME
IV_RUN_QUIET = lv_IV_RUN_QUIET
IV_SERVICE_PROVIDER_CLASS = lv_IV_SERVICE_PROVIDER_CLASS ).
Links to Related Class(s)
IF_FPM_G...Full list of available SAP object classes
Search for further information about these or an SAP related objects