SAP ITOB_FLAG_FLEET_SI Function Module for NOTRANSL: Update SI-Konvertierungsflag









ITOB_FLAG_FLEET_SI is a standard itob flag fleet si 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: Update SI-Konvertierungsflag 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 flag fleet si FM, simply by entering the name ITOB_FLAG_FLEET_SI into the relevant SAP transaction such as SE37 or SE38.

Function Group: ITO4
Program Name: SAPLITO4
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ITOB_FLAG_FLEET_SI 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_FLAG_FLEET_SI'"NOTRANSL: Update SI-Konvertierungsflag
EXPORTING
* I_TO_SI = ITOB_BOOL-FALSE "DE-EN-LANG-SWITCH-NO-TRANSLATION

IMPORTING
E_UPDATE = "DE-EN-LANG-SWITCH-NO-TRANSLATION

CHANGING
C_FLAG = "PM: Vehicle Data in SI Unit (e.g. Dimensions)
.



IMPORTING Parameters details for ITOB_FLAG_FLEET_SI

I_TO_SI - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: ITOB_TYPES-BOOL
Default: ITOB_BOOL-FALSE
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ITOB_FLAG_FLEET_SI

E_UPDATE - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: ITOB_TYPES-BOOL
Optional: No
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for ITOB_FLAG_FLEET_SI

C_FLAG - PM: Vehicle Data in SI Unit (e.g. Dimensions)

Data type: FLEET-IS_SI_UNIT
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ITOB_FLAG_FLEET_SI 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_flag  TYPE FLEET-IS_SI_UNIT, "   
lv_i_to_si  TYPE ITOB_TYPES-BOOL, "   ITOB_BOOL-FALSE
lv_e_update  TYPE ITOB_TYPES-BOOL. "   

  CALL FUNCTION 'ITOB_FLAG_FLEET_SI'  "NOTRANSL: Update SI-Konvertierungsflag
    EXPORTING
         I_TO_SI = lv_i_to_si
    IMPORTING
         E_UPDATE = lv_e_update
    CHANGING
         C_FLAG = lv_c_flag
. " ITOB_FLAG_FLEET_SI




ABAP code using 7.40 inline data declarations to call FM ITOB_FLAG_FLEET_SI

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 IS_SI_UNIT FROM FLEET INTO @DATA(ld_c_flag).
 
"SELECT single BOOL FROM ITOB_TYPES INTO @DATA(ld_i_to_si).
DATA(ld_i_to_si) = ITOB_BOOL-FALSE.
 
"SELECT single BOOL FROM ITOB_TYPES INTO @DATA(ld_e_update).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!