SAP CACS_REPVB_REMAR Function Module for Check Flat-Rates
CACS_REPVB_REMAR is a standard cacs repvb remar SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Check Flat-Rates 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 cacs repvb remar FM, simply by entering the name CACS_REPVB_REMAR into the relevant SAP transaction such as SE37 or SE38.
Function Group: CACS_REPVB
Program Name: SAPLCACS_REPVB
Main Program: SAPLCACS_REPVB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CACS_REPVB_REMAR 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 'CACS_REPVB_REMAR'"Check Flat-Rates.
EXPORTING
P_APPL = "Commission Application (ICM)
P_ALL = "All Versions
P_PACK_SIZE = "Package Size (Number of DB Records for Fetch)
TABLES
PT_CTRTBU_ID_RG = "Range for CACS_CTRTBU_ID
PT_REMAR = "Check Flat-Rates
IMPORTING Parameters details for CACS_REPVB_REMAR
P_APPL - Commission Application (ICM)
Data type: CACSAPPLOptional: No
Call by Reference: Yes
P_ALL - All Versions
Data type: CACS_VB_ALL_VERSOptional: No
Call by Reference: Yes
P_PACK_SIZE - Package Size (Number of DB Records for Fetch)
Data type: CACS_VB_PACK_SIZEOptional: No
Call by Reference: Yes
TABLES Parameters details for CACS_REPVB_REMAR
PT_CTRTBU_ID_RG - Range for CACS_CTRTBU_ID
Data type: CACS_S_CTRTBU_ID_RGOptional: No
Call by Reference: No ( called with pass by value option)
PT_REMAR - Check Flat-Rates
Data type: CACS_S_REPVB_REMAROptional: No
Call by Reference: Yes
Copy and paste ABAP code example for CACS_REPVB_REMAR 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_p_appl | TYPE CACSAPPL, " | |||
| lt_pt_ctrtbu_id_rg | TYPE STANDARD TABLE OF CACS_S_CTRTBU_ID_RG, " | |||
| lv_p_all | TYPE CACS_VB_ALL_VERS, " | |||
| lt_pt_remar | TYPE STANDARD TABLE OF CACS_S_REPVB_REMAR, " | |||
| lv_p_pack_size | TYPE CACS_VB_PACK_SIZE. " |
|   CALL FUNCTION 'CACS_REPVB_REMAR' "Check Flat-Rates |
| EXPORTING | ||
| P_APPL | = lv_p_appl | |
| P_ALL | = lv_p_all | |
| P_PACK_SIZE | = lv_p_pack_size | |
| TABLES | ||
| PT_CTRTBU_ID_RG | = lt_pt_ctrtbu_id_rg | |
| PT_REMAR | = lt_pt_remar | |
| . " CACS_REPVB_REMAR | ||
ABAP code using 7.40 inline data declarations to call FM CACS_REPVB_REMAR
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