SAP EXIT_SAPLIPW0_001 Function Module for Object Permissible for Contract (Copying of Order/Maintenance Order)









EXIT_SAPLIPW0_001 is a standard exit saplipw0 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 Object Permissible for Contract (Copying of Order/Maintenance Order) 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 exit saplipw0 001 FM, simply by entering the name EXIT_SAPLIPW0_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLIPW0_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 'EXIT_SAPLIPW0_001'"Object Permissible for Contract (Copying of Order/Maintenance Order)
EXPORTING
* TARGET_OBJLIST = "Object List (Target)
* OBJLIST_ENTRY = "Object List Entry
* EQUIPMENT = "Equipment
* FUNC_LOCATION = "Functional Location
* MATERIAL = "Material
* ASSEMBLY = "Assembly

EXCEPTIONS
VETO = 1
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
CHECK_STRING_ALPHA_SUCCESSOR NOTRANSL: Prüft, ob ein String direkter alphabetischer Nachfolger eines an
CHECK_STRING_DIGIT_SUCCESSOR NOTRANSL: Prüft, ob ein String direkter numerischer Nachfolger eines ander
CHECK_STRING_SUCCESSOR NOTRANSL: Prüft, ob ein String ein direkter Nachfolger eines anderen Strin
GET_DIFFERENCE_OFFSET NOTRANSL: Vergleicht zwei Strings und liefert den Offset der ersten Differ
GET_LENGTH_OF_SUBSTRING NOTRANSL: Ermittelt Länge alph., num. oder Sonderzeichensubstring ab Strin
MASTER_DATA DE-EN-LANG-SWITCH-NO-TRANSLATION
OBJECTLIST_NUMBER NOTRANSL: Nummernvergabe Objektliste
OBJECTLIST_NUMBER_TEMP Temporäre Nummernvergabe Objektliste
OBJECTLIST_NUMBER_TEMP_INIT Temporäre Objektlistennummer zurücksetzen
OBJK_POST NOTRANSL: *(DEL)Objektliste buchen
OBJK_POST_UPDATE NOTRANSL: *(DEL)UPDATE OBJEKTLISTE
PM_GET_OBJECT_LIST NOTRANSL: *(DEL)PM: Interne Tabelle Objektliste (IOBJK) aus dem FB-Pool zu
PM_PRE_OBJECT_LIST NOTRANSL: *(DEL)PM: Objektliste PRE-FETCH
PROCESS_SERIALS_FOR_PRINT NOTRANSL: Aufbereitung der Serialnummern für den Druck
PROCESS_STRINGS_FOR_PRINT NOTRANSL: Aufbereitung von Strings für die Ausgabe
REPLACE_SUBSTRING NOTRANSL: Ersetzt einen Substring durch einen anderen Substring in einem S
SERIAL_LS_PRINT NOTRANSL: Drucken von Serialnummern zum Lieferschein
SERIAL_NOT_UNIQUE NOTRANSL: Serialnummer zum Material ist nicht eindeutig.
SERIAL_WV_PRINT NOTRANSL: Drucken von Serialnummern zum Lieferschein

IMPORTING Parameters details for EXIT_SAPLIPW0_001

TARGET_OBJLIST - Object List (Target)

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

OBJLIST_ENTRY - Object List Entry

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

EQUIPMENT - Equipment

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

FUNC_LOCATION - Functional Location

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

MATERIAL - Material

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

ASSEMBLY - Assembly

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

EXCEPTIONS details

VETO -

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

Copy and paste ABAP code example for EXIT_SAPLIPW0_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_veto  TYPE STRING, "   
lv_target_objlist  TYPE RSERXX, "   
lv_objlist_entry  TYPE RIPW0, "   
lv_equipment  TYPE EQUI, "   
lv_func_location  TYPE IFLO, "   
lv_material  TYPE RIPW0-MATNR, "   
lv_assembly  TYPE RIPW0-BAUTL. "   

  CALL FUNCTION 'EXIT_SAPLIPW0_001'  "Object Permissible for Contract (Copying of Order/Maintenance Order)
    EXPORTING
         TARGET_OBJLIST = lv_target_objlist
         OBJLIST_ENTRY = lv_objlist_entry
         EQUIPMENT = lv_equipment
         FUNC_LOCATION = lv_func_location
         MATERIAL = lv_material
         ASSEMBLY = lv_assembly
    EXCEPTIONS
        VETO = 1
. " EXIT_SAPLIPW0_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLIPW0_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 MATNR FROM RIPW0 INTO @DATA(ld_material).
 
"SELECT single BAUTL FROM RIPW0 INTO @DATA(ld_assembly).
 


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!