SAP Function SD_GTIS_TRANSNET - Graphical Transportation Information System - Main Routine

Parameter Reference Type Length Default Optional Text
DELIVID LIKP-VBELN C 10 X Delivery number
MODE RV56A-SELKZ C 1 'N' X Disply mode (individual route or network)
ORDERID VBAK-VBELN C 10 X Order number
OUTPUT_MODE RV56A-SELKZ C 1 'G' X Output mode (graphics or list)
PLACEM_MODE RV56A-SELKZ C 1 ' ' X Placing mode
RETURN_MODE RV56A-SELKZ C 1 'N' X Return mode
SHIPMID VTTK-TKNUM C 10 X Shipment number

Parameter Reference Length Optional Text
SHIPM_RET VBELNTMP 12 X Return table for selected shipment numbers
XVTSP VTSPVB 22 X
XVTTK VTTKVB 1644 X
XVTTP VTTPVB 242 X
XVTTS VTTSVB 947 X
YVTTP VTTPVB 242 X

Functionality
This module creates a graphical depiction of the transportation routesfor the order, delivery or shipment selected. The routes are shown inthe form of a network, with the locations (shipping points, loadtransfer points, receiving points) shown as transportation connectionpoints while the legs that link them are shown as lines. Differentinformation can be displayed for the legs:
- Number of deliveries
- Service agents
- Deadlines
- etc.
You can call up further information by double-clicking on the legs(e.g. view all deliveries). You select the shipment legs using eitheran order number, a delivery number or a shipment number. If you do notspecify any of these parameters, then the shipments to be displayed areselected on the basis of the contents of the function module's
internal table for orders, deliveries and shipments. These tables canbe modified using the functions SD_GTIS_INITIALIZE andSD_GTIS_SET_RECNUM.
In addition to the document number data being transferred, tables withtemporary information (shipment header XVTTK, shipment items XVTTP,shipment legs XVTTS, item-leg-assignment XVTSP and shipment documentflow XVTFA) can also be transferred.
Example


call function 'SD_GTIS_MAIN'
exporting
delivid = '0080000252'
mode = 'R'.
Display of the transportation network for order '0025000022' and alllegs in which deliveries are being transported at the same time asdeliveries from this order on at least one route (transportationnetwork):
call function 'SD_GTIS_MAIN'
exporting
orderid = '0025000022'.
Displaying the shipment legs for several orders, deliveries andshipments that are written to the internal tables usingSD_GTIS_SET_RECNUM:
call function 'SD_GTIS_MAIN'
exporting
mode = 'R'

Notes
The display mode (transportation routes or transportation network)
can be determined using parameter MODE.

Further information
Documentation on SD_GTIS_INITIALIZE and SD_GTIS_SET_RECNUM