SAP FKK_BIX_RERATE_MASS Function Module for
FKK_BIX_RERATE_MASS is a standard fkk bix rerate mass 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 fkk bix rerate mass FM, simply by entering the name FKK_BIX_RERATE_MASS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKKBIX_RERATING
Program Name: SAPLFKKBIX_RERATING
Main Program: SAPLFKKBIX_RERATING
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_BIX_RERATE_MASS 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 'FKK_BIX_RERATE_MASS'".
EXPORTING
I_RERATE_PARAMS = "
IRT_GPART = "
* I_GPART_LOW = "
* I_GPART_HIGH = "
* IRT_REVTASK = "
* IRT_REVTASK_REF = "
* IRT_VTREF = "
* IRT_SUBAP = "
IMPORTING
E_CNT_GPART_SELECTED = "
E_CNT_RER_TRIG_COMPLETED = "
E_CNT_RER_TRIG_ERROR = "
EXCEPTIONS
GENERAL_FAULT = 1
IMPORTING Parameters details for FKK_BIX_RERATE_MASS
I_RERATE_PARAMS -
Data type: FKKBIX_RER_PARAMSOptional: No
Call by Reference: Yes
IRT_GPART -
Data type: FKK_RT_GPARTOptional: No
Call by Reference: Yes
I_GPART_LOW -
Data type: GPART_KKOptional: Yes
Call by Reference: Yes
I_GPART_HIGH -
Data type: GPART_KKOptional: Yes
Call by Reference: Yes
IRT_REVTASK -
Data type: FKK_RT_REVTASKOptional: Yes
Call by Reference: Yes
IRT_REVTASK_REF -
Data type: FKK_RT_REVTASK_REFOptional: Yes
Call by Reference: Yes
IRT_VTREF -
Data type: FKK_RT_VTREFOptional: Yes
Call by Reference: Yes
IRT_SUBAP -
Data type: FKK_RT_SUBAPOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FKK_BIX_RERATE_MASS
E_CNT_GPART_SELECTED -
Data type: IOptional: No
Call by Reference: Yes
E_CNT_RER_TRIG_COMPLETED -
Data type: IOptional: No
Call by Reference: Yes
E_CNT_RER_TRIG_ERROR -
Data type: IOptional: No
Call by Reference: Yes
EXCEPTIONS details
GENERAL_FAULT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FKK_BIX_RERATE_MASS 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_general_fault | TYPE STRING, " | |||
| lv_i_rerate_params | TYPE FKKBIX_RER_PARAMS, " | |||
| lv_e_cnt_gpart_selected | TYPE I, " | |||
| lv_irt_gpart | TYPE FKK_RT_GPART, " | |||
| lv_e_cnt_rer_trig_completed | TYPE I, " | |||
| lv_i_gpart_low | TYPE GPART_KK, " | |||
| lv_e_cnt_rer_trig_error | TYPE I, " | |||
| lv_i_gpart_high | TYPE GPART_KK, " | |||
| lv_irt_revtask | TYPE FKK_RT_REVTASK, " | |||
| lv_irt_revtask_ref | TYPE FKK_RT_REVTASK_REF, " | |||
| lv_irt_vtref | TYPE FKK_RT_VTREF, " | |||
| lv_irt_subap | TYPE FKK_RT_SUBAP. " |
|   CALL FUNCTION 'FKK_BIX_RERATE_MASS' " |
| EXPORTING | ||
| I_RERATE_PARAMS | = lv_i_rerate_params | |
| IRT_GPART | = lv_irt_gpart | |
| I_GPART_LOW | = lv_i_gpart_low | |
| I_GPART_HIGH | = lv_i_gpart_high | |
| IRT_REVTASK | = lv_irt_revtask | |
| IRT_REVTASK_REF | = lv_irt_revtask_ref | |
| IRT_VTREF | = lv_irt_vtref | |
| IRT_SUBAP | = lv_irt_subap | |
| IMPORTING | ||
| E_CNT_GPART_SELECTED | = lv_e_cnt_gpart_selected | |
| E_CNT_RER_TRIG_COMPLETED | = lv_e_cnt_rer_trig_completed | |
| E_CNT_RER_TRIG_ERROR | = lv_e_cnt_rer_trig_error | |
| EXCEPTIONS | ||
| GENERAL_FAULT = 1 | ||
| . " FKK_BIX_RERATE_MASS | ||
ABAP code using 7.40 inline data declarations to call FM FKK_BIX_RERATE_MASS
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.Search for further information about these or an SAP related objects