Report to show open orders and valuation type

Hi,
Is there a report in SAP that shows the open orders and the valuation type of the materials in those orders?
thanks

Hi jay,
What is the definition of Open orders according to your company?
Is it Sales orders created but not delivered?  or
Is it Delivery created for the Sales order but not done PGI?  or
Is it Sales orders but not billed?
Accordingly you must decide.  Just VA05 will give list of orders where you can take from the Status updation whether it is delivered or not.  But apart from that, if you need any report relating to Open orders, you need to develop a Z report which will help your company.  Just ask your business user how he wants.  Based on that you can decide.
Thanks and regards.
Augustine Ponraj

Similar Messages

  • Report showing Open Orders and Open deliveries

    Hi all,
    i need a report that shows open orders - whether with subsequent delivery or not.
    Is there such a report?
    regards
    RM

    Hi,
    Goto the T.Code VA05/VA05n T.Code.In this T.Code select the option as "Open orders".
    Execute.
    It will give you all the orders that are open means doesn't have any subsequent orders.
    Goto the T.Code "VF04".
    In this select the check box "Delivery related".
    Execute.
    It gives you all the orders which have delivery but doesn't have any billing document.
    Regards,
    Krishna.

  • Report to show open PO and all AP Invoices

    Hi all!
    At this moment I have two reports that my customer asked.
    One shows all open PO by cost center and project and goes like this:
    SELECT T2.PrjName, T1.Project, T0.OcrCode 'Centro de custo', sum(t0.LineTotal) 'Total', T1.Docstatus
    from POR1 t0
    INNER JOIN OPOR T1 ON T1.DocEntry = T0.DocEntry
    INNER JOIN OPRJ T2 ON T2.PrjCode = T1.Project where (T1.Project > '0' or T0.OcrCode > '0') and t1.Docdate > '[%0]' and t1.docstatus='o'
    GROUP BY T2.Prjname, T0.OcrCode, T1.Project
    The other shows all AP invoices (open and close) by cost center and project:
    SELECT T2.PrjName, T1.Project, T0.OcrCode 'Centro de custo', sum(t0.LineTotal) 'Total', T1.Docstatus
    from POR1 t0
    INNER JOIN OPOR T1 ON T1.DocEntry = T0.DocEntry
    INNER JOIN OPRJ T2 ON T2.PrjCode = T1.Project where (T1.Project > '0' or T0.OcrCode > '0') and t1.Docdate > '[%0]' and t1.docstatus='o'
    GROUP BY T2.Prjname, T0.OcrCode, T1.Project
    Now what the customer wants is one report showing this information, so he can see the totals of open PO and all invoices by project. He wants the docdate too. Is this possible? And showing the totals by project or by cost center.
    Thank you all.
    Kind regards,
    Pedro Santos

    Hello Gordon,
    Thank you for your answer.
    You're right, the second query was not the right one.
    Here it is, the query with the AP invoices by project/cost center:
    SELECT T2.PrjName, T1.Project, T0.OcrCode 'Centro de custo', sum(t0.LineTotal) 'Total'
    from PCH1 T0
    INNER JOIN OPCH T1 ON T1.DocEntry = T0.DocEntry
    INNER JOIN OPRJ T2 ON T2.PrjCode = T1.Project where (T1.Project > '0' or T0.OcrCode > '0') and t1.Docdate > '[%0]'
    GROUP BY T2.Prjname, T0.OcrCode, T1.Project
    About the total and the docdate on the same report, I had a colleague helping me with that and he made it. It's not perfect but it serves the customer's needs. If you want I can show you the query.
    Regards,.
    Pedro Santos

  • 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

  • Open SD orders and partner type?

    Hi,
    I need to extract 'open sd orders' and 'partner type'  i.e all partner types  and not only  just SP or  SH
    The transaction  VA05 does no allow  all partner functions - and I need to sort by all types
    is there another way?
    If I want to use SQVI . . . what tables can I join?
    Thanks,
    SM

    IMG --> Sales and Distribution --> Sales --> Lists --> Set Updating of Partner Index.  Here, maintain the following values.
    Transaction Group      Partner Function
              0                             SP     
              0                             SH
              0                             PY
              0                             BP
    Now you can generate VA05 based on any partner functions.
    thanks
    G. Lakshmipathi

  • Do we have standard report to show sale order stock with amount?

    Do we have standard report to show sale order stock with amount?
    I try to use MB5B and MBBS but they don't show value.
    MB5B show only qty
    MBBS no any report.
    Please kindly help.
    Thank you very much.

    Okay Thank you very much for your suggestion.
    I think I have to create a new ZProgram. T_T

  • Open order and Open delivery in Credit Exposure FD32

    Hello Guys,
    I am now trying to include Open order and Open delivery values in Credit Exposure FD32. I have configured the following settings, but the Open order and Open delivery values still cannot show in Sales value under Credit Exposure FD32. Can anyone here advise me what i missed?
    1) In OVA8 --> 01 Credit Group for Sales Order, I have selected Static Checks and includes Open Orders and Open deliveries.
    2) In V/08 --> Pricing Procedure --> Control , I also put "A" in PR00 Sub Total field.
    3) In OB45 --> Credit Control Area, I put Update = 000012.
    4) In OMO1 --> S066 , Period Split = Day and Updating = "Synchronous update (1)".
    Thank you,
    Benny

    Hello Mrunal and GSL, 
    Thanks for your paticipation. I found my configurations are correct. I just haven't trigger the update program to update the S066 (Sales value in FD32). To trigger the update program I need to try to create delivery. If I just create a Sales Order and press Save, the PR00 value will not go to S066.
    Hope that can help someone else .
    Benny

  • Do we have the report to show PO Price and invoice actual price

    Dear Guru,
    I'm finding the report to show PO Price and Actual Price after invoice.
    The actual price is mean that we may have other debit/credit price as subsequent posting in MIRO.
    So we would like to compare PO price and actual Price.
    Please kindly advice.
    Thank you very much.
    Best Regards,
    Saiya

    Hi,
    Please check ME81N --> Order value analysis.
    SAM
    Edited by: Saminathan Gopalan on Jul 22, 2010 6:05 PM

  • "Batch NO SALEAB. and valuation type 1ST CHOICE are not the same"

    Hi MM guru,
    Please help me with the error message - "Batch NO SALEAB. and valuation type 1ST CHOICE are not the same" encountered during MB1b transaction.
    Thanks in advance,
    Iram

    Hello Amuthan,
    I'm using mov type 311 and the material is not batch managed. I've entered the supplying & receiving batch and then error "Batch NO SALEAB. and valuation type 1ST CHOICE are not the same" was encountered, I found out that in table MCHA that the batch & valuation type for this material is not the same thats why its showing the error. Can you please guide me on how to maintain the data in table MCHA? What configuration we need to set?
    Thanks in advance,
    Iram

  • BATCH and VALUATION TYPE

    Dear All,
    Can anyone, please explain me clearly the difference between BATCH and VALUATION TYPE in MIGO and PO screen?
    What is the link between them ? pls explain in detail....
    Edited by: Raju on Nov 17, 2008 8:02 AM

    Hi,
    There's a link between both which is the indicator "Valuation type is set automatically". It can be set at the global or local (plant) valuation category.
    When you set this indicator, it means that each batch itself represents a valuation type (individual batch valuation). In other words, a valuation record is created automatically for each batch at Goods Receipt.
    -Edited-
    Example scenario:
    I activated batch management at plant level for material A and also activated split valuation. For this material, I produced the first batch (100pieces per batch) with certain characteristics. This batch is valuated at $100 per piece. I do a Goods Receipt against Production Order.
    Then my next production batch has better characteristics, so I wanted to valuate a piece slightly higher. With the indicator "Valuation type is set automatically", I can set a different price for this second batch during Goods Receipt from production (because a different valuation type is created for this).
    So I make use of batch management to manage my different sets of 100 pieces due to the slight different characteristics during each production run. I also make use of split valuation and the above indicator to valuate each batch separately.
    Hope this helps.
    Thanks
    Edited by: Han Lun Chan on Nov 17, 2008 9:59 AM

  • Calculation of open orders and shipped not billed orders amount

    Hi All,
    I have  a  requirement to arrive at the values of ‘Open Order’ and ‘Shipped not billed  ’ . 
    This is an interface program and the output will be sent to a target server.
    Input :  Company code,  Customer Code , Document date.
    Output Fields are:
    Customer Code
    Sum of all open orders value
    Sum of all shipped not billed orders  value
    To give an example
    A Customer has 50  orders and  the number of line items are  200 .
    Overall  order amount for 200 line items is 10,000.
    70 line items have been delivered (amounting to 5,000) and
    30 line items among the 70 delivered have been invoiced. (amounting to 3,000).
    I need to know the best way to get to:
    (1) Total "Open order" amount for the customer which is 5,000 in this example.
    (2) Total "Shipped not billed" amount for the customer which is 2,000 in this example.
    (3) Total "Invoiced" amount for the customer which is 3,000 in this example.
    We are looking for the tables to access and the sequence of access
    Since the interface is to be executed more than once in a day ,
    the execution time should be optimum
    Please suggest
    Thanks
    Venu

    check table VBUK
    GBSTK ne 'C'      "over all processing status
    and FKSTK ne 'C'  "open billing orders
    at header level
    and
    for item level check
    Vbup tbale
    make a join on Vbrk and VBuk in the where condition in addition to the selection criteria add the above two conditions and check the same.
    once you have all the open orders enable the items and do the subtotalling and grand total on the item loop.
    regards,
    vijay

  • Generate report to show all users and groups in Shared Services in EPM 11x

    Hi,
    Is there any way to generate a report (like a migration report or job status report) which can be generated through workspace/shared services 11.1.1.3 so that my admin can look at all the users and groups created. Something that I can view and probably print out? Any suggestions?
    ~Adeeba

    Yes, I knew this one. This basically shows me the users and groups assigned specific provision access. Is there any way to view a report that shows which users and groups have access to dimensions of an individual planning application?
    ~Adeeba

  • How to get internal order and activity type other than from BSEG

    We want the Internal order and activity type fields. From BSEG, it is taking a long time, and it hangs.
    Is there any other table we can get these values from?
    Our query is this:
    select bukrs "Company code
    gjahr "Fiscal year
    belnr "Document no.
    buzei "Document Item no.
    aufnr "Internal order
    lstar "Activity type
    from bseg
    into table gt_add_info
    for all entries in gt_gl_detail
    where bukrs = gt_gl_detail-rbukrs"Comcode from G/L acct detail
    and buzei = gt_gl_detail-buzei "Doc item no. from G/L acct detail
    and belnr = gt_gl_detail-belnr "Doc no. G/L acct detail
    and gjahr = gt_gl_detail-gjahr."Fiscal yea
    Can advise please how to make it faster. My internal table (GT_GL_DETAIL) has over 100000 records. ? thanks.

    I did a SQL trace, and saw that tables CSLA, CSSL, COKL and COKA are being hit with the values I entered inthe Activity type in transaction FB50.
    Still not clear but where it gets stored. If in any of these tables, how do I get the object key?

  • Fields in MIGO - BATCH and Valuation Type

    Hi all,
    I would like to know the meaning of the following fields in MIGO.
    BATCH - Charg
    Valuation Type - Bwtar
    Which is the impact of each field?
    Should they have the same value in TRA MIGO?
    Which means that only the BATCH field is entered and the Valuation Type empty?
    Thanks you very much!!

    valuation type  comes into the game If a material is subject to split valuation.
    you can for example split the valuation based on origin, e.g. internal produced and external procured.
    this is more a financial thing.
    the batch is the level to segragate the stock of a material. e.g. each GR can be a new batch. so you can manage the stock by FIFO rules and by shelf life.  this is a logistics thing.
    Both can be used on their own, or together.
    if you want manage your materials by batches, but dont need split valuation, then you only have to take care about batch number, and the valuation type field in the batch record stays empty.
    if you manage material by batch and you use split valuation, then the split valuation type is a mandatory field in the batch record and you may have to enter batch and valuation type, but usually the valution type is defaulted from customizing.
    The tricky part is if you only use split valuation, because then the valuation type becomes the batch number. this is sometimes a bit confusing.

  • Is there any table for relation between batch number and valuation type ?

    hi,
    I would like to know where i can find relation between batch number and valuation type ?
    thank you and Best regards
    Fernand

    Hello
    MCHA

