Application Development 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: 

SD_DOCUMENT_FLOW_GET missing in 5.0

Former Member
0 Kudos
279

Hi all,

does anybody know the name of a function module that works like SD_DOCUMENT_FLOW_GET and that

can I use in release 5.0 ?

In the system where I've been working this function does not exist.

I thank you in advance.

1 ACCEPTED SOLUTION

arseni_gallardo
Active Participant
0 Kudos
135

Try function module 'RV_ORDER_FLOW_INFORMATION


  DATA: ls_comwa TYPE vbco6,
        lt_vbfa TYPE TABLE OF vbfa WITH HEADER LINE .

  ls_comwa-vbeln = your_document_number .
  CALL FUNCTION 'RV_ORDER_FLOW_INFORMATION'
       EXPORTING
            comwa    = ls_comwa
       TABLES
            vbfa_tab = lt_vbfa
       EXCEPTIONS
            OTHERS   = 0.

1 REPLY 1

arseni_gallardo
Active Participant
0 Kudos
136

Try function module 'RV_ORDER_FLOW_INFORMATION


  DATA: ls_comwa TYPE vbco6,
        lt_vbfa TYPE TABLE OF vbfa WITH HEADER LINE .

  ls_comwa-vbeln = your_document_number .
  CALL FUNCTION 'RV_ORDER_FLOW_INFORMATION'
       EXPORTING
            comwa    = ls_comwa
       TABLES
            vbfa_tab = lt_vbfa
       EXCEPTIONS
            OTHERS   = 0.