Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BAPI_SHIPMENT_CREATE

Former Member
0 Likes
515

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

2 REPLIES 2
Read only

Former Member
0 Likes
435

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

Read only

0 Likes
435

I know how to look the standard one.

I need program example.