Maybe you are looking for

  • Grouping Causes Text Threads to Disappear; Photo commentary with captions

    Is there a way to group picutres inside my text frames without making text threads disappear?  As soon as I select my text, photos, and jump text, the text threads disappear. Also, is there a formal way of adding text commentary to a photo?  I'd like

  • Report on perfomrances

    Hello experts i am looking for a way to get some reports such as shown in st03 transaction; i mean that i need for example to produce (scheduling an automatic job or something like this)  a table with the st03 data and transfer it on an internal web

  • FCP 3.04 Not Finding External Device? Help

    I am trying to connect my Canon GL1 to a Powerbook G3 400 with 2 firewire ports running FCP 3.04. FCP keeps telling me that there is no device found? I tried changing to different settings but nothing works. The weirdest thing is that iMovie see and

  • Pls recommend a "n" access point that plays nice with APEn. THANKS

    Good day. I wish to use my newly purchased SlingBox on the ''n" side of my g/n dual band network. So, I need to get the slingbox and my desktop, G5, presently using the APexpress 'g'. Thanks tons. P.S. The slingBox is outstanding!!!!

  • Cant turn around the Fb app to watch the news feed on the side

    I have a problem with the facebook app on my Iphone 5, i cant watch the news feed on the side only with the phone "standing" same problem when im going to post a comment or satus uppdate. It dosent turn around som i get the full keybord. And I does n