SAP EXIT_RQCAAP02_002 Function Module for Cust. Fn Reps: Evaluate Criteria for Limiting Insp./Partial Lot Selection









EXIT_RQCAAP02_002 is a standard exit rqcaap02 002 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Cust. Fn Reps: Evaluate Criteria for Limiting Insp./Partial Lot Selection 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 rqcaap02 002 FM, simply by entering the name EXIT_RQCAAP02_002 into the relevant SAP transaction such as SE37 or SE38.

Function Group: XQCV
Program Name: SAPLXQCV
Main Program:
Appliation area: Q
Release date: 02-Mar-1999
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EXIT_RQCAAP02_002 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_RQCAAP02_002'"Cust. Fn Reps: Evaluate Criteria for Limiting Insp./Partial Lot Selection
EXPORTING
I_INSPECTION_LOT = "Inspection Lot
* I_PARTIAL_LOT = "Partial Lot
I_USAGE_DECISION = "Usage Decision
I_CERT_PROFILE = "Certificate Profile
* I_DEL_NOTE = "Delivery
* I_POSNR = "Item

EXCEPTIONS
REJECTED = 1
.



IMPORTING Parameters details for EXIT_RQCAAP02_002

I_INSPECTION_LOT - Inspection Lot

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

I_PARTIAL_LOT - Partial Lot

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

I_USAGE_DECISION - Usage Decision

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

I_CERT_PROFILE - Certificate Profile

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

I_DEL_NOTE - Delivery

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

I_POSNR - Item

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

EXCEPTIONS details

REJECTED - Inspection/Partial Lot is Not Included

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

Copy and paste ABAP code example for EXIT_RQCAAP02_002 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_rejected  TYPE STRING, "   
lv_i_inspection_lot  TYPE QALS, "   
lv_i_partial_lot  TYPE QALT, "   
lv_i_usage_decision  TYPE QAVE, "   
lv_i_cert_profile  TYPE QCVK, "   
lv_i_del_note  TYPE VBDPL-VBELN, "   
lv_i_posnr  TYPE VBDPL-POSNR. "   

  CALL FUNCTION 'EXIT_RQCAAP02_002'  "Cust. Fn Reps: Evaluate Criteria for Limiting Insp./Partial Lot Selection
    EXPORTING
         I_INSPECTION_LOT = lv_i_inspection_lot
         I_PARTIAL_LOT = lv_i_partial_lot
         I_USAGE_DECISION = lv_i_usage_decision
         I_CERT_PROFILE = lv_i_cert_profile
         I_DEL_NOTE = lv_i_del_note
         I_POSNR = lv_i_posnr
    EXCEPTIONS
        REJECTED = 1
. " EXIT_RQCAAP02_002




ABAP code using 7.40 inline data declarations to call FM EXIT_RQCAAP02_002

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 VBELN FROM VBDPL INTO @DATA(ld_i_del_note).
 
"SELECT single POSNR FROM VBDPL INTO @DATA(ld_i_posnr).
 


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!