SAP QPSD_FEATURE_LIST Function Module for NOTRANSL: Stammprüfmerkmalsliste im Einstiegsbild bzw. Zeitachse









QPSD_FEATURE_LIST is a standard qpsd feature list 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: Stammprüfmerkmalsliste im Einstiegsbild bzw. Zeitachse 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 qpsd feature list FM, simply by entering the name QPSD_FEATURE_LIST into the relevant SAP transaction such as SE37 or SE38.

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



Function QPSD_FEATURE_LIST 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 'QPSD_FEATURE_LIST'"NOTRANSL: Stammprüfmerkmalsliste im Einstiegsbild bzw. Zeitachse
EXPORTING
I_WERKS = "Plant for Master Inspection Characteristic
I_MKMNR = "Master Insp. Characteristic
* I_GUELTIGAB = "Valid-From Date
* I_ZEIT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_QMASTMOD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* I_NOT_RELEASED = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION

IMPORTING
E_SUBRC = "Return Value, Return Value after ABAP Statements
E_MERKMAL = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_VERSION = "DE-EN-LANG-SWITCH-NO-TRANSLATION
E_GUELTIGAB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLQPSD_001 Customer Exit While Reading a Master Inspection Characteristic Version

IMPORTING Parameters details for QPSD_FEATURE_LIST

I_WERKS - Plant for Master Inspection Characteristic

Data type: QPMK-WERKS
Optional: No
Call by Reference: Yes

I_MKMNR - Master Insp. Characteristic

Data type: QPMK-MKMNR
Optional: No
Call by Reference: Yes

I_GUELTIGAB - Valid-From Date

Data type: QMTB-GUELTIGAB
Optional: Yes
Call by Reference: Yes

I_ZEIT - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: QM00-QKZ
Optional: Yes
Call by Reference: Yes

I_QMASTMOD - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: QMASTMOD
Optional: Yes
Call by Reference: Yes

I_NOT_RELEASED - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: QM00-QKZ
Default: 'X'
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for QPSD_FEATURE_LIST

E_SUBRC - Return Value, Return Value after ABAP Statements

Data type: SY-SUBRC
Optional: No
Call by Reference: Yes

E_MERKMAL - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: QPMK-MKMNR
Optional: No
Call by Reference: Yes

E_VERSION - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: QMTB-VERSION
Optional: No
Call by Reference: Yes

E_GUELTIGAB - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: QMTB-GUELTIGAB
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for QPSD_FEATURE_LIST 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_subrc  TYPE SY-SUBRC, "   
lv_i_werks  TYPE QPMK-WERKS, "   
lv_i_mkmnr  TYPE QPMK-MKMNR, "   
lv_e_merkmal  TYPE QPMK-MKMNR, "   
lv_e_version  TYPE QMTB-VERSION, "   
lv_i_gueltigab  TYPE QMTB-GUELTIGAB, "   
lv_i_zeit  TYPE QM00-QKZ, "   
lv_e_gueltigab  TYPE QMTB-GUELTIGAB, "   
lv_i_qmastmod  TYPE QMASTMOD, "   
lv_i_not_released  TYPE QM00-QKZ. "   'X'

  CALL FUNCTION 'QPSD_FEATURE_LIST'  "NOTRANSL: Stammprüfmerkmalsliste im Einstiegsbild bzw. Zeitachse
    EXPORTING
         I_WERKS = lv_i_werks
         I_MKMNR = lv_i_mkmnr
         I_GUELTIGAB = lv_i_gueltigab
         I_ZEIT = lv_i_zeit
         I_QMASTMOD = lv_i_qmastmod
         I_NOT_RELEASED = lv_i_not_released
    IMPORTING
         E_SUBRC = lv_e_subrc
         E_MERKMAL = lv_e_merkmal
         E_VERSION = lv_e_version
         E_GUELTIGAB = lv_e_gueltigab
. " QPSD_FEATURE_LIST




ABAP code using 7.40 inline data declarations to call FM QPSD_FEATURE_LIST

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 SUBRC FROM SY INTO @DATA(ld_e_subrc).
 
"SELECT single WERKS FROM QPMK INTO @DATA(ld_i_werks).
 
"SELECT single MKMNR FROM QPMK INTO @DATA(ld_i_mkmnr).
 
"SELECT single MKMNR FROM QPMK INTO @DATA(ld_e_merkmal).
 
"SELECT single VERSION FROM QMTB INTO @DATA(ld_e_version).
 
"SELECT single GUELTIGAB FROM QMTB INTO @DATA(ld_i_gueltigab).
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_zeit).
 
"SELECT single GUELTIGAB FROM QMTB INTO @DATA(ld_e_gueltigab).
 
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_not_released).
DATA(ld_i_not_released) = 'X'.
 


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!