SAP REFXCN_COMPARE_CONTRACT2 Function Module for Compare Contract Version and Original Contract (Store Plus)
REFXCN_COMPARE_CONTRACT2 is a standard refxcn compare contract2 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Compare Contract Version and Original Contract (Store Plus) 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 refxcn compare contract2 FM, simply by entering the name REFXCN_COMPARE_CONTRACT2 into the relevant SAP transaction such as SE37 or SE38.
Function Group: REFXCN_COMPARE_CONTRACT2
Program Name: SAPLREFXCN_COMPARE_CONTRACT2
Main Program: SAPLREFXCN_COMPARE_CONTRACT2
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function REFXCN_COMPARE_CONTRACT2 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 'REFXCN_COMPARE_CONTRACT2'"Compare Contract Version and Original Contract (Store Plus).
EXPORTING
IV_BUKRS = "Company Code
IV_RECNNR_ORI = "Original Contract No.
IV_RECNNR_VER = "Contract Version No.
IV_MODE = "Contract Comparison Mode
IMPORTING
ET_DIFF = "Difference table
IMPORTING Parameters details for REFXCN_COMPARE_CONTRACT2
IV_BUKRS - Company Code
Data type: BUKRSOptional: No
Call by Reference: Yes
IV_RECNNR_ORI - Original Contract No.
Data type: REFXCN_CNNRFMOptional: No
Call by Reference: Yes
IV_RECNNR_VER - Contract Version No.
Data type: REFXCN_CNNRFVOptional: No
Call by Reference: Yes
IV_MODE - Contract Comparison Mode
Data type: REFXCN_CMODEOptional: No
Call by Reference: Yes
EXPORTING Parameters details for REFXCN_COMPARE_CONTRACT2
ET_DIFF - Difference table
Data type: REFXCN_DIFF_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for REFXCN_COMPARE_CONTRACT2 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_diff | TYPE REFXCN_DIFF_T, " | |||
| lv_iv_bukrs | TYPE BUKRS, " | |||
| lv_iv_recnnr_ori | TYPE REFXCN_CNNRFM, " | |||
| lv_iv_recnnr_ver | TYPE REFXCN_CNNRFV, " | |||
| lv_iv_mode | TYPE REFXCN_CMODE. " |
|   CALL FUNCTION 'REFXCN_COMPARE_CONTRACT2' "Compare Contract Version and Original Contract (Store Plus) |
| EXPORTING | ||
| IV_BUKRS | = lv_iv_bukrs | |
| IV_RECNNR_ORI | = lv_iv_recnnr_ori | |
| IV_RECNNR_VER | = lv_iv_recnnr_ver | |
| IV_MODE | = lv_iv_mode | |
| IMPORTING | ||
| ET_DIFF | = lv_et_diff | |
| . " REFXCN_COMPARE_CONTRACT2 | ||
ABAP code using 7.40 inline data declarations to call FM REFXCN_COMPARE_CONTRACT2
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