SAP CACS00_DOC_WAR_CREATE Function Module for NOTRANSL: Prov.: Garantiebeleg erzeugen
CACS00_DOC_WAR_CREATE is a standard cacs00 doc war create 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: Prov.: Garantiebeleg erzeugen 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 cacs00 doc war create FM, simply by entering the name CACS00_DOC_WAR_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: CACS00_CACSPY_TOOLS
Program Name: SAPLCACS00_CACSPY_TOOLS
Main Program: SAPLCACS00_CACSPY_TOOLS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CACS00_DOC_WAR_CREATE 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 'CACS00_DOC_WAR_CREATE'"NOTRANSL: Prov.: Garantiebeleg erzeugen.
EXPORTING
I_APPL = "Commission Application Identification
I_AMOUNT = "Remuneration Amount Ready for Disbursement in Contr Currency
I_CURR = "Currency Key
I_LED_AMOUNT = "Disbursable Partial Remuner.Amount in Comm. Model Currency
I_LED_CURR = "Currency Key
I_CTRTBU_ID = "Commission Contract Number
I_AGR_TYP = "Agreement Category
I_DATE = "Date and Time, Current (Application Server) Date
I_RULE_ID = "Commission Contract Number
I_PERIODRULE = "Period Rule
I_PERIODNO = "Period No.
I_REMUNERATION = "Remuneration Type
I_REM_RECALL = "Remuneration Type
IMPORTING Parameters details for CACS00_DOC_WAR_CREATE
I_APPL - Commission Application Identification
Data type: CACSAPPLOptional: No
Call by Reference: Yes
I_AMOUNT - Remuneration Amount Ready for Disbursement in Contr Currency
Data type: CACSDUECONAMNTOptional: No
Call by Reference: Yes
I_CURR - Currency Key
Data type: WAERSOptional: No
Call by Reference: Yes
I_LED_AMOUNT - Disbursable Partial Remuner.Amount in Comm. Model Currency
Data type: CACSDUELEDAMNTOptional: No
Call by Reference: Yes
I_LED_CURR - Currency Key
Data type: WAERSOptional: No
Call by Reference: Yes
I_CTRTBU_ID - Commission Contract Number
Data type: ISIS_CONTRACT_IDOptional: No
Call by Reference: Yes
I_AGR_TYP - Agreement Category
Data type: CACS_AGR_TYPOptional: No
Call by Reference: Yes
I_DATE - Date and Time, Current (Application Server) Date
Data type: SY-DATUMOptional: No
Call by Reference: Yes
I_RULE_ID - Commission Contract Number
Data type: CACS_WARRU_IDOptional: No
Call by Reference: Yes
I_PERIODRULE - Period Rule
Data type: CACSPRDRULEOptional: No
Call by Reference: Yes
I_PERIODNO - Period No.
Data type: CACSPERIODOptional: No
Call by Reference: Yes
I_REMUNERATION - Remuneration Type
Data type: CACSREMOptional: No
Call by Reference: Yes
I_REM_RECALL - Remuneration Type
Data type: CACSREMOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for CACS00_DOC_WAR_CREATE 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_appl | TYPE CACSAPPL, " | |||
| lv_i_amount | TYPE CACSDUECONAMNT, " | |||
| lv_i_curr | TYPE WAERS, " | |||
| lv_i_led_amount | TYPE CACSDUELEDAMNT, " | |||
| lv_i_led_curr | TYPE WAERS, " | |||
| lv_i_ctrtbu_id | TYPE ISIS_CONTRACT_ID, " | |||
| lv_i_agr_typ | TYPE CACS_AGR_TYP, " | |||
| lv_i_date | TYPE SY-DATUM, " | |||
| lv_i_rule_id | TYPE CACS_WARRU_ID, " | |||
| lv_i_periodrule | TYPE CACSPRDRULE, " | |||
| lv_i_periodno | TYPE CACSPERIOD, " | |||
| lv_i_remuneration | TYPE CACSREM, " | |||
| lv_i_rem_recall | TYPE CACSREM. " |
|   CALL FUNCTION 'CACS00_DOC_WAR_CREATE' "NOTRANSL: Prov.: Garantiebeleg erzeugen |
| EXPORTING | ||
| I_APPL | = lv_i_appl | |
| I_AMOUNT | = lv_i_amount | |
| I_CURR | = lv_i_curr | |
| I_LED_AMOUNT | = lv_i_led_amount | |
| I_LED_CURR | = lv_i_led_curr | |
| I_CTRTBU_ID | = lv_i_ctrtbu_id | |
| I_AGR_TYP | = lv_i_agr_typ | |
| I_DATE | = lv_i_date | |
| I_RULE_ID | = lv_i_rule_id | |
| I_PERIODRULE | = lv_i_periodrule | |
| I_PERIODNO | = lv_i_periodno | |
| I_REMUNERATION | = lv_i_remuneration | |
| I_REM_RECALL | = lv_i_rem_recall | |
| . " CACS00_DOC_WAR_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM CACS00_DOC_WAR_CREATE
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 DATUM FROM SY INTO @DATA(ld_i_date). | ||||
Search for further information about these or an SAP related objects