SAP FCRA_READ_CRNUM Function Module for
FCRA_READ_CRNUM is a standard fcra read crnum SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fcra read crnum FM, simply by entering the name FCRA_READ_CRNUM into the relevant SAP transaction such as SE37 or SE38.
Function Group: FCRA
Program Name: SAPLFCRA
Main Program: SAPLFCRA
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FCRA_READ_CRNUM 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 'FCRA_READ_CRNUM'".
EXPORTING
I_CCINS = "
I_CCNUM = "
* I_DATE = "
IMPORTING
F_CRNUM = "
F_CRACC = "
TABLES
* T_CRACC = "
EXCEPTIONS
NOT_FOUND = 1 INVALID_DATE = 2
IMPORTING Parameters details for FCRA_READ_CRNUM
I_CCINS -
Data type: CRNUM-CCINSOptional: No
Call by Reference: No ( called with pass by value option)
I_CCNUM -
Data type: CRNUM-CCNUMOptional: No
Call by Reference: No ( called with pass by value option)
I_DATE -
Data type: CRACC-DATAB_ACCOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FCRA_READ_CRNUM
F_CRNUM -
Data type: CRNUMOptional: No
Call by Reference: No ( called with pass by value option)
F_CRACC -
Data type: CRACCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FCRA_READ_CRNUM
T_CRACC -
Data type: CRACCOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_DATE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FCRA_READ_CRNUM 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_f_crnum | TYPE CRNUM, " | |||
| lv_i_ccins | TYPE CRNUM-CCINS, " | |||
| lt_t_cracc | TYPE STANDARD TABLE OF CRACC, " | |||
| lv_not_found | TYPE CRACC, " | |||
| lv_f_cracc | TYPE CRACC, " | |||
| lv_i_ccnum | TYPE CRNUM-CCNUM, " | |||
| lv_invalid_date | TYPE CRNUM, " | |||
| lv_i_date | TYPE CRACC-DATAB_ACC. " |
|   CALL FUNCTION 'FCRA_READ_CRNUM' " |
| EXPORTING | ||
| I_CCINS | = lv_i_ccins | |
| I_CCNUM | = lv_i_ccnum | |
| I_DATE | = lv_i_date | |
| IMPORTING | ||
| F_CRNUM | = lv_f_crnum | |
| F_CRACC | = lv_f_cracc | |
| TABLES | ||
| T_CRACC | = lt_t_cracc | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| INVALID_DATE = 2 | ||
| . " FCRA_READ_CRNUM | ||
ABAP code using 7.40 inline data declarations to call FM FCRA_READ_CRNUM
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 CCINS FROM CRNUM INTO @DATA(ld_i_ccins). | ||||
| "SELECT single CCNUM FROM CRNUM INTO @DATA(ld_i_ccnum). | ||||
| "SELECT single DATAB_ACC FROM CRACC INTO @DATA(ld_i_date). | ||||
Search for further information about these or an SAP related objects