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

Updating Picking Quantity using VL02N ?

Former Member
0 Likes
594

Hi All,

I tried updating the picking quantity field in VL02N using the BADI LE_SHP_DELIVERY_PROC and also

i tried different methods but couldnt do it. Is there any other way for updating the Picking Quantity ? am i missing anything ?

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
475

Hi,

use this one

CALL FUNCTION 'LE_MOB_DELIVERY_UPDATE'

EXPORTING

do_commit = 'X'

TABLES

t_delivery_items = i_internal table

prot = i_prot

EXCEPTIONS

conversion_overflow = 1

essential_data_missing = 2

error = 3

nothing_to_update = 4

lock_after_update_failed = 5

error_in_delivery_update = 6

OTHERS = 7.

COMMIT WORK.

Hi All,

I tried updating the picking quantity field in VL02N using the BADI LE_SHP_DELIVERY_PROC and also

i tried different methods but couldnt do it. Is there any other way for updating the Picking Quantity ? am i missing anything ?

Thanks

1 REPLY 1
Read only

Former Member
0 Likes
476

Hi,

use this one

CALL FUNCTION 'LE_MOB_DELIVERY_UPDATE'

EXPORTING

do_commit = 'X'

TABLES

t_delivery_items = i_internal table

prot = i_prot

EXCEPTIONS

conversion_overflow = 1

essential_data_missing = 2

error = 3

nothing_to_update = 4

lock_after_update_failed = 5

error_in_delivery_update = 6

OTHERS = 7.

COMMIT WORK.