SAP G_CLEAR_BREAKDOWN Function Module for
G_CLEAR_BREAKDOWN is a standard g clear breakdown SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 g clear breakdown FM, simply by entering the name G_CLEAR_BREAKDOWN into the relevant SAP transaction such as SE37 or SE38.
Function Group: GLCF
Program Name: SAPLGLCF
Main Program: SAPLGLCF
Appliation area: G
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function G_CLEAR_BREAKDOWN 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 'G_CLEAR_BREAKDOWN'".
EXPORTING
I_CURR = "
I_HSL = "
I_RACCT = "
I_RASSC = "
I_RMVCT = "
I_RTCUR = "
I_RYACQ = "
I_TSL = "
IMPORTING
E_RASSC = "
E_RMVCT = "
E_RTCUR = "
E_RYACQ = "
E_TSL = "
IMPORTING Parameters details for G_CLEAR_BREAKDOWN
I_CURR -
Data type: T880-CURROptional: No
Call by Reference: No ( called with pass by value option)
I_HSL -
Data type: FILCA-HSLOptional: No
Call by Reference: No ( called with pass by value option)
I_RACCT -
Data type: FILCT-RACCTOptional: No
Call by Reference: No ( called with pass by value option)
I_RASSC -
Data type: FILCT-RASSCOptional: No
Call by Reference: No ( called with pass by value option)
I_RMVCT -
Data type: FILCT-RMVCTOptional: No
Call by Reference: No ( called with pass by value option)
I_RTCUR -
Data type: FILCT-RTCUROptional: No
Call by Reference: No ( called with pass by value option)
I_RYACQ -
Data type: FILCT-RYACQOptional: No
Call by Reference: No ( called with pass by value option)
I_TSL -
Data type: FILCA-TSLOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for G_CLEAR_BREAKDOWN
E_RASSC -
Data type: FILCT-RASSCOptional: No
Call by Reference: No ( called with pass by value option)
E_RMVCT -
Data type: FILCT-RMVCTOptional: No
Call by Reference: No ( called with pass by value option)
E_RTCUR -
Data type: FILCT-RTCUROptional: No
Call by Reference: No ( called with pass by value option)
E_RYACQ -
Data type: FILCT-RYACQOptional: No
Call by Reference: No ( called with pass by value option)
E_TSL -
Data type: FILCA-TSLOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for G_CLEAR_BREAKDOWN 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_i_curr | TYPE T880-CURR, " | |||
| lv_e_rassc | TYPE FILCT-RASSC, " | |||
| lv_i_hsl | TYPE FILCA-HSL, " | |||
| lv_e_rmvct | TYPE FILCT-RMVCT, " | |||
| lv_e_rtcur | TYPE FILCT-RTCUR, " | |||
| lv_i_racct | TYPE FILCT-RACCT, " | |||
| lv_e_ryacq | TYPE FILCT-RYACQ, " | |||
| lv_i_rassc | TYPE FILCT-RASSC, " | |||
| lv_e_tsl | TYPE FILCA-TSL, " | |||
| lv_i_rmvct | TYPE FILCT-RMVCT, " | |||
| lv_i_rtcur | TYPE FILCT-RTCUR, " | |||
| lv_i_ryacq | TYPE FILCT-RYACQ, " | |||
| lv_i_tsl | TYPE FILCA-TSL. " |
|   CALL FUNCTION 'G_CLEAR_BREAKDOWN' " |
| EXPORTING | ||
| I_CURR | = lv_i_curr | |
| I_HSL | = lv_i_hsl | |
| I_RACCT | = lv_i_racct | |
| I_RASSC | = lv_i_rassc | |
| I_RMVCT | = lv_i_rmvct | |
| I_RTCUR | = lv_i_rtcur | |
| I_RYACQ | = lv_i_ryacq | |
| I_TSL | = lv_i_tsl | |
| IMPORTING | ||
| E_RASSC | = lv_e_rassc | |
| E_RMVCT | = lv_e_rmvct | |
| E_RTCUR | = lv_e_rtcur | |
| E_RYACQ | = lv_e_ryacq | |
| E_TSL | = lv_e_tsl | |
| . " G_CLEAR_BREAKDOWN | ||
ABAP code using 7.40 inline data declarations to call FM G_CLEAR_BREAKDOWN
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 CURR FROM T880 INTO @DATA(ld_i_curr). | ||||
| "SELECT single RASSC FROM FILCT INTO @DATA(ld_e_rassc). | ||||
| "SELECT single HSL FROM FILCA INTO @DATA(ld_i_hsl). | ||||
| "SELECT single RMVCT FROM FILCT INTO @DATA(ld_e_rmvct). | ||||
| "SELECT single RTCUR FROM FILCT INTO @DATA(ld_e_rtcur). | ||||
| "SELECT single RACCT FROM FILCT INTO @DATA(ld_i_racct). | ||||
| "SELECT single RYACQ FROM FILCT INTO @DATA(ld_e_ryacq). | ||||
| "SELECT single RASSC FROM FILCT INTO @DATA(ld_i_rassc). | ||||
| "SELECT single TSL FROM FILCA INTO @DATA(ld_e_tsl). | ||||
| "SELECT single RMVCT FROM FILCT INTO @DATA(ld_i_rmvct). | ||||
| "SELECT single RTCUR FROM FILCT INTO @DATA(ld_i_rtcur). | ||||
| "SELECT single RYACQ FROM FILCT INTO @DATA(ld_i_ryacq). | ||||
| "SELECT single TSL FROM FILCA INTO @DATA(ld_i_tsl). | ||||
Search for further information about these or an SAP related objects