SAP ITOB_SERIALNO_CREATE_SINGLE Function Module for NOTRANSL: ITOB Puffer RFC: Anlegen einzelne Serialnummer









ITOB_SERIALNO_CREATE_SINGLE is a standard itob serialno create 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: Anlegen einzelne Serialnummer 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 serialno create single FM, simply by entering the name ITOB_SERIALNO_CREATE_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_SERIALNO_CREATE_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_SERIALNO_CREATE_SINGLE'"NOTRANSL: ITOB Puffer RFC: Anlegen einzelne Serialnummer
EXPORTING
* I_HANDLE = "Handle for the ITOB buffer
* I_CONVERT_FULL_EQUI = "Create serial number with complete equipment master
* I_AUTH_TCODE = "TCode for authorization check of master data
* I_FILTER_DATA = 'X' "Filter transferred data using ITOB_FILTER_DATA
* I_WRITE_BUFFER = 'X' "
* I_POST_BUFFER = 'X' "Update data of write buffer
* I_COMMIT_WORK = "Write update data to DB (COMMIT WORK)
I_OBJECT_REC = "Serial number to be created
* I_VALID_DATE = SY-DATUM "

IMPORTING
E_OBJECT_REC = "Create serial number

EXCEPTIONS
NOT_SUCCESSFUL = 1
.



IMPORTING Parameters details for ITOB_SERIALNO_CREATE_SINGLE

I_HANDLE - Handle for the ITOB buffer

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

I_CONVERT_FULL_EQUI - Create serial number with complete equipment master

Data type: IREF-IIND
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-TCODE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FILTER_DATA - Filter transferred data using ITOB_FILTER_DATA

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

I_WRITE_BUFFER -

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

I_POST_BUFFER - Update data of write buffer

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

I_COMMIT_WORK - Write update data to DB (COMMIT WORK)

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

I_OBJECT_REC - Serial number to be created

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

I_VALID_DATE -

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

EXPORTING Parameters details for ITOB_SERIALNO_CREATE_SINGLE

E_OBJECT_REC - Create serial number

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

EXCEPTIONS details

NOT_SUCCESSFUL - Error when creating serial number

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

Copy and paste ABAP code example for ITOB_SERIALNO_CREATE_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_i_handle  TYPE I, "   
lv_e_object_rec  TYPE ITOB, "   
lv_not_successful  TYPE ITOB, "   
lv_i_convert_full_equi  TYPE IREF-IIND, "   
lv_i_auth_tcode  TYPE SY-TCODE, "   
lv_i_filter_data  TYPE IREF-IIND, "   'X'
lv_i_write_buffer  TYPE IREF-IIND, "   'X'
lv_i_post_buffer  TYPE IREF-IIND, "   'X'
lv_i_commit_work  TYPE IREF-IIND, "   
lv_i_object_rec  TYPE ITOB, "   
lv_i_valid_date  TYPE SY-DATUM. "   SY-DATUM

  CALL FUNCTION 'ITOB_SERIALNO_CREATE_SINGLE'  "NOTRANSL: ITOB Puffer RFC: Anlegen einzelne Serialnummer
    EXPORTING
         I_HANDLE = lv_i_handle
         I_CONVERT_FULL_EQUI = lv_i_convert_full_equi
         I_AUTH_TCODE = lv_i_auth_tcode
         I_FILTER_DATA = lv_i_filter_data
         I_WRITE_BUFFER = lv_i_write_buffer
         I_POST_BUFFER = lv_i_post_buffer
         I_COMMIT_WORK = lv_i_commit_work
         I_OBJECT_REC = lv_i_object_rec
         I_VALID_DATE = lv_i_valid_date
    IMPORTING
         E_OBJECT_REC = lv_e_object_rec
    EXCEPTIONS
        NOT_SUCCESSFUL = 1
. " ITOB_SERIALNO_CREATE_SINGLE




ABAP code using 7.40 inline data declarations to call FM ITOB_SERIALNO_CREATE_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_convert_full_equi).
 
"SELECT single TCODE FROM SY INTO @DATA(ld_i_auth_tcode).
 
"SELECT single IIND FROM IREF INTO @DATA(ld_i_filter_data).
DATA(ld_i_filter_data) = 'X'.
 
"SELECT single IIND FROM IREF INTO @DATA(ld_i_write_buffer).
DATA(ld_i_write_buffer) = 'X'.
 
"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_commit_work).
 
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_valid_date).
DATA(ld_i_valid_date) = SY-DATUM.
 


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!