GET_DEFAULT_CHART_SETTINGS SAP Method Get default chart settings of a chart type
Below is documentation, parameters and attributes of ABAP Method GET_DEFAULT_CHART_SETTINGS within SAP class IF_FPM_GUIBB_CHART_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_CHART_CONFIG 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 GET_DEFAULT_CHART_SETTINGS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_DEFAULT_CHART_SETTINGS
.| Name | Type | Data Type | Description | Default Value |
| IV_CHART_TYPE | Importing | TYPE FPMGB_CHART_TYPE | Chart Type | |
| IV_COMPONENT_NAME | Importing | TYPE STRING | ||
| ET_DEFAULT_SETTING | Exporting | TYPE TY_T_CHART_SETTING | Chart type settings |
Exceptions of Method GET_DEFAULT_CHART_SETTINGS
CX_FPM_CONFIGURATION - Configuration exceptionsExample ABAP coding
DATA: lv_ET_DEFAULT_SETTING TYPE TY_T_CHART_SETTING,
lv_IV_CHART_TYPE TYPE FPMGB_CHART_TYPE,
lv_IV_COMPONENT_NAME TYPE STRING,
lv_other TYPE c.
CALL METHOD IF_FPM_GUIBB_CHART_CONFIG=>GET_DEFAULT_CHART_SETTINGS(
EXPORTING
IV_CHART_TYPE = lv_IV_CHART_TYPE
IV_COMPONENT_NAME = lv_IV_COMPONENT_NAME
IMPORTING
ET_DEFAULT_SETTING = lv_ET_DEFAULT_SETTING ).
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