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

Find Deliverys

Former Member
0 Likes
497

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
473

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

2 REPLIES 2
Read only

Former Member
0 Likes
474

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

Read only

Former Member
0 Likes
473

Hi,

Please check FM RV_ORDER_FLOW_INFORMATION.

Regards,

Ferry Lianto