SAP ITOB_DATA_EXPORT Function Module for NOTRANSL: Data export from ITO0 (e.g. into a calling module pool)
ITOB_DATA_EXPORT is a standard itob data export SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Data export from ITO0 (e.g. into a calling module pool) 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 itob data export FM, simply by entering the name ITOB_DATA_EXPORT into the relevant SAP transaction such as SE37 or SE38.
Function Group: ITO0
Program Name: SAPLITO0
Main Program: SAPLITO0
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ITOB_DATA_EXPORT 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 'ITOB_DATA_EXPORT'"NOTRANSL: Data export from ITO0 (e.g. into a calling module pool).
IMPORTING
E_REC_T370FLT = "
E_REC_ILOA = "
E_REC_FLEET = "
E_REC_IFLOT = "
E_REC_IFLOTX = "
E_REC_IRLOT = "
E_REC_IRLOTX = "
E_REC_ITOB = "
E_REC_ITOBATTR = "
IND_UPD_ST = "
IND_UPD_KL = "
E_REC_RISA0 = "
IND_UPD_PA = "
IND_UPD_LT = "
IND_UPD_IV = "
IND_UPD_WT = "
IND_UPD_DOC = "Flag: Yes/No (X/ )
IND_INIT_INHER = "
E_REC_RM63E = "
E_REC_RILO0 = "
E_REC_RILA0 = "
E_REC_EQUI = "
E_REC_EQBS = "
E_REC_EQKT = "
E_REC_EQUZ = "
TABLES
T_TABSTRIP_TAB = "
* T_MASE_TAB = "
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLITO0_001 Customer Include ITO0: Data Import (Initiator => Include)
EXIT_SAPLITO0_002 Customer Include ITO0: Data Export (Include => Caller)
EXIT_SAPLITO0_003 Customer Include Additional Fleet Data: Data Import (Caller => Include)
EXIT_SAPLITO0_004 Customer Include Additional Fleet Data: Data Export (Include => CAller)
EXIT_SAPLITO0_005 Customer Exit Fleet Identification Data: Checks
EXPORTING Parameters details for ITOB_DATA_EXPORT
E_REC_T370FLT -
Data type: T370FLTOptional: No
Call by Reference: Yes
E_REC_ILOA -
Data type: ILOAOptional: No
Call by Reference: Yes
E_REC_FLEET -
Data type: FLEETOptional: No
Call by Reference: Yes
E_REC_IFLOT -
Data type: IFLOTOptional: No
Call by Reference: Yes
E_REC_IFLOTX -
Data type: IFLOTXOptional: No
Call by Reference: Yes
E_REC_IRLOT -
Data type: IRLOTOptional: No
Call by Reference: Yes
E_REC_IRLOTX -
Data type: IRLOTXOptional: No
Call by Reference: Yes
E_REC_ITOB -
Data type: ITOBOptional: No
Call by Reference: Yes
E_REC_ITOBATTR -
Data type: ITOBATTROptional: No
Call by Reference: Yes
IND_UPD_ST -
Data type: IREF-IINDOptional: No
Call by Reference: No ( called with pass by value option)
IND_UPD_KL -
Data type: IREF-IINDOptional: No
Call by Reference: No ( called with pass by value option)
E_REC_RISA0 -
Data type: RISA0Optional: No
Call by Reference: Yes
IND_UPD_PA -
Data type: IREF-IINDOptional: No
Call by Reference: No ( called with pass by value option)
IND_UPD_LT -
Data type: IREF-IINDOptional: No
Call by Reference: No ( called with pass by value option)
IND_UPD_IV -
Data type: IREF-IINDOptional: No
Call by Reference: No ( called with pass by value option)
IND_UPD_WT -
Data type: IREF-IINDOptional: No
Call by Reference: No ( called with pass by value option)
IND_UPD_DOC - Flag: Yes/No (X/ )
Data type: IREF-IINDOptional: No
Call by Reference: No ( called with pass by value option)
IND_INIT_INHER -
Data type: IREF-IINDOptional: No
Call by Reference: No ( called with pass by value option)
E_REC_RM63E -
Data type: RM63EOptional: No
Call by Reference: Yes
E_REC_RILO0 -
Data type: RILO0Optional: No
Call by Reference: Yes
E_REC_RILA0 -
Data type: RILA0Optional: No
Call by Reference: Yes
E_REC_EQUI -
Data type: EQUIOptional: No
Call by Reference: Yes
E_REC_EQBS -
Data type: EQBSOptional: No
Call by Reference: Yes
E_REC_EQKT -
Data type: EQKTOptional: No
Call by Reference: Yes
E_REC_EQUZ -
Data type: EQUZOptional: No
Call by Reference: Yes
TABLES Parameters details for ITOB_DATA_EXPORT
T_TABSTRIP_TAB -
Data type: ITO0T_TABSTRIP_TABOptional: No
Call by Reference: No ( called with pass by value option)
T_MASE_TAB -
Data type: ITO0T_MASE_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ITOB_DATA_EXPORT 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_e_rec_t370flt | TYPE T370FLT, " | |||
| lt_t_tabstrip_tab | TYPE STANDARD TABLE OF ITO0T_TABSTRIP_TAB, " | |||
| lv_e_rec_iloa | TYPE ILOA, " | |||
| lv_e_rec_fleet | TYPE FLEET, " | |||
| lv_e_rec_iflot | TYPE IFLOT, " | |||
| lv_e_rec_iflotx | TYPE IFLOTX, " | |||
| lv_e_rec_irlot | TYPE IRLOT, " | |||
| lv_e_rec_irlotx | TYPE IRLOTX, " | |||
| lv_e_rec_itob | TYPE ITOB, " | |||
| lv_e_rec_itobattr | TYPE ITOBATTR, " | |||
| lv_ind_upd_st | TYPE IREF-IIND, " | |||
| lv_ind_upd_kl | TYPE IREF-IIND, " | |||
| lt_t_mase_tab | TYPE STANDARD TABLE OF ITO0T_MASE_TAB, " | |||
| lv_e_rec_risa0 | TYPE RISA0, " | |||
| lv_ind_upd_pa | TYPE IREF-IIND, " | |||
| lv_ind_upd_lt | TYPE IREF-IIND, " | |||
| lv_ind_upd_iv | TYPE IREF-IIND, " | |||
| lv_ind_upd_wt | TYPE IREF-IIND, " | |||
| lv_ind_upd_doc | TYPE IREF-IIND, " | |||
| lv_ind_init_inher | TYPE IREF-IIND, " | |||
| lv_e_rec_rm63e | TYPE RM63E, " | |||
| lv_e_rec_rilo0 | TYPE RILO0, " | |||
| lv_e_rec_rila0 | TYPE RILA0, " | |||
| lv_e_rec_equi | TYPE EQUI, " | |||
| lv_e_rec_eqbs | TYPE EQBS, " | |||
| lv_e_rec_eqkt | TYPE EQKT, " | |||
| lv_e_rec_equz | TYPE EQUZ. " |
|   CALL FUNCTION 'ITOB_DATA_EXPORT' "NOTRANSL: Data export from ITO0 (e.g. into a calling module pool) |
| IMPORTING | ||
| E_REC_T370FLT | = lv_e_rec_t370flt | |
| E_REC_ILOA | = lv_e_rec_iloa | |
| E_REC_FLEET | = lv_e_rec_fleet | |
| E_REC_IFLOT | = lv_e_rec_iflot | |
| E_REC_IFLOTX | = lv_e_rec_iflotx | |
| E_REC_IRLOT | = lv_e_rec_irlot | |
| E_REC_IRLOTX | = lv_e_rec_irlotx | |
| E_REC_ITOB | = lv_e_rec_itob | |
| E_REC_ITOBATTR | = lv_e_rec_itobattr | |
| IND_UPD_ST | = lv_ind_upd_st | |
| IND_UPD_KL | = lv_ind_upd_kl | |
| E_REC_RISA0 | = lv_e_rec_risa0 | |
| IND_UPD_PA | = lv_ind_upd_pa | |
| IND_UPD_LT | = lv_ind_upd_lt | |
| IND_UPD_IV | = lv_ind_upd_iv | |
| IND_UPD_WT | = lv_ind_upd_wt | |
| IND_UPD_DOC | = lv_ind_upd_doc | |
| IND_INIT_INHER | = lv_ind_init_inher | |
| E_REC_RM63E | = lv_e_rec_rm63e | |
| E_REC_RILO0 | = lv_e_rec_rilo0 | |
| E_REC_RILA0 | = lv_e_rec_rila0 | |
| E_REC_EQUI | = lv_e_rec_equi | |
| E_REC_EQBS | = lv_e_rec_eqbs | |
| E_REC_EQKT | = lv_e_rec_eqkt | |
| E_REC_EQUZ | = lv_e_rec_equz | |
| TABLES | ||
| T_TABSTRIP_TAB | = lt_t_tabstrip_tab | |
| T_MASE_TAB | = lt_t_mase_tab | |
| . " ITOB_DATA_EXPORT | ||
ABAP code using 7.40 inline data declarations to call FM ITOB_DATA_EXPORT
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 IIND FROM IREF INTO @DATA(ld_ind_upd_st). | ||||
| "SELECT single IIND FROM IREF INTO @DATA(ld_ind_upd_kl). | ||||
| "SELECT single IIND FROM IREF INTO @DATA(ld_ind_upd_pa). | ||||
| "SELECT single IIND FROM IREF INTO @DATA(ld_ind_upd_lt). | ||||
| "SELECT single IIND FROM IREF INTO @DATA(ld_ind_upd_iv). | ||||
| "SELECT single IIND FROM IREF INTO @DATA(ld_ind_upd_wt). | ||||
| "SELECT single IIND FROM IREF INTO @DATA(ld_ind_upd_doc). | ||||
| "SELECT single IIND FROM IREF INTO @DATA(ld_ind_init_inher). | ||||
Search for further information about these or an SAP related objects