SAP C13IF_IMPORT_WRITE_DATA Function Module for
C13IF_IMPORT_WRITE_DATA is a standard c13if import write data 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 c13if import write data FM, simply by entering the name C13IF_IMPORT_WRITE_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: C13IF
Program Name: SAPLC13IF
Main Program: SAPLC13IF
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function C13IF_IMPORT_WRITE_DATA 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 'C13IF_IMPORT_WRITE_DATA'".
EXPORTING
I5UUID = "
TABLES
* RETURN = "
* PROP_FTEXT_LONGTEXT = "
* I_ENVIRONMENT_TAB = "
* SUB_HEADER = "
* IDENT_HEADER = "
* IDENT_LONGTEXT = "
* PROP_HEADER = "
* PROP_VAL = "
* PROP_DATA = "
* PROP_COMPONENT = "
* PROP_FTEXT = "
IMPORTING Parameters details for C13IF_IMPORT_WRITE_DATA
I5UUID -
Data type: ESEIDENTOptional: No
Call by Reference: Yes
TABLES Parameters details for C13IF_IMPORT_WRITE_DATA
RETURN -
Data type: BAPIRET2Optional: Yes
Call by Reference: Yes
PROP_FTEXT_LONGTEXT -
Data type: BAPI1077FLOptional: Yes
Call by Reference: Yes
I_ENVIRONMENT_TAB -
Data type: TCGUEENOptional: Yes
Call by Reference: Yes
SUB_HEADER -
Data type: BAPI1077RHOptional: Yes
Call by Reference: Yes
IDENT_HEADER -
Data type: BAPI1077RIOptional: Yes
Call by Reference: Yes
IDENT_LONGTEXT -
Data type: BAPI1077ILOptional: Yes
Call by Reference: Yes
PROP_HEADER -
Data type: BAPI1077VHOptional: Yes
Call by Reference: Yes
PROP_VAL -
Data type: BAPI1077VAOptional: Yes
Call by Reference: Yes
PROP_DATA -
Data type: BAPI1077PROptional: Yes
Call by Reference: Yes
PROP_COMPONENT -
Data type: BAPI1077VPOptional: Yes
Call by Reference: Yes
PROP_FTEXT -
Data type: BAPI1077DFOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for C13IF_IMPORT_WRITE_DATA 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_i5uuid | TYPE ESEIDENT, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lt_prop_ftext_longtext | TYPE STANDARD TABLE OF BAPI1077FL, " | |||
| lt_i_environment_tab | TYPE STANDARD TABLE OF TCGUEEN, " | |||
| lt_sub_header | TYPE STANDARD TABLE OF BAPI1077RH, " | |||
| lt_ident_header | TYPE STANDARD TABLE OF BAPI1077RI, " | |||
| lt_ident_longtext | TYPE STANDARD TABLE OF BAPI1077IL, " | |||
| lt_prop_header | TYPE STANDARD TABLE OF BAPI1077VH, " | |||
| lt_prop_val | TYPE STANDARD TABLE OF BAPI1077VA, " | |||
| lt_prop_data | TYPE STANDARD TABLE OF BAPI1077PR, " | |||
| lt_prop_component | TYPE STANDARD TABLE OF BAPI1077VP, " | |||
| lt_prop_ftext | TYPE STANDARD TABLE OF BAPI1077DF. " |
|   CALL FUNCTION 'C13IF_IMPORT_WRITE_DATA' " |
| EXPORTING | ||
| I5UUID | = lv_i5uuid | |
| TABLES | ||
| RETURN | = lt_return | |
| PROP_FTEXT_LONGTEXT | = lt_prop_ftext_longtext | |
| I_ENVIRONMENT_TAB | = lt_i_environment_tab | |
| SUB_HEADER | = lt_sub_header | |
| IDENT_HEADER | = lt_ident_header | |
| IDENT_LONGTEXT | = lt_ident_longtext | |
| PROP_HEADER | = lt_prop_header | |
| PROP_VAL | = lt_prop_val | |
| PROP_DATA | = lt_prop_data | |
| PROP_COMPONENT | = lt_prop_component | |
| PROP_FTEXT | = lt_prop_ftext | |
| . " C13IF_IMPORT_WRITE_DATA | ||
ABAP code using 7.40 inline data declarations to call FM C13IF_IMPORT_WRITE_DATA
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