SAP Function Modules

MDVMKEY_AUFLOESEN SAP Function module - Delete key of MDVM







MDVMKEY_AUFLOESEN 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 MDVMKEY_AUFLOESEN into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM MDVMKEY_AUFLOESEN - MDVMKEY AUFLOESEN





CALL FUNCTION 'MDVMKEY_AUFLOESEN' "Delete key of MDVM
  EXPORTING
    mafid =                     " mdvm-mafid
    mdvmkey =                   " mdvm-mdkey
  IMPORTING
    disst =                     " mara-disst    Low-level code
    matnr =                     " mara-matnr    Material number
    werks =                     " marc-werks    Plant
    .  "  MDVMKEY_AUFLOESEN

ABAP code example for Function Module MDVMKEY_AUFLOESEN





The ABAP code below is a full code listing to execute function module MDVMKEY_AUFLOESEN 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_disst  TYPE MARA-DISST ,
ld_matnr  TYPE MARA-MATNR ,
ld_werks  TYPE MARC-WERKS .


SELECT single MAFID
FROM MDVM
INTO @DATA(ld_mafid).


SELECT single MDKEY
FROM MDVM
INTO @DATA(ld_mdvmkey).
. CALL FUNCTION 'MDVMKEY_AUFLOESEN' EXPORTING mafid = ld_mafid mdvmkey = ld_mdvmkey IMPORTING disst = ld_disst matnr = ld_matnr werks = ld_werks . " MDVMKEY_AUFLOESEN
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_disst  TYPE MARA-DISST ,
ld_mafid  TYPE MDVM-MAFID ,
ld_matnr  TYPE MARA-MATNR ,
ld_mdvmkey  TYPE MDVM-MDKEY ,
ld_werks  TYPE MARC-WERKS .


SELECT single MAFID
FROM MDVM
INTO ld_mafid.


SELECT single MDKEY
FROM MDVM
INTO ld_mdvmkey.

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 MDVMKEY_AUFLOESEN or its description.