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

Is there any Function Module / BAPI to create Wave Pick?

Former Member
0 Likes
1,229

I have a requirement to create Wave Pick in my report program which is done through VL35 transaction. I searched on web regarding the same, but couldn't find anything. BDC recording also didn't help since the transaction contains ALV display. Eventually I have found the FM "WS_PICK_WAV_WRITE_PREPARE" which is used in the standard program "SAPMV53W". But this requires two tables IT_WELLE_IN and IT_BELEG_IN as parameters which I am not sure how to populate. Please give inputs on this...

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
768

Hi Raja,

if you want to use the function module mentioned by you then kindly refer the structures

"wellen" and "lieferungen" for IT_WELLE_IN and IT_BELEG_IN respectively. you can check out

the necessary fields that you want to populate in the internal tables ,for more info go through the FM

in se37.

Alternatively try using the following FM:

WS_LM_GROUP_CREATE

pass

exporting

if_refnum_add = 'X'

if_lgnum  = warehouse number

if_vtext ="

if_smart = 'W'

if_cdsto = ' '

Note that transaction VL35_S can  be used to create wave pick according to shipment.

Hope it helps!!!!

Thanks And Regards,

Alora Sahu

3 REPLIES 3
Read only

gurunathkumar_dadamu
Active Contributor
0 Likes
768

Hi Raja,

for IT_WELLE_IN refer the structure  'wellen'  and for IT_BELEG_IN refer the structure 'lieferungen'.

please check this structure and here we will have the fields with the desricption of the field.so fill the what ever necessary fields required to create the VL35.

i hope your problem will solve.

Regards,

Gurunath

Read only

Former Member
0 Likes
769

Hi Raja,

if you want to use the function module mentioned by you then kindly refer the structures

"wellen" and "lieferungen" for IT_WELLE_IN and IT_BELEG_IN respectively. you can check out

the necessary fields that you want to populate in the internal tables ,for more info go through the FM

in se37.

Alternatively try using the following FM:

WS_LM_GROUP_CREATE

pass

exporting

if_refnum_add = 'X'

if_lgnum  = warehouse number

if_vtext ="

if_smart = 'W'

if_cdsto = ' '

Note that transaction VL35_S can  be used to create wave pick according to shipment.

Hope it helps!!!!

Thanks And Regards,

Alora Sahu

Read only

Former Member
0 Likes
768

HI, Thanks for the replies. But still I am struck in the same issue (even after populating possible values in IT_WELLE_IN & IT_BELEG_IN ) . The FM "WS_LM_GROUP_CREATE" doesn't help. Please suggest if any alternates available...