Warning: include_once(http://erpgenie.com/_borders/topabap.htm) [function.include-once]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /var/www/vhosts/erpgenie.com/httpdocs/abaptips/templates/rhuk_solarflare_ii/index.php on line 52

Warning: include_once() [function.include]: Failed opening 'http://erpgenie.com/_borders/topabap.htm' for inclusion (include_path='.:') in /var/www/vhosts/erpgenie.com/httpdocs/abaptips/templates/rhuk_solarflare_ii/index.php on line 52

Login

Login to view more content!!!





Lost Password?
No account yet? Register

Registered Access

Poll

What area of ABAP are you interested in?
 
Home arrow Sample Code arrow ABAP Reports arrow Document Flow
Document Flow PDF Print E-mail
User Rating: / 0
PoorBest 
Written by Kevin Wilson   
Saturday, 10 February 2007
Report using a function module to retrieve and print the document flow for a sales order.

REPORT ZWSBDOCFLOW

                LINE-SIZE 170

                LINE-COUNT 65

                MESSAGE-ID ZO

                NO STANDARD PAGE HEADING.

TABLES: VBAK, VBCO6, LIKP, VBDPR.

DATA: XVBFA LIKE VBFA OCCURS 1 WITH HEADER LINE.

DATA: XLIKP LIKE LIKP OCCURS 1 WITH HEADER LINE.

SELECT-OPTIONS:

        VBELN FOR VBAK-VBELN DEFAULT '0000185996' TO '0000186003'.

 

SELECT * FROM VBAK WHERE VBELN IN VBELN.

 

    MOVE-CORRESPONDING VBAK TO VBCO6.

 

    CLEAR XVBFA. REFRESH XVBFA.

    CLEAR XLIKP. REFRESH XLIKP.

 

    CALL FUNCTION 'RV_ORDER_FLOW_INFORMATION'

        EXPORTING

             COMWA         = VBCO6

        TABLES

             VBFA_TAB      = XVBFA.

 

    LOOP AT XVBFA WHERE ( VBTYP_N = 'J' )

                    AND ( VBTYP_V = 'C' ) .

 

                   MOVE:    XVBFA-VBELN TO XLIKP-VBELN.

                   COLLECT XLIKP.

 

    ENDLOOP.

 

    CHECK NOT XLIKP[] IS INITIAL.

 

    CLEAR VBDPR-TDNAME. "70 chars

    WRITE: / VBAK-VBELN.

 

    LOOP AT XLIKP.

         WRITE: /5 XLIKP-VBELN.

         SELECT SINGLE * FROM LIKP WHERE VBELN EQ XLIKP-VBELN.

         CHECK SY-SUBRC IS INITIAL.

         WRITE: 'found'.

    ENDLOOP.

ENDSELECT.


Related Items:

Last Updated ( Saturday, 10 February 2007 )
 
< Prev   Next >

Google Search

Statistics

Contribution Activity
Utilities: 38
Tips and Tricks: 333
Sample Code: 164
Total Contributions: 550

Member Activity
Members: 6244 since 2/1/2007!
New: 0 since yesterday!
Visitors: 1080614
We have 1 guest online

Newest Members

Welcome our newest members:

Google Ads


Warning: include(http://erpgenie.com/_borders/bottom.htm) [function.include]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /var/www/vhosts/erpgenie.com/httpdocs/abaptips/includes/footer.php on line 22

Warning: include() [function.include]: Failed opening 'http://erpgenie.com/_borders/bottom.htm' for inclusion (include_path='.:') in /var/www/vhosts/erpgenie.com/httpdocs/abaptips/includes/footer.php on line 22