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

Function /IBX/RFC_CSV_WRITE_IMPORT 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 '/IBX/RFC_CSV_WRITE_IMPORT'".
EXPORTING
IM_VAL_DATE = "
IM_FILE_CAT = "
* IM_DELETE_BEFORE_IMPORT = "
IM_TAB_DATA = "
IMPORTING
EX_TAB_PARSER_MSG = "
EX_TAB_PARSER_BMSG = "
EXCEPTIONS
INVALID_USER = 1 NOT_AUTHORIZED = 2 DATA_INSERT_ERROR = 3 PARAMETER_INCOMPLETE = 4
IMPORTING Parameters details for /IBX/RFC_CSV_WRITE_IMPORT
IM_VAL_DATE -
Data type: /IBX/E_VAL_DATEOptional: No
Call by Reference: No ( called with pass by value option)
IM_FILE_CAT -
Data type: /IBS/E_RFILE_CATOptional: No
Call by Reference: No ( called with pass by value option)
IM_DELETE_BEFORE_IMPORT -
Data type: /IBX/E_DELETE_BEFORE_IMPORTOptional: Yes
Call by Reference: No ( called with pass by value option)
IM_TAB_DATA -
Data type: STRING_TABLEOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for /IBX/RFC_CSV_WRITE_IMPORT
EX_TAB_PARSER_MSG -
Data type: /IBS/TYRB_MESGOptional: No
Call by Reference: No ( called with pass by value option)
EX_TAB_PARSER_BMSG -
Data type: BAPIRETTABOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INVALID_USER -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_AUTHORIZED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DATA_INSERT_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
PARAMETER_INCOMPLETE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for /IBX/RFC_CSV_WRITE_IMPORT 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_im_val_date | TYPE /IBX/E_VAL_DATE, " | |||
| lv_invalid_user | TYPE /IBX/E_VAL_DATE, " | |||
| lv_ex_tab_parser_msg | TYPE /IBS/TYRB_MESG, " | |||
| lv_im_file_cat | TYPE /IBS/E_RFILE_CAT, " | |||
| lv_not_authorized | TYPE /IBS/E_RFILE_CAT, " | |||
| lv_ex_tab_parser_bmsg | TYPE BAPIRETTAB, " | |||
| lv_data_insert_error | TYPE BAPIRETTAB, " | |||
| lv_im_delete_before_import | TYPE /IBX/E_DELETE_BEFORE_IMPORT, " | |||
| lv_im_tab_data | TYPE STRING_TABLE, " | |||
| lv_parameter_incomplete | TYPE STRING_TABLE. " |
|   CALL FUNCTION '/IBX/RFC_CSV_WRITE_IMPORT' " |
| EXPORTING | ||
| IM_VAL_DATE | = lv_im_val_date | |
| IM_FILE_CAT | = lv_im_file_cat | |
| IM_DELETE_BEFORE_IMPORT | = lv_im_delete_before_import | |
| IM_TAB_DATA | = lv_im_tab_data | |
| IMPORTING | ||
| EX_TAB_PARSER_MSG | = lv_ex_tab_parser_msg | |
| EX_TAB_PARSER_BMSG | = lv_ex_tab_parser_bmsg | |
| EXCEPTIONS | ||
| INVALID_USER = 1 | ||
| NOT_AUTHORIZED = 2 | ||
| DATA_INSERT_ERROR = 3 | ||
| PARAMETER_INCOMPLETE = 4 | ||
| . " /IBX/RFC_CSV_WRITE_IMPORT | ||
ABAP code using 7.40 inline data declarations to call FM /IBX/RFC_CSV_WRITE_IMPORT
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