Report for Open PO and ASN.

Hello All,
We need a report that shows all parts ordered and not received. It would be a combination of the open orders and open ASN's.
Do we have any report that can satisfy this request.
Thanks in advance.
Forum Shah

Hello All,
Thanks for your reply.
I want to create a new report
The RECORD SELECTION FIELDS in this new report should include the following:
1.     Plant Number =      (should be mandatory field)
2.     Vendor Number =      
3.     Material Number =
4.     Purch Doc Type =
5.     Purch Doc Number =
6.     Material Type =
7.     Item Category =
8.     Account Asgn Category =
9.     Confirmation Cntl Key =
10.     Due Date =
The OUTPUT COLUMNS in this new report should be export-ready to Excel  (ALV), and include the following columns:
1.     Plant Number =
2.     Plant Name = 
3.     Vendor Number =
4.     Vendor Name =
5.     Purch Doc Number (both PO and SA) =
6.     Line Number =
7.     Material Number =
8.     Material Description =
9.     Material Type =
10.     Item Category =
11.     Account Asgn Category =
11.     Confirmation Cntl Key = 
12.     Qty Due = Original qty u2013 received qty
13.     Date Due =
   (repeat QTY and DATE for all open releases)
14.     ASN Number (if ASN has been recorded in SAP) = EKES-VBELN
Now i am having issue while developing logic for delivery dates, Inbound delivery and GR.
When i create IB my remaining open quantities should be seen. And when I am doing GR whole line should get disappear.
I tried MDBS, EKET and EKES table. But i am not able to link delivery dates, due qty, inbound delivery and GR qty.
Please suggest.
Thanks in advance,
Forum Shah

