‎2013 May 29 9:31 AM
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...
‎2013 May 29 12:12 PM
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
‎2013 May 29 10:45 AM
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
‎2013 May 29 12:12 PM
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
‎2013 Jun 02 4:09 PM
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...