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
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
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.
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 . |
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.
LE_DSP_XLIPS_LOESCHEN - Bedarfe und offene Menge aufbauen LE_DSP_UNLOCK - Sperren von Belegen LE_DSP_SPLIT_EXECUTE - Liefersplit 2. Schritt: Aufbau Anwendungstabellen LE_DSP_SAVE_RENUMBER - Liefersplit 4. Schritt: Beleg sichern, Nummernvergabe LE_DSP_SAVE_POST - Liefersplit 5. Schritt: Datenbank-Update LE_DSP_RESOLVE_GET_DATA - Sperren von Belegen