SAP ICL_ID_RECORD_CREATE Function Module for
ICL_ID_RECORD_CREATE is a standard icl id record create 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 icl id record create FM, simply by entering the name ICL_ID_RECORD_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: ICL_ID_WORKFLOW
Program Name: SAPLICL_ID_WORKFLOW
Main Program: SAPLICL_ID_WORKFLOW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ICL_ID_RECORD_CREATE 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 'ICL_ID_RECORD_CREATE'".
EXPORTING
IS_DOCUMENT_ENTRY = "
IS_BUNDLE = "
IS_CLAIM = "
IS_ARCHIVE_LINK = "
IS_EXT_DOC_ID = "
IS_RECORD = "
IV_REC_DESCRIP = "
IV_MODEL = "
IS_ELEMENT = "
IV_EL_DESCRIP = "
IS_ELEMENT_BUNDLE = "
IMPORTING
EV_CCEVENT = "
IMPORTING Parameters details for ICL_ID_RECORD_CREATE
IS_DOCUMENT_ENTRY -
Data type: OARFCINOptional: No
Call by Reference: Yes
IS_BUNDLE -
Data type: ICL_ID_BUNDLEOptional: No
Call by Reference: Yes
IS_CLAIM -
Data type: ICL_ID_CLAIMOptional: No
Call by Reference: Yes
IS_ARCHIVE_LINK -
Data type: ICL_ID_ARCHIVE_LINKOptional: No
Call by Reference: Yes
IS_EXT_DOC_ID -
Data type: ICL_ID_EXT_DOCUMENT_IDOptional: No
Call by Reference: Yes
IS_RECORD -
Data type: ICL_ID_RECORDOptional: No
Call by Reference: Yes
IV_REC_DESCRIP -
Data type: BAPIDESCROptional: No
Call by Reference: Yes
IV_MODEL -
Data type: BAPIDOCIDOptional: No
Call by Reference: Yes
IS_ELEMENT -
Data type: ICL_ID_ELEMENTOptional: No
Call by Reference: Yes
IV_EL_DESCRIP -
Data type: BAPIEDESCROptional: No
Call by Reference: Yes
IS_ELEMENT_BUNDLE -
Data type: ICL_ID_ELEMENTOptional: No
Call by Reference: Yes
EXPORTING Parameters details for ICL_ID_RECORD_CREATE
EV_CCEVENT -
Data type: ICL_CCEVENTOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ICL_ID_RECORD_CREATE 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_ev_ccevent | TYPE ICL_CCEVENT, " | |||
| lv_is_document_entry | TYPE OARFCIN, " | |||
| lv_is_bundle | TYPE ICL_ID_BUNDLE, " | |||
| lv_is_claim | TYPE ICL_ID_CLAIM, " | |||
| lv_is_archive_link | TYPE ICL_ID_ARCHIVE_LINK, " | |||
| lv_is_ext_doc_id | TYPE ICL_ID_EXT_DOCUMENT_ID, " | |||
| lv_is_record | TYPE ICL_ID_RECORD, " | |||
| lv_iv_rec_descrip | TYPE BAPIDESCR, " | |||
| lv_iv_model | TYPE BAPIDOCID, " | |||
| lv_is_element | TYPE ICL_ID_ELEMENT, " | |||
| lv_iv_el_descrip | TYPE BAPIEDESCR, " | |||
| lv_is_element_bundle | TYPE ICL_ID_ELEMENT. " |
|   CALL FUNCTION 'ICL_ID_RECORD_CREATE' " |
| EXPORTING | ||
| IS_DOCUMENT_ENTRY | = lv_is_document_entry | |
| IS_BUNDLE | = lv_is_bundle | |
| IS_CLAIM | = lv_is_claim | |
| IS_ARCHIVE_LINK | = lv_is_archive_link | |
| IS_EXT_DOC_ID | = lv_is_ext_doc_id | |
| IS_RECORD | = lv_is_record | |
| IV_REC_DESCRIP | = lv_iv_rec_descrip | |
| IV_MODEL | = lv_iv_model | |
| IS_ELEMENT | = lv_is_element | |
| IV_EL_DESCRIP | = lv_iv_el_descrip | |
| IS_ELEMENT_BUNDLE | = lv_is_element_bundle | |
| IMPORTING | ||
| EV_CCEVENT | = lv_ev_ccevent | |
| . " ICL_ID_RECORD_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM ICL_ID_RECORD_CREATE
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