ISP_DISTRIBUTE_RETRIEVAL_READ 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 ISP_DISTRIBUTE_RETRIEVAL_READ into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JS01
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISP_DISTRIBUTE_RETRIEVAL_READ' "
EXPORTING
ab = " rjs0102-gueltigab
bis = " rjs0102-gueltigbis
* liefbarpar = SPACE " rjv1001
* xinakt_mitlesen = SPACE " rjs0102-xstruaktiv
* xenqueue_struc_nodes = SPACE " rjs0101-xstrupuff
* xisolated_read = SPACE " rjs0101-xstrupuff
TABLES
* knoten_tab = " rjs0104
liefbar_tab = " rjv1003
EXCEPTIONS
ALTER_ZIELZUORDTYP = 1 "
INTERNER_FEHLER = 2 "
KEINE_LIEFERART = 3 "
KEINE_PARALLELLNR = 4 "
KEIN_BLATT = 5 "
KEIN_STARTZUORDTYP = 6 "
KEIN_ZIELZUORDTYP = 7 "
KEIN_ZUGRIFFSPFAD = 8 "
MIX_PARALLEL = 9 "
MIX_RICHTUNG = 10 "
MIX_ZUGRIFFSPFAD = 11 "
NOT_INITIAL = 12 "
PARALLEL_STARTZUORDTYP = 13 "
START_NACH_ZIELZUORDTYP = 14 "
LIEFBAR_SUBOPTIMAL = 15 "
. " ISP_DISTRIBUTE_RETRIEVAL_READ
The ABAP code below is a full code listing to execute function module ISP_DISTRIBUTE_RETRIEVAL_READ 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).
| it_knoten_tab | TYPE STANDARD TABLE OF RJS0104,"TABLES PARAM |
| wa_knoten_tab | LIKE LINE OF it_knoten_tab , |
| it_liefbar_tab | TYPE STANDARD TABLE OF RJV1003,"TABLES PARAM |
| wa_liefbar_tab | LIKE LINE OF it_liefbar_tab . |
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_ab | TYPE RJS0102-GUELTIGAB , |
| it_knoten_tab | TYPE STANDARD TABLE OF RJS0104 , |
| wa_knoten_tab | LIKE LINE OF it_knoten_tab, |
| ld_bis | TYPE RJS0102-GUELTIGBIS , |
| it_liefbar_tab | TYPE STANDARD TABLE OF RJV1003 , |
| wa_liefbar_tab | LIKE LINE OF it_liefbar_tab, |
| ld_liefbarpar | TYPE RJV1001 , |
| ld_xinakt_mitlesen | TYPE RJS0102-XSTRUAKTIV , |
| ld_xenqueue_struc_nodes | TYPE RJS0101-XSTRUPUFF , |
| ld_xisolated_read | TYPE RJS0101-XSTRUPUFF . |
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 ISP_DISTRIBUTE_RETRIEVAL_READ or its description.
ISP_DISTRIBUTE_RETRIEVAL_READ - ISP_DISTRIBUTE_DATE_CALCULATE - ISP_DISPO_RESULTS_MODIFY - IS-M/SD: Modif. (INS or UPD) of Planning Results for Deliveries/Ins./A ISP_DISPO_RESULTS_DEL_INS - IS-M/SD: Cleanup and Regen. of Planning Results for Deliveries/Inserti ISP_DISPO_NETCHANGE_DEL_INS - IS-M/SD: Cleanup and Regeneration of Netchange Files from Qty Planning ISP_DISPOINFOS_READ_BY_ORG_POS -