2007 Oct 21 2:11 PM
Hi
i have some order from vbak
i want to find all the delivery
i know that i can used table vbfa but i look for Fm that find the delivery
Thanks
Have a nice day
2007 Oct 21 2:39 PM
You can USE FM RV_FLOW ..
See the example One :
data wa_VBCO6 like VBCO6 .
data i_vbfa like vbfa occurs 0 with header line.
parameters : p_vbeln like vbak-vbeln. " sales order number
wa_VBCO6-vbeln = p_vbeln.
CALL FUNCTION 'RV_FLOW'
EXPORTING
comwa = WA_VBCO6
VBTYP_N = 'J'
tables
vbfa_tab = i_vbfa
.
loop at i_vbfa.
Delivery ,Item
write:/ i_vbfa-vbeln ,i_vbfa-posnn.
endloop.
Thanks
Seshu
Hi
i have some order from vbak
i want to find all the delivery
i know that i can used table vbfa but i look for Fm that find the delivery
Thanks
Have a nice day
2007 Oct 21 2:39 PM
You can USE FM RV_FLOW ..
See the example One :
data wa_VBCO6 like VBCO6 .
data i_vbfa like vbfa occurs 0 with header line.
parameters : p_vbeln like vbak-vbeln. " sales order number
wa_VBCO6-vbeln = p_vbeln.
CALL FUNCTION 'RV_FLOW'
EXPORTING
comwa = WA_VBCO6
VBTYP_N = 'J'
tables
vbfa_tab = i_vbfa
.
loop at i_vbfa.
Delivery ,Item
write:/ i_vbfa-vbeln ,i_vbfa-posnn.
endloop.
Thanks
Seshu
2007 Oct 21 3:18 PM
Hi,
Please check FM RV_ORDER_FLOW_INFORMATION.
Regards,
Ferry Lianto
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |