SAP QFDL_READ_INSPECTION_POINT_LOT Function Module for









QFDL_READ_INSPECTION_POINT_LOT is a standard qfdl read inspection point lot SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 qfdl read inspection point lot FM, simply by entering the name QFDL_READ_INSPECTION_POINT_LOT into the relevant SAP transaction such as SE37 or SE38.

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



Function QFDL_READ_INSPECTION_POINT_LOT 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 'QFDL_READ_INSPECTION_POINT_LOT'"
EXPORTING
I_PRUEFLOS = "
I_PNLKN = "
I_PROBENR = "
* I_CHECK_ONLY = ' ' "(X=) Check for inspection point (no text export)

IMPORTING
E_PRFPKT = "

EXCEPTIONS
INDEPENDENT_MULTIPLE_SAMPLE = 1 NO_SAMPLE_NUMBER = 2 INPUT_ERROR = 3
.



IMPORTING Parameters details for QFDL_READ_INSPECTION_POINT_LOT

I_PRUEFLOS -

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

I_PNLKN -

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

I_PROBENR -

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

I_CHECK_ONLY - (X=) Check for inspection point (no text export)

Data type: QM00-QKZ
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for QFDL_READ_INSPECTION_POINT_LOT

E_PRFPKT -

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

EXCEPTIONS details

INDEPENDENT_MULTIPLE_SAMPLE -

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

NO_SAMPLE_NUMBER -

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

INPUT_ERROR -

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

Copy and paste ABAP code example for QFDL_READ_INSPECTION_POINT_LOT 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_e_prfpkt  TYPE QAPPW-PRUEFPKT, "   
lv_i_prueflos  TYPE QMEL-PRUEFLOS, "   
lv_independent_multiple_sample  TYPE QMEL, "   
lv_i_pnlkn  TYPE QMEL-PNLKN, "   
lv_no_sample_number  TYPE QMEL, "   
lv_i_probenr  TYPE QMFE-PROBENR, "   
lv_input_error  TYPE QMFE, "   
lv_i_check_only  TYPE QM00-QKZ. "   SPACE

  CALL FUNCTION 'QFDL_READ_INSPECTION_POINT_LOT'  "
    EXPORTING
         I_PRUEFLOS = lv_i_prueflos
         I_PNLKN = lv_i_pnlkn
         I_PROBENR = lv_i_probenr
         I_CHECK_ONLY = lv_i_check_only
    IMPORTING
         E_PRFPKT = lv_e_prfpkt
    EXCEPTIONS
        INDEPENDENT_MULTIPLE_SAMPLE = 1
        NO_SAMPLE_NUMBER = 2
        INPUT_ERROR = 3
. " QFDL_READ_INSPECTION_POINT_LOT




ABAP code using 7.40 inline data declarations to call FM QFDL_READ_INSPECTION_POINT_LOT

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 PRUEFPKT FROM QAPPW INTO @DATA(ld_e_prfpkt).
 
"SELECT single PRUEFLOS FROM QMEL INTO @DATA(ld_i_prueflos).
 
 
"SELECT single PNLKN FROM QMEL INTO @DATA(ld_i_pnlkn).
 
 
"SELECT single PROBENR FROM QMFE INTO @DATA(ld_i_probenr).
 
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_check_only).
DATA(ld_i_check_only) = ' '.
 


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!