SAP ITOB_FUNCLOC_READ_SINGLE Function Module for NOTRANSL: ITOB Puffer RFC: Lesen einzelner Technischer Platz









ITOB_FUNCLOC_READ_SINGLE is a standard itob funcloc read single 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: ITOB Puffer RFC: Lesen einzelner Technischer 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 funcloc read single FM, simply by entering the name ITOB_FUNCLOC_READ_SINGLE into the relevant SAP transaction such as SE37 or SE38.

Function Group: ITO3
Program Name: SAPLITO3
Main Program: SAPLITO3
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function ITOB_FUNCLOC_READ_SINGLE 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_FUNCLOC_READ_SINGLE'"NOTRANSL: ITOB Puffer RFC: Lesen einzelner Technischer Platz
EXPORTING
* I_FUNC_LOCATION = "Key Field for functional location
* I_FUNC_LOCATION_LABEL = ' ' "Functional location label
* I_LABELING_SYSTEM = ' ' "Labeling System for FUNC_LOCATION_LABEL
* I_HANDLE = "Handle for the ITOB buffer
* I_AUTH_TCODE = "
* I_LOCK = "Lock for the functional locations to be read

IMPORTING
E_OBJECT_REC = "Read functional location

TABLES
* T_ALTERNATIVE_LABELS = "Alternative labels

EXCEPTIONS
NOT_SUCCESSFUL = 1
.



IMPORTING Parameters details for ITOB_FUNCLOC_READ_SINGLE

I_FUNC_LOCATION - Key Field for functional location

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

I_FUNC_LOCATION_LABEL - Functional location label

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

I_LABELING_SYSTEM - Labeling System for FUNC_LOCATION_LABEL

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

I_HANDLE - Handle for the ITOB buffer

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

I_AUTH_TCODE -

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

I_LOCK - Lock for the functional locations to be read

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

EXPORTING Parameters details for ITOB_FUNCLOC_READ_SINGLE

E_OBJECT_REC - Read functional location

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

TABLES Parameters details for ITOB_FUNCLOC_READ_SINGLE

T_ALTERNATIVE_LABELS - Alternative labels

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

EXCEPTIONS details

NOT_SUCCESSFUL - Error when reading functional locations

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

Copy and paste ABAP code example for ITOB_FUNCLOC_READ_SINGLE 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_object_rec  TYPE ITOB, "   
lv_not_successful  TYPE ITOB, "   
lv_i_func_location  TYPE IFLO-TPLNR, "   
lt_t_alternative_labels  TYPE STANDARD TABLE OF IFLOS, "   
lv_i_func_location_label  TYPE IFLOS-STRNO, "   SPACE
lv_i_labeling_system  TYPE IFLOS-ALKEY, "   SPACE
lv_i_handle  TYPE I, "   
lv_i_auth_tcode  TYPE SY-TCODE, "   
lv_i_lock  TYPE IREF-IIND. "   

  CALL FUNCTION 'ITOB_FUNCLOC_READ_SINGLE'  "NOTRANSL: ITOB Puffer RFC: Lesen einzelner Technischer Platz
    EXPORTING
         I_FUNC_LOCATION = lv_i_func_location
         I_FUNC_LOCATION_LABEL = lv_i_func_location_label
         I_LABELING_SYSTEM = lv_i_labeling_system
         I_HANDLE = lv_i_handle
         I_AUTH_TCODE = lv_i_auth_tcode
         I_LOCK = lv_i_lock
    IMPORTING
         E_OBJECT_REC = lv_e_object_rec
    TABLES
         T_ALTERNATIVE_LABELS = lt_t_alternative_labels
    EXCEPTIONS
        NOT_SUCCESSFUL = 1
. " ITOB_FUNCLOC_READ_SINGLE




ABAP code using 7.40 inline data declarations to call FM ITOB_FUNCLOC_READ_SINGLE

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 TPLNR FROM IFLO INTO @DATA(ld_i_func_location).
 
 
"SELECT single STRNO FROM IFLOS INTO @DATA(ld_i_func_location_label).
DATA(ld_i_func_location_label) = ' '.
 
"SELECT single ALKEY FROM IFLOS INTO @DATA(ld_i_labeling_system).
DATA(ld_i_labeling_system) = ' '.
 
 
"SELECT single TCODE FROM SY INTO @DATA(ld_i_auth_tcode).
 
"SELECT single IIND FROM IREF INTO @DATA(ld_i_lock).
 


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!