SAP ITOB_CHECK_CATEGORY Function Module for NOTRANSL: L1: Typ des Techn.Objekts (Techn.Platz, Equip., Ref.Platz)









ITOB_CHECK_CATEGORY is a standard itob check category 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: L1: Typ des Techn.Objekts (Techn.Platz, Equip., Ref.Platz) 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 check category FM, simply by entering the name ITOB_CHECK_CATEGORY into the relevant SAP transaction such as SE37 or SE38.

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



Function ITOB_CHECK_CATEGORY 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_CHECK_CATEGORY'"NOTRANSL: L1: Typ des Techn.Objekts (Techn.Platz, Equip., Ref.Platz)
EXPORTING
ITOBTYPE_IMP = "
* READ_TEXT_TABLES = ' ' "
CATEGORY_IMP = "Category
* USE_BUF = 'X' "
* LANGU = SY-LANGU "
* DIALOG_MODE = 'X' "
* DIALOG_CURSOR = ' ' "
* DIALOG_STEPL = 0 "
* INIT_MESSAGE_DATA = 'X' "
* X_MESS_TYPE = 'E' "

IMPORTING
T370F_EXP = "
T370T_EXP = "
T370R_EXP = "
T370F_T_EXP = "
T370U_EXP = "
T370R_T_EXP = "

EXCEPTIONS
EMPTY_KEY = 1 APPLICATION_ERROR = 2
.



IMPORTING Parameters details for ITOB_CHECK_CATEGORY

ITOBTYPE_IMP -

Data type: ITOBTYP
Optional: No
Call by Reference: No ( called with pass by value option)

READ_TEXT_TABLES -

Data type: SY-BINPT
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

CATEGORY_IMP - Category

Data type: C
Optional: No
Call by Reference: No ( called with pass by value option)

USE_BUF -

Data type: SY-BINPT
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

LANGU -

Data type: SY-LANGU
Default: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)

DIALOG_MODE -

Data type: SY-BINPT
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

DIALOG_CURSOR -

Data type: DD03D-FIELDNAME
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

DIALOG_STEPL -

Data type: SY-STEPL
Optional: Yes
Call by Reference: No ( called with pass by value option)

INIT_MESSAGE_DATA -

Data type: SY-BINPT
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

X_MESS_TYPE -

Data type: SY-MSGTY
Default: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ITOB_CHECK_CATEGORY

T370F_EXP -

Data type: T370F
Optional: No
Call by Reference: No ( called with pass by value option)

T370T_EXP -

Data type: T370T
Optional: No
Call by Reference: No ( called with pass by value option)

T370R_EXP -

Data type: T370R
Optional: No
Call by Reference: No ( called with pass by value option)

T370F_T_EXP -

Data type: T370F_T
Optional: No
Call by Reference: No ( called with pass by value option)

T370U_EXP -

Data type: T370U
Optional: No
Call by Reference: No ( called with pass by value option)

T370R_T_EXP -

Data type: T370R_T
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

EMPTY_KEY -

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

APPLICATION_ERROR -

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

Copy and paste ABAP code example for ITOB_CHECK_CATEGORY 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_empty_key  TYPE STRING, "   
lv_t370f_exp  TYPE T370F, "   
lv_itobtype_imp  TYPE ITOBTYP, "   
lv_read_text_tables  TYPE SY-BINPT, "   ' '
lv_t370t_exp  TYPE T370T, "   
lv_category_imp  TYPE C, "   
lv_application_error  TYPE C, "   
lv_use_buf  TYPE SY-BINPT, "   'X'
lv_t370r_exp  TYPE T370R, "   
lv_langu  TYPE SY-LANGU, "   SY-LANGU
lv_t370f_t_exp  TYPE T370F_T, "   
lv_t370u_exp  TYPE T370U, "   
lv_dialog_mode  TYPE SY-BINPT, "   'X'
lv_t370r_t_exp  TYPE T370R_T, "   
lv_dialog_cursor  TYPE DD03D-FIELDNAME, "   SPACE
lv_dialog_stepl  TYPE SY-STEPL, "   0
lv_init_message_data  TYPE SY-BINPT, "   'X'
lv_x_mess_type  TYPE SY-MSGTY. "   'E'

  CALL FUNCTION 'ITOB_CHECK_CATEGORY'  "NOTRANSL: L1: Typ des Techn.Objekts (Techn.Platz, Equip., Ref.Platz)
    EXPORTING
         ITOBTYPE_IMP = lv_itobtype_imp
         READ_TEXT_TABLES = lv_read_text_tables
         CATEGORY_IMP = lv_category_imp
         USE_BUF = lv_use_buf
         LANGU = lv_langu
         DIALOG_MODE = lv_dialog_mode
         DIALOG_CURSOR = lv_dialog_cursor
         DIALOG_STEPL = lv_dialog_stepl
         INIT_MESSAGE_DATA = lv_init_message_data
         X_MESS_TYPE = lv_x_mess_type
    IMPORTING
         T370F_EXP = lv_t370f_exp
         T370T_EXP = lv_t370t_exp
         T370R_EXP = lv_t370r_exp
         T370F_T_EXP = lv_t370f_t_exp
         T370U_EXP = lv_t370u_exp
         T370R_T_EXP = lv_t370r_t_exp
    EXCEPTIONS
        EMPTY_KEY = 1
        APPLICATION_ERROR = 2
. " ITOB_CHECK_CATEGORY




ABAP code using 7.40 inline data declarations to call FM ITOB_CHECK_CATEGORY

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 BINPT FROM SY INTO @DATA(ld_read_text_tables).
DATA(ld_read_text_tables) = ' '.
 
 
 
 
"SELECT single BINPT FROM SY INTO @DATA(ld_use_buf).
DATA(ld_use_buf) = 'X'.
 
 
"SELECT single LANGU FROM SY INTO @DATA(ld_langu).
DATA(ld_langu) = SY-LANGU.
 
 
 
"SELECT single BINPT FROM SY INTO @DATA(ld_dialog_mode).
DATA(ld_dialog_mode) = 'X'.
 
 
"SELECT single FIELDNAME FROM DD03D INTO @DATA(ld_dialog_cursor).
DATA(ld_dialog_cursor) = ' '.
 
"SELECT single STEPL FROM SY INTO @DATA(ld_dialog_stepl).
 
"SELECT single BINPT FROM SY INTO @DATA(ld_init_message_data).
DATA(ld_init_message_data) = 'X'.
 
"SELECT single MSGTY FROM SY INTO @DATA(ld_x_mess_type).
DATA(ld_x_mess_type) = 'E'.
 


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!