SAP J_3RF_FIND_EXT_CONTRACT Function Module for Find external contract number by internal(ZUONR)
J_3RF_FIND_EXT_CONTRACT is a standard j 3rf find ext contract SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Find external contract number by internal(ZUONR) 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 j 3rf find ext contract FM, simply by entering the name J_3RF_FIND_EXT_CONTRACT into the relevant SAP transaction such as SE37 or SE38.
Function Group: J3RFCNT
Program Name: SAPLJ3RFCNT
Main Program: SAPLJ3RFCNT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function J_3RF_FIND_EXT_CONTRACT 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 'J_3RF_FIND_EXT_CONTRACT'"Find external contract number by internal(ZUONR).
EXPORTING
BUKRS = "Company Code
INTCNUM = "Internal Contract Number
IMPORTING
EXTCNUM = "External Contract Number
CNTDATE = "Contract Date
KUNNR = "Customer Number
LIFNR = "Account Number of Vendor or Creditor
COMMENTS = "Comments
EXCEPTIONS
NOT_FOUND = 1 EMPTY_INPUT = 2
IMPORTING Parameters details for J_3RF_FIND_EXT_CONTRACT
BUKRS - Company Code
Data type: BUKRSOptional: No
Call by Reference: Yes
INTCNUM - Internal Contract Number
Data type: J_3RF_INTCNTNUMOptional: No
Call by Reference: Yes
EXPORTING Parameters details for J_3RF_FIND_EXT_CONTRACT
EXTCNUM - External Contract Number
Data type: J_3RF_EXTCNTNUMOptional: No
Call by Reference: Yes
CNTDATE - Contract Date
Data type: J_3RF_CNTDATOptional: No
Call by Reference: Yes
KUNNR - Customer Number
Data type: KUNNROptional: No
Call by Reference: Yes
LIFNR - Account Number of Vendor or Creditor
Data type: LIFNROptional: No
Call by Reference: Yes
COMMENTS - Comments
Data type: J_3RF_CNTCOMMOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_FOUND - Contract not found
Data type:Optional: No
Call by Reference: Yes
EMPTY_INPUT - Empty input parameters
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for J_3RF_FIND_EXT_CONTRACT 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_bukrs | TYPE BUKRS, " | |||
| lv_extcnum | TYPE J_3RF_EXTCNTNUM, " | |||
| lv_not_found | TYPE J_3RF_EXTCNTNUM, " | |||
| lv_cntdate | TYPE J_3RF_CNTDAT, " | |||
| lv_intcnum | TYPE J_3RF_INTCNTNUM, " | |||
| lv_empty_input | TYPE J_3RF_INTCNTNUM, " | |||
| lv_kunnr | TYPE KUNNR, " | |||
| lv_lifnr | TYPE LIFNR, " | |||
| lv_comments | TYPE J_3RF_CNTCOMM. " |
|   CALL FUNCTION 'J_3RF_FIND_EXT_CONTRACT' "Find external contract number by internal(ZUONR) |
| EXPORTING | ||
| BUKRS | = lv_bukrs | |
| INTCNUM | = lv_intcnum | |
| IMPORTING | ||
| EXTCNUM | = lv_extcnum | |
| CNTDATE | = lv_cntdate | |
| KUNNR | = lv_kunnr | |
| LIFNR | = lv_lifnr | |
| COMMENTS | = lv_comments | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| EMPTY_INPUT = 2 | ||
| . " J_3RF_FIND_EXT_CONTRACT | ||
ABAP code using 7.40 inline data declarations to call FM J_3RF_FIND_EXT_CONTRACT
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