Similar Messages

  • Report for open order and shipped qty  summary

    Dear Folks,
               Can any one please help me.
    Report for open order summary Vs shipped quantity
    what are the related programs to it.
    throw some light on it.

    >
    arpita b wrote:
    > Dear rohit
    >    
    >     Iam asking about any report which compares or give details of open order vs shipped qty.
    >
    > Any sis report is available for this?
    Hi Arpita,
    There is no such sis report available. You will have to configure and create two seperate reports and do the comparison.
    If you want, I will send you the list of all T.codes used to generate reports in SD.
    Revert back to me if you need the same.
    Regards,
    Swapna D.

  • Report for open orders and amount of product confirmed

    Hi All,
    Can some one give me an idea on a report which shows open orders and also shows amount of product confirmed against these open orders?
    Thanks,
    Neelima.

    Hi Veni,
    Incomplete order are the order's in which some data is missing so that particular order can't be further processed, that is what you could check through "Incompletion Log". Whereas Open orders are the orders which are open for further processing viz. deliver billing(but open order is a complete order i.e. no data missing).
    Check this program:
    *& Report ZGM_OPENPO *
    REPORT ZGM_OPENPO NO STANDARD PAGE HEADING LINE-SIZE 132 LINE-COUNT 36(2).
    TABLES: t001w, "Plants/Branches
    ekko, "Purchasing Document Header
    ekpo, "Purchasing Document Item
    marc, "Plant Data for Material
    mara. "General Material Data
    DATA:
    BEGIN OF itab OCCURS 0,
    matnr LIKE marc-matnr,
    werks LIKE marc-werks,
    beskz LIKE marc-beskz,
    mmsta LIKE marc-mmsta,
    END OF itab.
    DATA: BEGIN OF iekpo OCCURS 0,
    ebeln LIKE ekpo-ebeln,
    menge LIKE ekpo-menge,
    aedat LIKE ekpo-aedat,
    wemng LIKE eket-wemng,
    END OF iekpo.
    DATA: BEGIN OF iekko OCCURS 0,
    ebeln LIKE ekko-ebeln,
    lifnr LIKE ekko-lifnr,
    bedat LIKE ekko-bedat,
    ekgrp LIKE ekko-ekgrp,
    END OF iekko.
    selection-screen:begin of block b1 with frame title text001.
    SELECT-OPTIONS werks FOR ekpo-werks OBLIGATORY.
    SELECT-OPTIONS matnr FOR ekpo-matnr.
    SELECT-OPTIONS beskz FOR marc-beskz.
    SELECT-OPTIONS bsart FOR ekko-bsart.
    selection-screen:end of block b1.
    INITIALIZATION.
    AT SELECTION-SCREEN ON werks. "Validate for werks
    SELECT SINGLE * FROM t001w WHERE werks IN werks.
    IF sy-subrc 0. MESSAGE e429(mo). ENDIF.
    AT SELECTION-SCREEN ON matnr.
    SELECT SINGLE * FROM mara WHERE matnr IN matnr.
    IF sy-subrc 0. MESSAGE e429(mo).ENDIF.
    START-OF-SELECTION.
    SELECT * FROM marc INTO CORRESPONDING FIELDS OF TABLE itab WHERE werks IN werks AND beskz IN beskz AND
    matnr IN matnr.
    SELECT ebeln FROM ekpo INTO CORRESPONDING FIELDS OF TABLE iekpo
    FOR ALL ENTRIES IN itab WHERE matnr = itab-matnr AND loekz EQ space.
    SELECT ebeln lifnr bedat ekgrp FROM ekko INTO CORRESPONDING FIELDS OF
    TABLE iekko
    FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln AND bsart IN bsart.
    SELECT ebeln menge aedat FROM ekpo INTO CORRESPONDING FIELDS OF iekpo
    FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln. MODIFY iekpo INDEX sy-dbcnt.
    ENDSELECT.
    SORT iekpo BY aedat.
    DELETE ADJACENT DUPLICATES FROM iekpo COMPARING ebeln.
    SELECT wemng FROM eket INTO CORRESPONDING FIELDS OF iekpo FOR ALL ENTRIES IN iekpo WHERE ebeln = iekpo-ebeln.
    MODIFY iekpo INDEX sy-dbcnt.
    ENDSELECT.
    END-OF-SELECTION.
    DATA : file_name TYPE string.
    file_name = 'c:\pay_det\open_po1.xls'.
    DATA : BEGIN OF it_join_fields OCCURS 0,
    field_name(20),
    END OF it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'ebeln'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'menge'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'aedat'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    it_join_fields-field_name = 'wemng'.
    APPEND it_join_fields.
    CLEAR it_join_fields.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    BIN_FILESIZE =
    filename = file_name
    filetype = 'ASC'
    APPEND = 'X'
    write_field_separator = 'X'
    TABLES
    data_tab = iekpo
    FIELDNAMES = it_join_fields
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT iekpo.
    IF iekpo-menge NE iekpo-wemng.
    WRITE:/4 iekpo-ebeln,21 iekpo-menge ,46 iekpo-aedat, 56 iekpo-wemng.
    ENDIF.
    ENDLOOP.
    if sy-subrc 0. write / 'no data exist for this plant'. endif.
    TOP-OF-PAGE.
    uline 1(80).
    WRITE :/ sy-vline, 20 ' OPEN purchase ORDERs report' color 5,
    80 sy-vline.
    uline 1(80).
    WRITE:/ sy-vline , 4 'PURSCHASE ORDER' COLOR COL_HEADING,
    20 sy-vline, 21 'ORDER QUANTITY' COLOR COL_HEADING,
    45 sy-vline, 46 'item change' color col_heading, 55 sy-vline,
    56 'RECIEVED QUANTITY' COLOR COL_HEADING, 80 sy-vline.
    uline 1(80).
    END-OF-PAGE.
    WRITE :/ 'PAGE NUMBER' ,SY-PAGNO.
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • Report for shedule vs supply and report for opening stock at back date.

    Dear All Guru,
    please can anybody reply me is there any standard report is available for
    1) Report for shedule vs supply
    2) and report for opening stock at back date.(ex- opening stock at last month 16th july or two months back on 10th may
    pl suggest if any standard report is available or how we can data for this
    Regards,
    Vimlesh

    Hi,
    To see the opening stock at a particular date use T.Code: MB5B,
    To see the scheduled quantity & delivered quantity use table EKET with the filed names MENGE & WEMNG.
    Regards,
    Prabu

  • Aging report for Open Invoice

    Hi All,
    I need to develop an Aging report for open invoice, there is no indication for open invoice or close invoice since we are using customise DS and DS from third party system. only one key flag we have is clearing date. so kindly let me know how to write the logic for this requirement.. can I use Customer exit for this? I have an Idea to do like
    first logic is
    *If Clearing date = blank than invoice is = open (by using of this logic we can get all open invoice).
    second logic
    total number of invoice = current date - document date.
    but I do not know how to implement this logic in BEx hnece kinnly advice me whether this logic can be work or suggest with different solution ples..
    Regards,

    hi,
    You can  check few default PO reports wid proper paramater in it
    or
    Can check table EKBE
    or
    Check PO history in the PO doc
    Or
    Check the ME80FN
    Regards
    Priyanka.P

  • Report for open process orders

    Dear SAP experts,
    As the period of the process order from open to close is not short, will take 1 or 2 months in our business case, so we want to find a report which can get the information just like the output of KSPP(for planned orders) .
    I tried to analysis the logic of program KSPP, and it seems the function modules based on the planned orders only.
    Is there any way to get the similar report for open process orders?
    Many Thanks,
    Lisa Yao

    Is there any clues?

  • Report for Open Inboin Deliveries

    Hi
    I would like to have report for Open Inbound Deliveries. for which NO GRN is made
    Pl update ASAP
    Manoj

    Hi,
    Goto transaction VL33n and in the dropdown menu for Inbound deliveries select "not posted for GR" and enter your selection parameters there.
    I hope this helps.
    Regards,
    Vinod Kapote.

  • Standard  report(for open PO order items) with estimated Delivery dates

    hi friends
    i would like to know if there is any standard  report(for open PO order items) with estimated Delivery dates on it.
    thanks
    alahari

    ME2M (by material)
    ME2L (by vendor)
    ME2N (by number)
    Use selection parameter WE101 for open GR
    and scope of list EINT (scheduling lines)

  • Tcode for Open POs and Requisition Material type

    hi,
    Can anyone assist me with the Tcode for displaying Open POs and Open Requisition showing Material type field in the report or an alternative way to get it. Thanks.

    Hi,
    For Open POs
    Got to ME2N
    select scope of list as "BEST" and selection parameters as "We101"
    For Open PR change scope of list to "BANF"
    Get the materials for Open POs and pass them in table "MARA"
    select fields Material Type "MTART" and Material Group "MATKL"
    Execute to get the desired report
    Regards,
    Uzair
    Edited by: Mohd Uzair Hussain on Jan 13, 2010 8:33 PM

  • Report for daily production and daily sales quantities

    Can you Please any body let me know what fields and tables should I pick to generate a report for sales qty and production qty for a material on daily basis. we are using PP PI

    Hi,
    You can use table MSEG for that purpose. Try BUDAT-MKPF as one of the selection parameters and use
    MBLNR-MKPF = MBLNR-MSEG
    MJHAR-MKPF = MJHAR-MSEG
    Sort the results in ERFMG-MSEG and ERFME-MSEG using
    BWART-MSEG = 101 minus 102 (for production)
    SOBKS-MSEG = E
    BWART-MSEG = 601 minus 602 (for sales).
    Above stuff might be useful to you for your development requirement provided you are having Sales Order specific production.
    Thanks & Regards,
    Abu Arbab A

  • Report for Open PR..

    In PR i have 3 materials....
    I did Po for 1 material only...
    Where i can get the report for Open PR..
    Tx
    Uts

    check the inputs you are populating before executing the ME5A reports,
    try with the several checks given in the input selection screen, like open PR, partially odered PR etc
    You will get the desired result i am sure about that...
    Regards
    Sujoy

  • Report for Asset number and its Purahcse order number

    Hello Friends,
    Please give me details of report for Asset number and its Purchase order number .
    Regards
    Nilesh Vakil

    hi,
    GO to ME2N...
    use SHIFT + F4..
    there check for the acc. assign cata. field and input the asset  and execute..
    Regards
    Priyanka.P

  • Standard report for cheq incomming and chq ougoing.

    Dear All,
    urgent one please.
    Is any standard report for cheque incomming and cheque ougoing with document wise.
    if so pls suggest me.
    awaiting your valuable suggestions.
    Thanks & Regards,
    satishkumar.m

    Hi,
    my doubt is in.tr.code fb02 and after putting doc type bp(bank payables) after executing that i will get screen showing details ie., doc no., year, type do.date and posting date.
    my client wants outgoing cheq details ie., to who we have issued the cheques with cheque no, date, and bank.
    if we go to drilldown report of fb03 we r getting but each and every entry they cant go and drilldown it..
    we cheked in fchn but that requirement wont suit to my client..
    can any one suggest me.
    thanks & regards,
    satishkumar.m

  • Drill Down reports for Profit Centers and Segments

    Hello Experts
    I would like to down load the "Drill down reports for profit center and segments". I have found standard SAP documentation through (http://help.sap.com/erp2005_ehp_05/helpdata/EN/46/f6fc4e7a7569b5e10000000a114a6b/frameset.htm ).
    As per the given guidelines, i have beening trying to down load from client 000, the spool request is showing finished (with out any error and in one / two seconds) .. but the reports are appearining in SAP Easy Acess.
    I have checked with Basis team, whethere i have restrictions with my userid. Even with Basis id also, we are being unable to activate these reports.
    Does it required any configuration / licence issues before i need to lookinto before download?
    Kindly revert
    Regards
    Anil Kumar

    Hello Experts
    This is solved. However, i am mentioning the solution here for further references
    Before downloading the drill down reports, we need to activate the business funciton "FIN_GL_CI_1" through T.Code SFW5
    Regards
    Anilkumar

  • Where can i activate a delivery report for my sms and mms?

    where can i activate a delivery report for my sms and mms?
    I dont seem to find it on my Iphone 5.
    Its unacceptable!
    Also a sound for missed calls seems to be missing to !!!
    Unacceptable!
    Can somebody help me please?
    [email protected]

    Unbelieveble and unacceptable.
    Every simple phone has a delivery report....
    Big dissapointment
    Iphone never again.
    thanks anyway

Maybe you are looking for

  • Uploading a file to server taking way too long

    When I upload a modified file to the server by selecting it in Local Files selecting Synchronize Dreamweaver reports as it goes through all kinds of directories on my server that do not contain this file. Why can't Dreamweaver just write the file to

  • Syncing multiple iPhones to new macbook pro

    My wife and I both have iPhones which we sync to our work computers. We have both purchased different apps, and music, but also have a lot of the same music in each of our iTunes. I just bought a new macbook pro – which we are both going to sync to f

  • WL 7.x, JDK 1.4, SSL

    Hello, Given that: (1) WL will not be certified for use with JDK 1.4 until the Olympic release (otherwise known as version 8.1, hopefully available sometime early this summer if we're lucky?). (2) Our application requires JDK 1.4 functionality (prefe

  • Nested sites in site manager

    I tried to see if I could have nested sites in the site manager and it looks like that works. c:/www/site1/webroot < ------ (root for first site, inner site) c:/www/site1 <--------------------(root for second site, outer site) (I will need this to wo

  • I waninstall developer2000 & Oracle 8i in same machine

    I want to install developer2000 on the machine in which oracle 8i enterprise server is already installed. Until the d2k is installed, the oracle 8i database works fine. But the moment i install d2k on same machine it gives error "The database Configu