MASTERIDOC_CREATE_DLPSTEUERN 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 MASTERIDOC_CREATE_DLPSTEUERN into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
WPDA
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'MASTERIDOC_CREATE_DLPSTEUERN' "POS-Schnittstelle: IDOC-Sätze für Steuern selektieren und schreiben
EXPORTING
* pi_datum_ab = " wpstruc-datum Verwendung erst nach Rel. 3.0
pi_aktivdat = " wpstruc-datum Versendedatum
* pi_datum_bis = " wpstruc-datum Verwendung erst nach Rel. 3.0
pi_dldlfdnr = " wdlsp-lfdnr Lfd.-Nr. der Positionszeile für Statusverfolgung
pi_dldnr = " wdls-dldnr Downloadnummer für Statusverfolgung
* pi_express = ' ' " wpstruc-modus 'X': sofort versenden, ' ': später versenden
pi_filia = " t001w-werks Filiale
* pi_loeschen = ' ' " wpstruc-modus 'X': sel.Daten löschen, ' ': sel. Daten übertrag
pi_e1wpt02 = " wpstruc-modus = 'X', wenn Segment E1WPT02 versend. werden soll
px_segment_counter = " wdlsp-anseg Segmentzähler
pi_filia_const = " wpfilconst
IMPORTING
px_segment_counter = " wdlsp-anseg Segmentzähler
* TABLES
* pit_workdays = " wpworkdays Verwendung erst nach Rel. 3.0
CHANGING
pxt_idoc_data = " short_edidd POS-Ausgang: Verkürzte EDIDD für IDOC-Daten
EXCEPTIONS
DOWNLOAD_EXIT = 1 " Es sind Fehler beim Download aufgetreten
. " MASTERIDOC_CREATE_DLPSTEUERN
The ABAP code below is a full code listing to execute function module MASTERIDOC_CREATE_DLPSTEUERN 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).
| ld_px_segment_counter | TYPE WDLSP-ANSEG , |
| it_pit_workdays | TYPE STANDARD TABLE OF WPWORKDAYS,"TABLES PARAM |
| wa_pit_workdays | LIKE LINE OF it_pit_workdays . |
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_pxt_idoc_data | TYPE SHORT_EDIDD , |
| ld_px_segment_counter | TYPE WDLSP-ANSEG , |
| ld_pi_datum_ab | TYPE WPSTRUC-DATUM , |
| it_pit_workdays | TYPE STANDARD TABLE OF WPWORKDAYS , |
| wa_pit_workdays | LIKE LINE OF it_pit_workdays, |
| ld_pi_aktivdat | TYPE WPSTRUC-DATUM , |
| ld_pi_datum_bis | TYPE WPSTRUC-DATUM , |
| ld_pi_dldlfdnr | TYPE WDLSP-LFDNR , |
| ld_pi_dldnr | TYPE WDLS-DLDNR , |
| ld_pi_express | TYPE WPSTRUC-MODUS , |
| ld_pi_filia | TYPE T001W-WERKS , |
| ld_pi_loeschen | TYPE WPSTRUC-MODUS , |
| ld_pi_e1wpt02 | TYPE WPSTRUC-MODUS , |
| ld_px_segment_counter | TYPE WDLSP-ANSEG , |
| ld_pi_filia_const | TYPE WPFILCONST . |
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 MASTERIDOC_CREATE_DLPSTEUERN or its description.
MASTERIDOC_CREATE_DLPSTEUERN - POS-Schnittstelle: IDOC-Sätze für Steuern selektieren und schreiben MASTERIDOC_CREATE_DLPSETS - POS-Schnittstelle: IDOC-Sätze für Set-Artikel selektieren und schreibe MASTERIDOC_CREATE_DLPREBATES - POS-Schnittstelle: IDOC-Sätze für Aktionsrabatte selektieren und schre MASTERIDOC_CREATE_DLPPERS - POS-Schnittstelle: IDOC-Sätze für Personendaten selektieren und schrei MASTERIDOC_CREATE_DLPNART - POS-Schnittstelle: IDOC-Sätze für Nachzugsartikel selektieren und schr MASTERIDOC_CREATE_DLPEAN - POS-Schnittstelle: IDOC-Sätze für EAN-Referenzen selektieren und schre