SAP CALL_EXIT_SAPLIPW1_001 Function Module for NOTRANSL: Aufruf des User-Exits zur automat. Serialnummernvergabe









CALL_EXIT_SAPLIPW1_001 is a standard call exit saplipw1 001 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: Aufruf des User-Exits zur automat. Serialnummernvergabe 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 call exit saplipw1 001 FM, simply by entering the name CALL_EXIT_SAPLIPW1_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function CALL_EXIT_SAPLIPW1_001 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 'CALL_EXIT_SAPLIPW1_001'"NOTRANSL: Aufruf des User-Exits zur automat. Serialnummernvergabe
EXPORTING
OPERATION = "
* PLANT = "Production Plant
NUMBER_SERIALNO = "
MATERIAL_NO = "Material Number
* STD_MATERIAL_NO = "
* CONFIGURATION_KEY = "Configuration Key
* SD_DOCUMENT_NO = "
* SD_DOCUMENT_ITEM = "
* PP_ORDER_NO = "
* PP_ORDER_ITEM = "PP order item

IMPORTING
NUM_SERNR = "

TABLES
TAB_SERNR = "
.



IMPORTING Parameters details for CALL_EXIT_SAPLIPW1_001

OPERATION -

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

PLANT - Production Plant

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

NUMBER_SERIALNO -

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

MATERIAL_NO - Material Number

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

STD_MATERIAL_NO -

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

CONFIGURATION_KEY - Configuration Key

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

SD_DOCUMENT_NO -

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

SD_DOCUMENT_ITEM -

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

PP_ORDER_NO -

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

PP_ORDER_ITEM - PP order item

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

EXPORTING Parameters details for CALL_EXIT_SAPLIPW1_001

NUM_SERNR -

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

TABLES Parameters details for CALL_EXIT_SAPLIPW1_001

TAB_SERNR -

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

Copy and paste ABAP code example for CALL_EXIT_SAPLIPW1_001 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_num_sernr  TYPE SY-TABIX, "   
lv_operation  TYPE T377X-BELEG, "   
lt_tab_sernr  TYPE STANDARD TABLE OF RISERNR, "   
lv_plant  TYPE MSEG-WERKS, "   
lv_number_serialno  TYPE SY-TABIX, "   
lv_material_no  TYPE RIPW0-MATNR, "   
lv_std_material_no  TYPE EQUI-KMATN, "   
lv_configuration_key  TYPE EQUI-CUOBJ, "   
lv_sd_document_no  TYPE LIPS-VBELN, "   
lv_sd_document_item  TYPE LIPS-POSNR, "   
lv_pp_order_no  TYPE AUFK-AUFNR, "   
lv_pp_order_item  TYPE AFPO-POSNR. "   

  CALL FUNCTION 'CALL_EXIT_SAPLIPW1_001'  "NOTRANSL: Aufruf des User-Exits zur automat. Serialnummernvergabe
    EXPORTING
         OPERATION = lv_operation
         PLANT = lv_plant
         NUMBER_SERIALNO = lv_number_serialno
         MATERIAL_NO = lv_material_no
         STD_MATERIAL_NO = lv_std_material_no
         CONFIGURATION_KEY = lv_configuration_key
         SD_DOCUMENT_NO = lv_sd_document_no
         SD_DOCUMENT_ITEM = lv_sd_document_item
         PP_ORDER_NO = lv_pp_order_no
         PP_ORDER_ITEM = lv_pp_order_item
    IMPORTING
         NUM_SERNR = lv_num_sernr
    TABLES
         TAB_SERNR = lt_tab_sernr
. " CALL_EXIT_SAPLIPW1_001




ABAP code using 7.40 inline data declarations to call FM CALL_EXIT_SAPLIPW1_001

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 TABIX FROM SY INTO @DATA(ld_num_sernr).
 
"SELECT single BELEG FROM T377X INTO @DATA(ld_operation).
 
 
"SELECT single WERKS FROM MSEG INTO @DATA(ld_plant).
 
"SELECT single TABIX FROM SY INTO @DATA(ld_number_serialno).
 
"SELECT single MATNR FROM RIPW0 INTO @DATA(ld_material_no).
 
"SELECT single KMATN FROM EQUI INTO @DATA(ld_std_material_no).
 
"SELECT single CUOBJ FROM EQUI INTO @DATA(ld_configuration_key).
 
"SELECT single VBELN FROM LIPS INTO @DATA(ld_sd_document_no).
 
"SELECT single POSNR FROM LIPS INTO @DATA(ld_sd_document_item).
 
"SELECT single AUFNR FROM AUFK INTO @DATA(ld_pp_order_no).
 
"SELECT single POSNR FROM AFPO INTO @DATA(ld_pp_order_item).
 


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!