Application Development 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: 

Need to update picking,packing and PGI using FM "WS_delivery_update"

0 Kudos

Can anyone suggest the parameters to be passed into function module "ws_delivery_update."

I need to do update picking packing and pgi for an outbound delivery.

Anyone suggest if you had used this function module.

Points will be rewarded for useful answers

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi venki,

Try the following:

SORT lt_serials BY rfpos.

CALL FUNCTION 'WS_DELIVERY_UPDATE'

EXPORTING

vbkok_wa = lwa_vbkok

delivery = i_vbeln

commit = 'X'

it_sernr_update = lt_serials

IMPORTING

ef_error_sernr_update = l_sernr_update

EXCEPTIONS

OTHERS = 99.

Ensure you do the sort before calling the function module.

for picking etc..,, go to thses urls

http://209.85.207.104/search?q=cache:GpIqHSU7vdEJ:help.sap.com/bp_blv1500/BL_US/documentation/Scenar...updatepickingpackingandpgiforanoutbounddelivery%2B+sap&hl=en&ct=clnk&cd=1&gl=us

http://209.85.207.104/search?q=cache:GTmp4x5MkHwJ:help.sap.com/bp_lblv1500/LBL_ZA/documentation/Lean...updatepickingpackingandpgiforanoutbounddelivery%2B+sap&hl=en&ct=clnk&cd=2&gl=us

http://sapfunctionalinfo.blogspot.com/2008_03_09_archive.html

thanks

karthik

reward me if usefull

2 REPLIES 2

Former Member
0 Kudos

hi venki,

Try the following:

SORT lt_serials BY rfpos.

CALL FUNCTION 'WS_DELIVERY_UPDATE'

EXPORTING

vbkok_wa = lwa_vbkok

delivery = i_vbeln

commit = 'X'

it_sernr_update = lt_serials

IMPORTING

ef_error_sernr_update = l_sernr_update

EXCEPTIONS

OTHERS = 99.

Ensure you do the sort before calling the function module.

for picking etc..,, go to thses urls

http://209.85.207.104/search?q=cache:GpIqHSU7vdEJ:help.sap.com/bp_blv1500/BL_US/documentation/Scenar...updatepickingpackingandpgiforanoutbounddelivery%2B+sap&hl=en&ct=clnk&cd=1&gl=us

http://209.85.207.104/search?q=cache:GTmp4x5MkHwJ:help.sap.com/bp_lblv1500/LBL_ZA/documentation/Lean...updatepickingpackingandpgiforanoutbounddelivery%2B+sap&hl=en&ct=clnk&cd=2&gl=us

http://sapfunctionalinfo.blogspot.com/2008_03_09_archive.html

thanks

karthik

reward me if usefull

0 Kudos

thanks for inputs