SAP RP_01C_BAV_CALC_KONT Function Module for
RP_01C_BAV_CALC_KONT is a standard rp 01c bav calc kont 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 rp 01c bav calc kont FM, simply by entering the name RP_01C_BAV_CALC_KONT into the relevant SAP transaction such as SE37 or SE38.
Function Group: RPDWU
Program Name: SAPLRPDWU
Main Program: SAPLRPDWU
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RP_01C_BAV_CALC_KONT 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 'RP_01C_BAV_CALC_KONT'".
EXPORTING
ICA_PERNR = "
ICA_WA_S0263 = "
ICA_PROTO = "
ICA_BEGDA = "
ICA_PAPER = "
ICA_NVAEG = "
IMPORTING
ECA_WAND_ZSF = "
CHANGING
CCA_WAND = "
TABLES
TCA_BAV_PROT = "
TCA_IT = "
EXCEPTIONS
KONTINGENT_ERSCHOEPFT = 1
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLRPDWU_100 Create Conversion Methods
IMPORTING Parameters details for RP_01C_BAV_CALC_KONT
ICA_PERNR -
Data type: P_PERNROptional: No
Call by Reference: No ( called with pass by value option)
ICA_WA_S0263 -
Data type: P01C_WATABOptional: No
Call by Reference: Yes
ICA_PROTO -
Data type:Optional: No
Call by Reference: Yes
ICA_BEGDA -
Data type: BEGDAOptional: No
Call by Reference: Yes
ICA_PAPER -
Data type: PC2PAPEROptional: No
Call by Reference: Yes
ICA_NVAEG -
Data type: P01A_NVAEGOptional: No
Call by Reference: Yes
EXPORTING Parameters details for RP_01C_BAV_CALC_KONT
ECA_WAND_ZSF -
Data type: BETRGOptional: No
Call by Reference: Yes
CHANGING Parameters details for RP_01C_BAV_CALC_KONT
CCA_WAND -
Data type: BETRGOptional: No
Call by Reference: Yes
TABLES Parameters details for RP_01C_BAV_CALC_KONT
TCA_BAV_PROT -
Data type: PLOG_TEXTOptional: No
Call by Reference: No ( called with pass by value option)
TCA_IT -
Data type: PC207Optional: No
Call by Reference: Yes
EXCEPTIONS details
KONTINGENT_ERSCHOEPFT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RP_01C_BAV_CALC_KONT 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_cca_wand | TYPE BETRG, " | |||
| lv_ica_pernr | TYPE P_PERNR, " | |||
| lv_eca_wand_zsf | TYPE BETRG, " | |||
| lt_tca_bav_prot | TYPE STANDARD TABLE OF PLOG_TEXT, " | |||
| lv_kontingent_erschoepft | TYPE PLOG_TEXT, " | |||
| lt_tca_it | TYPE STANDARD TABLE OF PC207, " | |||
| lv_ica_wa_s0263 | TYPE P01C_WATAB, " | |||
| lv_ica_proto | TYPE P01C_WATAB, " | |||
| lv_ica_begda | TYPE BEGDA, " | |||
| lv_ica_paper | TYPE PC2PAPER, " | |||
| lv_ica_nvaeg | TYPE P01A_NVAEG. " |
|   CALL FUNCTION 'RP_01C_BAV_CALC_KONT' " |
| EXPORTING | ||
| ICA_PERNR | = lv_ica_pernr | |
| ICA_WA_S0263 | = lv_ica_wa_s0263 | |
| ICA_PROTO | = lv_ica_proto | |
| ICA_BEGDA | = lv_ica_begda | |
| ICA_PAPER | = lv_ica_paper | |
| ICA_NVAEG | = lv_ica_nvaeg | |
| IMPORTING | ||
| ECA_WAND_ZSF | = lv_eca_wand_zsf | |
| CHANGING | ||
| CCA_WAND | = lv_cca_wand | |
| TABLES | ||
| TCA_BAV_PROT | = lt_tca_bav_prot | |
| TCA_IT | = lt_tca_it | |
| EXCEPTIONS | ||
| KONTINGENT_ERSCHOEPFT = 1 | ||
| . " RP_01C_BAV_CALC_KONT | ||
ABAP code using 7.40 inline data declarations to call FM RP_01C_BAV_CALC_KONT
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