SAP Function Modules

QDQV_Q_LEVEL_UD_CHAR SAP Function module







QDQV_Q_LEVEL_UD_CHAR is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name QDQV_Q_LEVEL_UD_CHAR into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: QDQV
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM QDQV_Q_LEVEL_UD_CHAR - QDQV Q LEVEL UD CHAR





CALL FUNCTION 'QDQV_Q_LEVEL_UD_CHAR' "
  EXPORTING
    i_kzkeinskip =              " qdse-kzkeinskip  Indicator: No skip
    i_prueflos =                " qdql-prueflos  Inspection lot number
    i_qamkr =                   " qamkr         Characteristic work area
    i_vbewertung =              " qave-vbewertung  Usage decision valuation
    .  "  QDQV_Q_LEVEL_UD_CHAR

ABAP code example for Function Module QDQV_Q_LEVEL_UD_CHAR





The ABAP code below is a full code listing to execute function module QDQV_Q_LEVEL_UD_CHAR including all data declarations. The code uses 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 original method of declaring data variables up front. 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).



DATA(ld_i_kzkeinskip) = some text here

SELECT single PRUEFLOS
FROM QDQL
INTO @DATA(ld_i_prueflos).

DATA(ld_i_qamkr) = 'Check type of data required'.

SELECT single VBEWERTUNG
FROM QAVE
INTO @DATA(ld_i_vbewertung).
. CALL FUNCTION 'QDQV_Q_LEVEL_UD_CHAR' EXPORTING i_kzkeinskip = ld_i_kzkeinskip i_prueflos = ld_i_prueflos i_qamkr = ld_i_qamkr i_vbewertung = ld_i_vbewertung . " QDQV_Q_LEVEL_UD_CHAR
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_i_kzkeinskip  TYPE QDSE-KZKEINSKIP ,
ld_i_prueflos  TYPE QDQL-PRUEFLOS ,
ld_i_qamkr  TYPE QAMKR ,
ld_i_vbewertung  TYPE QAVE-VBEWERTUNG .


ld_i_kzkeinskip = some text here

SELECT single PRUEFLOS
FROM QDQL
INTO ld_i_prueflos.

ld_i_qamkr = 'Check type of data required'.

SELECT single VBEWERTUNG
FROM QAVE
INTO ld_i_vbewertung.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name QDQV_Q_LEVEL_UD_CHAR or its description.