SAP ITOB_FUNCLOC_MODIFY_SINGLE Function Module for NOTRANSL: ITOB Puffer RFC: Ändern einzelner Technischer Platz
ITOB_FUNCLOC_MODIFY_SINGLE is a standard itob funcloc modify 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: Ändern 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 modify single FM, simply by entering the name ITOB_FUNCLOC_MODIFY_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_MODIFY_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_MODIFY_SINGLE'"NOTRANSL: ITOB Puffer RFC: Ändern einzelner Technischer Platz.
EXPORTING
I_OBJECT_REC = "Functional location to be changed (BeforeImage)
* I_COMMIT_WORK = "Write update data to DB (COMMIT WORK)
* I_FUNC_LOCATION_LABEL = ' ' "Functional location label
* I_LABELING_SYSTEM = ' ' "Labeling system for functional locations
* I_OBJECT_REC_OLD = "Functional location to be changed (AfterImage)
* I_HANDLE = "Handle for the ITOB buffer
* I_FILTER_DATA = 'X' "Filter transferred data using ITOB_FILTER_DATA
* I_AUTH_TCODE = "TCode for authorization check of master data
* I_POST_BUFFER = 'X' "Update data of write buffer
* I_TRANSFER_MODE = "
IMPORTING
E_OBJECT_REC = "Changed functional location (AfterImage)
EXCEPTIONS
NOT_SUCCESSFUL = 1
IMPORTING Parameters details for ITOB_FUNCLOC_MODIFY_SINGLE
I_OBJECT_REC - Functional location to be changed (BeforeImage)
Data type: ITOBOptional: No
Call by Reference: No ( called with pass by value option)
I_COMMIT_WORK - Write update data to DB (COMMIT WORK)
Data type: IREF-IINDOptional: Yes
Call by Reference: No ( called with pass by value option)
I_FUNC_LOCATION_LABEL - Functional location label
Data type: IFLOS-STRNODefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_LABELING_SYSTEM - Labeling system for functional locations
Data type: IFLOS-ALKEYDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_OBJECT_REC_OLD - Functional location to be changed (AfterImage)
Data type: ITOBOptional: Yes
Call by Reference: No ( called with pass by value option)
I_HANDLE - Handle for the ITOB buffer
Data type: IOptional: Yes
Call by Reference: No ( called with pass by value option)
I_FILTER_DATA - Filter transferred data using ITOB_FILTER_DATA
Data type: IREF-IINDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_AUTH_TCODE - TCode for authorization check of master data
Data type: SY-TCODEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_POST_BUFFER - Update data of write buffer
Data type: IREF-IINDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_TRANSFER_MODE -
Data type: IREF-IINDOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ITOB_FUNCLOC_MODIFY_SINGLE
E_OBJECT_REC - Changed functional location (AfterImage)
Data type: ITOBOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_SUCCESSFUL - Error when changing 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_MODIFY_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_i_object_rec | TYPE ITOB, " | |||
| lv_not_successful | TYPE ITOB, " | |||
| lv_i_commit_work | TYPE IREF-IIND, " | |||
| lv_i_func_location_label | TYPE IFLOS-STRNO, " SPACE | |||
| lv_i_labeling_system | TYPE IFLOS-ALKEY, " SPACE | |||
| lv_i_object_rec_old | TYPE ITOB, " | |||
| lv_i_handle | TYPE I, " | |||
| lv_i_filter_data | TYPE IREF-IIND, " 'X' | |||
| lv_i_auth_tcode | TYPE SY-TCODE, " | |||
| lv_i_post_buffer | TYPE IREF-IIND, " 'X' | |||
| lv_i_transfer_mode | TYPE IREF-IIND. " |
|   CALL FUNCTION 'ITOB_FUNCLOC_MODIFY_SINGLE' "NOTRANSL: ITOB Puffer RFC: Ändern einzelner Technischer Platz |
| EXPORTING | ||
| I_OBJECT_REC | = lv_i_object_rec | |
| I_COMMIT_WORK | = lv_i_commit_work | |
| I_FUNC_LOCATION_LABEL | = lv_i_func_location_label | |
| I_LABELING_SYSTEM | = lv_i_labeling_system | |
| I_OBJECT_REC_OLD | = lv_i_object_rec_old | |
| I_HANDLE | = lv_i_handle | |
| I_FILTER_DATA | = lv_i_filter_data | |
| I_AUTH_TCODE | = lv_i_auth_tcode | |
| I_POST_BUFFER | = lv_i_post_buffer | |
| I_TRANSFER_MODE | = lv_i_transfer_mode | |
| IMPORTING | ||
| E_OBJECT_REC | = lv_e_object_rec | |
| EXCEPTIONS | ||
| NOT_SUCCESSFUL = 1 | ||
| . " ITOB_FUNCLOC_MODIFY_SINGLE | ||
ABAP code using 7.40 inline data declarations to call FM ITOB_FUNCLOC_MODIFY_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 IIND FROM IREF INTO @DATA(ld_i_commit_work). | ||||
| "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 IIND FROM IREF INTO @DATA(ld_i_filter_data). | ||||
| DATA(ld_i_filter_data) | = 'X'. | |||
| "SELECT single TCODE FROM SY INTO @DATA(ld_i_auth_tcode). | ||||
| "SELECT single IIND FROM IREF INTO @DATA(ld_i_post_buffer). | ||||
| DATA(ld_i_post_buffer) | = 'X'. | |||
| "SELECT single IIND FROM IREF INTO @DATA(ld_i_transfer_mode). | ||||
Search for further information about these or an SAP related objects