SAP SD_BONUS_DRILL_DOWN_DISPLAY Function Module for NOTRANSL: Bonus: Report fuer Einzelnachweis
SD_BONUS_DRILL_DOWN_DISPLAY is a standard sd bonus drill down display SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Bonus: Report fuer Einzelnachweis processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for sd bonus drill down display FM, simply by entering the name SD_BONUS_DRILL_DOWN_DISPLAY into the relevant SAP transaction such as SE37 or SE38.
Function Group: V15B
Program Name: SAPLV15B
Main Program: SAPLV15B
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function SD_BONUS_DRILL_DOWN_DISPLAY pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'SD_BONUS_DRILL_DOWN_DISPLAY'"NOTRANSL: Bonus: Report fuer Einzelnachweis.
EXPORTING
DD_ABSPZ = "Summarization Level
DD_KURGV = "
* DD_LEAVE_TO_LIST_PROCESSING = 'X' "Checkbox
DD_KONA = "Agreements
* DD_LIST = ' ' "Checkbox
* DD_DATAB = '00000000' "Agreement valid-from date
* DD_DATBI = '99991231' "Agreement valid-from date
IMPORTING
DD_ENTRIES = "Checkbox
TABLES
ZKONP_TAB = "Conditions
ZVAKE_TAB = "
IMPORTING Parameters details for SD_BONUS_DRILL_DOWN_DISPLAY
DD_ABSPZ - Summarization Level
Data type: KONA-ABSPZOptional: No
Call by Reference: No ( called with pass by value option)
DD_KURGV -
Data type: KURGVOptional: No
Call by Reference: No ( called with pass by value option)
DD_LEAVE_TO_LIST_PROCESSING - Checkbox
Data type: RVSEL-XFELDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
DD_KONA - Agreements
Data type: KONAOptional: No
Call by Reference: No ( called with pass by value option)
DD_LIST - Checkbox
Data type: RVSEL-XFELDDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
DD_DATAB - Agreement valid-from date
Data type: KONA-DATABDefault: '00000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)
DD_DATBI - Agreement valid-from date
Data type: KONA-DATABDefault: '99991231'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SD_BONUS_DRILL_DOWN_DISPLAY
DD_ENTRIES - Checkbox
Data type: RVSEL-XFELDOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SD_BONUS_DRILL_DOWN_DISPLAY
ZKONP_TAB - Conditions
Data type: KONPOptional: No
Call by Reference: No ( called with pass by value option)
ZVAKE_TAB -
Data type: VAKEOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SD_BONUS_DRILL_DOWN_DISPLAY Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_dd_abspz | TYPE KONA-ABSPZ, " | |||
| lt_zkonp_tab | TYPE STANDARD TABLE OF KONP, " | |||
| lv_dd_entries | TYPE RVSEL-XFELD, " | |||
| lv_dd_kurgv | TYPE KURGV, " | |||
| lt_zvake_tab | TYPE STANDARD TABLE OF VAKE, " | |||
| lv_dd_leave_to_list_processing | TYPE RVSEL-XFELD, " 'X' | |||
| lv_dd_kona | TYPE KONA, " | |||
| lv_dd_list | TYPE RVSEL-XFELD, " ' ' | |||
| lv_dd_datab | TYPE KONA-DATAB, " '00000000' | |||
| lv_dd_datbi | TYPE KONA-DATAB. " '99991231' |
|   CALL FUNCTION 'SD_BONUS_DRILL_DOWN_DISPLAY' "NOTRANSL: Bonus: Report fuer Einzelnachweis |
| EXPORTING | ||
| DD_ABSPZ | = lv_dd_abspz | |
| DD_KURGV | = lv_dd_kurgv | |
| DD_LEAVE_TO_LIST_PROCESSING | = lv_dd_leave_to_list_processing | |
| DD_KONA | = lv_dd_kona | |
| DD_LIST | = lv_dd_list | |
| DD_DATAB | = lv_dd_datab | |
| DD_DATBI | = lv_dd_datbi | |
| IMPORTING | ||
| DD_ENTRIES | = lv_dd_entries | |
| TABLES | ||
| ZKONP_TAB | = lt_zkonp_tab | |
| ZVAKE_TAB | = lt_zvake_tab | |
| . " SD_BONUS_DRILL_DOWN_DISPLAY | ||
ABAP code using 7.40 inline data declarations to call FM SD_BONUS_DRILL_DOWN_DISPLAY
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single ABSPZ FROM KONA INTO @DATA(ld_dd_abspz). | ||||
| "SELECT single XFELD FROM RVSEL INTO @DATA(ld_dd_entries). | ||||
| "SELECT single XFELD FROM RVSEL INTO @DATA(ld_dd_leave_to_list_processing). | ||||
| DATA(ld_dd_leave_to_list_processing) | = 'X'. | |||
| "SELECT single XFELD FROM RVSEL INTO @DATA(ld_dd_list). | ||||
| DATA(ld_dd_list) | = ' '. | |||
| "SELECT single DATAB FROM KONA INTO @DATA(ld_dd_datab). | ||||
| DATA(ld_dd_datab) | = '00000000'. | |||
| "SELECT single DATAB FROM KONA INTO @DATA(ld_dd_datbi). | ||||
| DATA(ld_dd_datbi) | = '99991231'. | |||
Search for further information about these or an SAP related objects