‎2008 Jul 08 8:01 PM
Does any one can pl give sample code for the BAPI_SHIPMENT_CREATE
what parameters need to pass i have problem with Logical time in this.
Any Idea............
Thanks
NK
‎2008 Jul 08 8:08 PM
Hi,
This is from a standard include program:
*- call the bapi
CALL FUNCTION 'BAPI_SHIPMENT_CREATE'
EXPORTING
headerdata = is_shp_hdr
IMPORTING
transport = is_shp_hdr-shipment_num
shipmentguid = is_shp_hdr-guid
TABLES
headerdeadline = it_shp_hdr_dline
itemdata = it_shp_itm
stagedata = it_shp_stg
stagedeadline = it_shp_stg_dline
itemonstage = it_shp_ios
address = lt_address
hdunheader = it_shp_hu_hdr
hdunitem = it_hdunitem
return = ct_logfile.
Check function module documentation for further assistance.
Regards,
Subramanian
‎2008 Jul 08 8:16 PM