EX_BADI_MAHD_005 SAP Method Determine Data to Display and Popup Size for AHD Display
Below is documentation, parameters and attributes of ABAP Method EX_BADI_MAHD_005 within SAP class IF_EX_BADI_MAHD. 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_EX_BADI_MAHD 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 EX_BADI_MAHD_005 can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EX_BADI_MAHD_005
.| Name | Type | Data Type | Description | Default Value |
| I_CALL_FROM | Importing | TYPE CHAR1 | Indicator: Calling Program | |
| C_FILL_GAPS | Changing | TYPE FLAG | Indicator: Display of Periods Without AHD | |
| C_SCOFO | Changing | TYPE CHAR1 | Forecast Data Display | |
| C_SCOHI | Changing | TYPE CHAR1 | Historical Data Display | |
| C_SCREEN_END | Changing | TYPE I | Last Column for Dialog Box Display |
Exceptions of Method EX_BADI_MAHD_005
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_MAHD.
DATA: lv_C_FILL_GAPS TYPE FLAG,
lv_C_SCOFO TYPE CHAR1,
lv_C_SCOHI TYPE CHAR1,
lv_C_SCREEN_END TYPE I,
lv_I_CALL_FROM TYPE CHAR1,
lv_other TYPE c.
CALL METHOD lo_class=>EX_BADI_MAHD_005(
EXPORTING
I_CALL_FROM = lv_I_CALL_FROM
CHANGING
C_FILL_GAPS = lv_C_FILL_GAPS
C_SCOFO = lv_C_SCOFO
C_SCOHI = lv_C_SCOHI
C_SCREEN_END = lv_C_SCREEN_END ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects