SAP ICL_TRANSPORT_CREATE Function Module for Creation of Customizying Transport Entries in System with Cust. Transport
ICL_TRANSPORT_CREATE is a standard icl transport create SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Creation of Customizying Transport Entries in System with Cust. Transport 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 icl transport create FM, simply by entering the name ICL_TRANSPORT_CREATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: ICL_DIAG_EXT
Program Name: SAPLICL_DIAG_EXT
Main Program: SAPLICL_DIAG_EXT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ICL_TRANSPORT_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_TRANSPORT_CREATE'"Creation of Customizying Transport Entries in System with Cust. Transport.
EXPORTING
I_TABNAME = "Table Name
I_KEY = "Char20
CHANGING
C_SYSTYPE = "SAP R/3 System, Name of SAP R/3 System
C_SYSCLNTEDIT = "Changes and Transports for Client-Specific Objects
C_TASK = "Request/Task
C_XTASK = "
IMPORTING Parameters details for ICL_TRANSPORT_CREATE
I_TABNAME - Table Name
Data type: DD03L-TABNAMEOptional: No
Call by Reference: Yes
I_KEY - Char20
Data type: CHAR20Optional: No
Call by Reference: Yes
CHANGING Parameters details for ICL_TRANSPORT_CREATE
C_SYSTYPE - SAP R/3 System, Name of SAP R/3 System
Data type: SY-SYSIDOptional: No
Call by Reference: Yes
C_SYSCLNTEDIT - Changes and Transports for Client-Specific Objects
Data type: T000-CCCORACTIVOptional: No
Call by Reference: Yes
C_TASK - Request/Task
Data type: E071-TRKORROptional: No
Call by Reference: Yes
C_XTASK -
Data type: COptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ICL_TRANSPORT_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_c_systype | TYPE SY-SYSID, " | |||
| lv_i_tabname | TYPE DD03L-TABNAME, " | |||
| lv_i_key | TYPE CHAR20, " | |||
| lv_c_sysclntedit | TYPE T000-CCCORACTIV, " | |||
| lv_c_task | TYPE E071-TRKORR, " | |||
| lv_c_xtask | TYPE C. " |
|   CALL FUNCTION 'ICL_TRANSPORT_CREATE' "Creation of Customizying Transport Entries in System with Cust. Transport |
| EXPORTING | ||
| I_TABNAME | = lv_i_tabname | |
| I_KEY | = lv_i_key | |
| CHANGING | ||
| C_SYSTYPE | = lv_c_systype | |
| C_SYSCLNTEDIT | = lv_c_sysclntedit | |
| C_TASK | = lv_c_task | |
| C_XTASK | = lv_c_xtask | |
| . " ICL_TRANSPORT_CREATE | ||
ABAP code using 7.40 inline data declarations to call FM ICL_TRANSPORT_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.| "SELECT single SYSID FROM SY INTO @DATA(ld_c_systype). | ||||
| "SELECT single TABNAME FROM DD03L INTO @DATA(ld_i_tabname). | ||||
| "SELECT single CCCORACTIV FROM T000 INTO @DATA(ld_c_sysclntedit). | ||||
| "SELECT single TRKORR FROM E071 INTO @DATA(ld_c_task). | ||||
Search for further information about these or an SAP related objects