SAP OM_IPPE_PNACT_DELETE Function Module for NOTRANSL: ACT-Knoten hinzufügen
OM_IPPE_PNACT_DELETE is a standard om ippe pnact delete 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: ACT-Knoten hinzufügen 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 om ippe pnact delete FM, simply by entering the name OM_IPPE_PNACT_DELETE into the relevant SAP transaction such as SE37 or SE38.
Function Group: OM_IPPE_ENTRY
Program Name: SAPLOM_IPPE_ENTRY
Main Program: SAPLOM_IPPE_ENTRY
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OM_IPPE_PNACT_DELETE 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 'OM_IPPE_PNACT_DELETE'"NOTRANSL: ACT-Knoten hinzufügen.
EXPORTING
IV_PNGUID = "Internal Identification for PVS Objects
* IV_PAGUID = "Internal Identification for PVS Objects
IV_APPLOBJ_TYPE = "Application Object Type for iPPE
IV_OTYPE = "iPPE Object Type
IV_AENNR = "Change Number in iPPE
EXCEPTIONS
PNGUID_NOT_LOADED = 1
IMPORTING Parameters details for OM_IPPE_PNACT_DELETE
IV_PNGUID - Internal Identification for PVS Objects
Data type: PVS_GUIDOptional: No
Call by Reference: Yes
IV_PAGUID - Internal Identification for PVS Objects
Data type: PVS_GUIDOptional: Yes
Call by Reference: Yes
IV_APPLOBJ_TYPE - Application Object Type for iPPE
Data type: PVS_APPLOBJ_TYPEOptional: No
Call by Reference: Yes
IV_OTYPE - iPPE Object Type
Data type: PVS_OTYPEOptional: No
Call by Reference: Yes
IV_AENNR - Change Number in iPPE
Data type: PVSCSQ-AENNROptional: No
Call by Reference: Yes
EXCEPTIONS details
PNGUID_NOT_LOADED - Node Not Loaded
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for OM_IPPE_PNACT_DELETE 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_iv_pnguid | TYPE PVS_GUID, " | |||
| lv_pnguid_not_loaded | TYPE PVS_GUID, " | |||
| lv_iv_paguid | TYPE PVS_GUID, " | |||
| lv_iv_applobj_type | TYPE PVS_APPLOBJ_TYPE, " | |||
| lv_iv_otype | TYPE PVS_OTYPE, " | |||
| lv_iv_aennr | TYPE PVSCSQ-AENNR. " |
|   CALL FUNCTION 'OM_IPPE_PNACT_DELETE' "NOTRANSL: ACT-Knoten hinzufügen |
| EXPORTING | ||
| IV_PNGUID | = lv_iv_pnguid | |
| IV_PAGUID | = lv_iv_paguid | |
| IV_APPLOBJ_TYPE | = lv_iv_applobj_type | |
| IV_OTYPE | = lv_iv_otype | |
| IV_AENNR | = lv_iv_aennr | |
| EXCEPTIONS | ||
| PNGUID_NOT_LOADED = 1 | ||
| . " OM_IPPE_PNACT_DELETE | ||
ABAP code using 7.40 inline data declarations to call FM OM_IPPE_PNACT_DELETE
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 AENNR FROM PVSCSQ INTO @DATA(ld_iv_aennr). | ||||
Search for further information about these or an SAP related objects