SAP EXIT_SAPLQPAA_005 Function Module for Additional Testing for Error List: Inspection Characteristic in Task List









EXIT_SAPLQPAA_005 is a standard exit saplqpaa 005 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Additional Testing for Error List: Inspection Characteristic in Task List 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 saplqpaa 005 FM, simply by entering the name EXIT_SAPLQPAA_005 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLQPAA_005 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_SAPLQPAA_005'"Additional Testing for Error List: Inspection Characteristic in Task List
EXPORTING
I_PLKOD = "Current Task List Header
I_PLPOD = "Current Task List Operation
I_PLMKB = "Current Inspection Characteristic
I_PLMKV = "Entry in Index Table

TABLES
T_MKERR = "Error Message Lines
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
QPAA_FEATURE_AUTHORITY_CHECK NOTRANSL: Berechtigungsprüfung zur Merkmalspflege
QPAA_INSPECTION_FEATURES NOTRANSL: Dialog zur Verwaltung der Pruefmerkmale in den PPS/QSS-Plänen
QPAA_INSPECTION_FEAT_VALUES NOTRANSL: Dialog zur Verwaltung der spezifischen Prüfmerkmalsvorgaben
QPAA_PLFH_OLD_MEMORY_IMPORT NOTRANSL: Importieren der alten PLFH-Daten aus Memory, zwecks PZLFH-Umsetz
QPAA_PLMK_COPY_EXT NOTRANSL: Fkt. Zum Kopieren der Merkmale zu einem Plan
QPAA_PLMK_COPY_EXT_INS NOTRANSL: Fkt. Zum Kopieren der Merkmale zu einem Plan
QPAA_PLMK_DELETE NOTRANSL: Loeschen Merkmal in PLMK außerhalb Merkmalsbearbeitung
QPAA_PLMK_DEQUEUE NOTRANSL: Auflösen Standardplanreferenz Merkmale
QPAA_PLMW_CHK_FOR_MAPL NOTRANSL: Bearbeiten spezifischer Prüfmerkmalsvorgaben bei Löschen/Ändern
QPAA_PLMW_COPY_EXT NOTRANSL: Fkt. Zum Kopieren der spezifischen Prüfmerkmalsvorgaben zu einem
QPAA_PLMW_DELETE NOTRANSL: Loeschen spez. Prüfmerkmalsvorgaben in PLMW außerhalb Merkmalsbe

IMPORTING Parameters details for EXIT_SAPLQPAA_005

I_PLKOD - Current Task List Header

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

I_PLPOD - Current Task List Operation

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

I_PLMKB - Current Inspection Characteristic

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

I_PLMKV - Entry in Index Table

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

TABLES Parameters details for EXIT_SAPLQPAA_005

T_MKERR - Error Message Lines

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

Copy and paste ABAP code example for EXIT_SAPLQPAA_005 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_plkod  TYPE PLKOD, "   
lt_t_mkerr  TYPE STANDARD TABLE OF PLMK_ER, "   
lv_i_plpod  TYPE PLPOD, "   
lv_i_plmkb  TYPE PLMKB, "   
lv_i_plmkv  TYPE PLMKV. "   

  CALL FUNCTION 'EXIT_SAPLQPAA_005'  "Additional Testing for Error List: Inspection Characteristic in Task List
    EXPORTING
         I_PLKOD = lv_i_plkod
         I_PLPOD = lv_i_plpod
         I_PLMKB = lv_i_plmkb
         I_PLMKV = lv_i_plmkv
    TABLES
         T_MKERR = lt_t_mkerr
. " EXIT_SAPLQPAA_005




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLQPAA_005

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.

 
 
 
 
 


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!