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

Home arrow Sample Code arrow ABAP Reports arrow Creating Extract Dataset
Creating Extract Dataset PDF Print E-mail
User Rating: / 0
PoorBest 
Written by Anon.   
Saturday, 29 December 2007
Requirement:

Write a program that lists the Vendors and their Accounting documents. Create extract dataset from KDF logical database. Loop through the dataset to create the required report. Don't list those vendors which has no documents

Solution:
    report zfwr0001 no standard page heading.
    tables: lfa1, bsik.
    field-groups: header, item1, item2.
    insert lfa1-lifnr bsik-belnr into header.
    insert lfa1-land1 lfa1-name1 into item1.
    insert bsik-belnr bsik-budat into item2.
    start-of-selection.
    get lfa1.
    ....extract item1.
    get bsik.
    ....extract item2.
    end-of-selection.
    loop.
    ....at item1 with item2.
    ........skip.
    ........write:/ 'Vendor number:', 28 'Name:', 56 'City:'.
    ........write: 16 lfa1-lifnr, 33(20) lfa1-name1, 62(20) lfa1-ort01.
    ........write:/ 'Document no.', 15 'Date'.
    ....endat.
    ....at item2.
    ........write:/ bsik-belnr, 13 bsik-budat.
    ....endat.
    endloop.

    Additional task:

    Don't forget to set the Logical database to KDF on the "Program Attributes" screen.

    Result:

    Vendor number: 100124 Name:Coca Cola City: New York
    Document no. Date 
    1800000316 01/08/1997 
    Vendor number: 100126 Name: Universal Studios City: Los Angeles
    Document no. Date 
    1800000109 12/02/1996 
    1800000341 01/10/1997 
    1800000321 01/14/1997 

Related Items:

 
< Prev   Next >

Google Search

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