SAP Function Modules

LE_DSP_XLIPS_LOESCHEN SAP Function module - Bedarfe und offene Menge aufbauen







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

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


Pattern for FM LE_DSP_XLIPS_LOESCHEN - LE DSP XLIPS LOESCHEN





CALL FUNCTION 'LE_DSP_XLIPS_LOESCHEN' "Bedarfe und offene Menge aufbauen
  EXPORTING
    if_tabix =                  " sy-tabix
    if_cmode =                  " ledsp_cm-cmode
    is_xlips =                  " lipsvb
    is_likp =                   " likp
  CHANGING
    cf_not_ok =                 "
    .  "  LE_DSP_XLIPS_LOESCHEN

ABAP code example for Function Module LE_DSP_XLIPS_LOESCHEN





The ABAP code below is a full code listing to execute function module LE_DSP_XLIPS_LOESCHEN 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_cf_not_ok) = 'some text here'.
DATA(ld_if_tabix) = '123 '.

DATA(ld_if_cmode) = some text here
DATA(ld_is_xlips) = '123 '.
DATA(ld_is_likp) = '123 '. . CALL FUNCTION 'LE_DSP_XLIPS_LOESCHEN' EXPORTING if_tabix = ld_if_tabix if_cmode = ld_if_cmode is_xlips = ld_is_xlips is_likp = ld_is_likp CHANGING cf_not_ok = ld_cf_not_ok . " LE_DSP_XLIPS_LOESCHEN
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_cf_not_ok  TYPE STRING ,
ld_if_tabix  TYPE SY-TABIX ,
ld_if_cmode  TYPE LEDSP_CM-CMODE ,
ld_is_xlips  TYPE LIPSVB ,
ld_is_likp  TYPE LIKP .

ld_cf_not_ok = 'some text here'.
ld_if_tabix = '123 '.

ld_if_cmode = some text here
ld_is_xlips = '123 '.
ld_is_likp = '123 '.

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