SAP CACS_MIGRATION_WAR_JO_INSERT Function Module for NOTRANSL: Prov.: Garantiejournal eintragen
CACS_MIGRATION_WAR_JO_INSERT is a standard cacs migration war jo insert 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.: Garantiejournal eintragen 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 migration war jo insert FM, simply by entering the name CACS_MIGRATION_WAR_JO_INSERT into the relevant SAP transaction such as SE37 or SE38.
Function Group: CACS_CACSPY_TOOLS
Program Name: SAPLCACS_CACSPY_TOOLS
Main Program: SAPLCACS_CACSPY_TOOLS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CACS_MIGRATION_WAR_JO_INSERT 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_MIGRATION_WAR_JO_INSERT'"NOTRANSL: Prov.: Garantiejournal eintragen.
EXPORTING
I_APPL = "Commission Application Identification
* I_CHECK = 'X' "Generic Type
I_REMUNERATION = "Remuneration Type
I_CTRTBU_ID = "Commission Contract Number
I_AGR_TYP = "Agreement Category
* I_DATE = SY-DATUM "Date and Time, Current (Application Server) Date
I_BEGIN = "Date and Time, Current (Application Server) Date
I_END = "Date and Time, Current (Application Server) Date
I_RULE_ID = "Commission Contract Number
I_PERIODRULE = "Period Rule
I_PERIODNO = "Period No.
EXCEPTIONS
PERIOD_EXIST_IN_JOURNAL = 1 INSERT_ERROR = 2
IMPORTING Parameters details for CACS_MIGRATION_WAR_JO_INSERT
I_APPL - Commission Application Identification
Data type: CACSAPPLOptional: No
Call by Reference: Yes
I_CHECK - Generic Type
Data type: CDefault: 'X'
Optional: No
Call by Reference: Yes
I_REMUNERATION - Remuneration Type
Data type: CACSREMOptional: No
Call by Reference: Yes
I_CTRTBU_ID - Commission Contract Number
Data type: CACS_CTRTBU_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-DATUMDefault: SY-DATUM
Optional: No
Call by Reference: Yes
I_BEGIN - Date and Time, Current (Application Server) Date
Data type: SY-DATUMOptional: No
Call by Reference: Yes
I_END - 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
EXCEPTIONS details
PERIOD_EXIST_IN_JOURNAL - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
INSERT_ERROR - Insert not possible
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for CACS_MIGRATION_WAR_JO_INSERT 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_period_exist_in_journal | TYPE CACSAPPL, " | |||
| lv_i_check | TYPE C, " 'X' | |||
| lv_i_remuneration | TYPE CACSREM, " | |||
| lv_i_ctrtbu_id | TYPE CACS_CTRTBU_ID, " | |||
| lv_insert_error | TYPE CACS_CTRTBU_ID, " | |||
| lv_i_agr_typ | TYPE CACS_AGR_TYP, " | |||
| lv_i_date | TYPE SY-DATUM, " SY-DATUM | |||
| lv_i_begin | TYPE SY-DATUM, " | |||
| lv_i_end | TYPE SY-DATUM, " | |||
| lv_i_rule_id | TYPE CACS_WARRU_ID, " | |||
| lv_i_periodrule | TYPE CACSPRDRULE, " | |||
| lv_i_periodno | TYPE CACSPERIOD. " |
|   CALL FUNCTION 'CACS_MIGRATION_WAR_JO_INSERT' "NOTRANSL: Prov.: Garantiejournal eintragen |
| EXPORTING | ||
| I_APPL | = lv_i_appl | |
| I_CHECK | = lv_i_check | |
| I_REMUNERATION | = lv_i_remuneration | |
| I_CTRTBU_ID | = lv_i_ctrtbu_id | |
| I_AGR_TYP | = lv_i_agr_typ | |
| I_DATE | = lv_i_date | |
| I_BEGIN | = lv_i_begin | |
| I_END | = lv_i_end | |
| I_RULE_ID | = lv_i_rule_id | |
| I_PERIODRULE | = lv_i_periodrule | |
| I_PERIODNO | = lv_i_periodno | |
| EXCEPTIONS | ||
| PERIOD_EXIST_IN_JOURNAL = 1 | ||
| INSERT_ERROR = 2 | ||
| . " CACS_MIGRATION_WAR_JO_INSERT | ||
ABAP code using 7.40 inline data declarations to call FM CACS_MIGRATION_WAR_JO_INSERT
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.| DATA(ld_i_check) | = 'X'. | |||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_date). | ||||
| DATA(ld_i_date) | = SY-DATUM. | |||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_begin). | ||||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_end). | ||||
Search for further information about these or an SAP related objects