SAP FMCA_SAMPLE_P312 Function Module for Determine Adjustment Documents
FMCA_SAMPLE_P312 is a standard fmca sample p312 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Determine Adjustment Documents 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 fmca sample p312 FM, simply by entering the name FMCA_SAMPLE_P312 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMCA_EVENTS
Program Name: SAPLFMCA_EVENTS
Main Program: SAPLFMCA_EVENTS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FMCA_SAMPLE_P312 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 'FMCA_SAMPLE_P312'"Determine Adjustment Documents.
EXPORTING
* IS_TAX_RETURN = "Upload Structure for Process Objects
IT_HEADER_NEW = "Standard Table for Type FKKINVBILL_H
IT_ITEM_NEW = "Standard Table for Structure FKKINVBILL_I
IT_ADDI_NEW = "Standard Table for Structure FKKINVBILL_A
IT_HEADER_OLD = "Standard Table for Type FKKINVBILL_H
IT_ITEM_OLD = "Standard Table for Structure FKKINVBILL_I
IT_ADDI_OLD = "Standard Table for Structure FKKINVBILL_A
IMPORTING
ET_MAP = "Table Type: Asgmnt of Bllg Doc. to Be Adjstd to Adjst Doc.
IMPORTING Parameters details for FMCA_SAMPLE_P312
IS_TAX_RETURN - Upload Structure for Process Objects
Data type: FMCA_POBJ_SOptional: Yes
Call by Reference: Yes
IT_HEADER_NEW - Standard Table for Type FKKINVBILL_H
Data type: FKKINVBILL_H_TABOptional: No
Call by Reference: Yes
IT_ITEM_NEW - Standard Table for Structure FKKINVBILL_I
Data type: FKKINVBILL_I_TABOptional: No
Call by Reference: Yes
IT_ADDI_NEW - Standard Table for Structure FKKINVBILL_A
Data type: FKKINVBILL_A_TABOptional: No
Call by Reference: Yes
IT_HEADER_OLD - Standard Table for Type FKKINVBILL_H
Data type: FKKINVBILL_H_TABOptional: No
Call by Reference: Yes
IT_ITEM_OLD - Standard Table for Structure FKKINVBILL_I
Data type: FKKINVBILL_I_TABOptional: No
Call by Reference: Yes
IT_ADDI_OLD - Standard Table for Structure FKKINVBILL_A
Data type: FKKINVBILL_A_TABOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FMCA_SAMPLE_P312
ET_MAP - Table Type: Asgmnt of Bllg Doc. to Be Adjstd to Adjst Doc.
Data type: FMCA_BILLING_ADJUSTMENT_MAP_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FMCA_SAMPLE_P312 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_et_map | TYPE FMCA_BILLING_ADJUSTMENT_MAP_T, " | |||
| lv_is_tax_return | TYPE FMCA_POBJ_S, " | |||
| lv_it_header_new | TYPE FKKINVBILL_H_TAB, " | |||
| lv_it_item_new | TYPE FKKINVBILL_I_TAB, " | |||
| lv_it_addi_new | TYPE FKKINVBILL_A_TAB, " | |||
| lv_it_header_old | TYPE FKKINVBILL_H_TAB, " | |||
| lv_it_item_old | TYPE FKKINVBILL_I_TAB, " | |||
| lv_it_addi_old | TYPE FKKINVBILL_A_TAB. " |
|   CALL FUNCTION 'FMCA_SAMPLE_P312' "Determine Adjustment Documents |
| EXPORTING | ||
| IS_TAX_RETURN | = lv_is_tax_return | |
| IT_HEADER_NEW | = lv_it_header_new | |
| IT_ITEM_NEW | = lv_it_item_new | |
| IT_ADDI_NEW | = lv_it_addi_new | |
| IT_HEADER_OLD | = lv_it_header_old | |
| IT_ITEM_OLD | = lv_it_item_old | |
| IT_ADDI_OLD | = lv_it_addi_old | |
| IMPORTING | ||
| ET_MAP | = lv_et_map | |
| . " FMCA_SAMPLE_P312 | ||
ABAP code using 7.40 inline data declarations to call FM FMCA_SAMPLE_P312
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