Outstanding open sales order (To be Invoiced Amt.)

Dear Experts,
I need to display Outstanding open sales order items only with its balanced quantity to be invoiced and amount.
I am calculating Open SO Line item Qty as
Open Qty = Sales Order line item Qty(VBAK) - Invoiced line item Qty(VBRP).
And I am getting Conditions from KONV Table by passing Condition number and Line Item no. Here they are maintaining conditions as some time 10$ per 1 PC and sometime  150$ per 10 PC....I.e Based on Condition value...
How can I Get Amount to be invoiced for SO line Item????
Regards,
Rayudu

Hi,
Two ways to look at
1) As suggested by others, Billing due list will give you the net amount to be billed for an order/delivery
2) If you are in the process of writing a report to get item details, you will have to compare VBAP and VBRK.
It will be tedious if you take the route of adding values of each condition as your pricing procedure may have multiple conditions. The best way is to use (VBAP-NETWR - VBRK-NETWR) to get the balance dollar value.
Raj
Reward points if helpful

Similar Messages

  • Table For Open Sales Order And Customer Invoices

    Dear Gurus,
    Are there any table to know open Sales orders and pending invoices for Customers?
    Wishes,
    Abhishek

    Hi,
    Go to T code VA05 and select open sales order radio button. Put other input parameters like date range or sold to . Execute you shal get list of all open sales order.
    For pending invoices go to T code VL04 and you get list of all billing not yet created even though GI is done.
    These are standard SAP functionality and can be used rather than looking in a table level.
    Regards
    Vivek

  • SQL Queries for open sales orders with no invoice.

    Hello all!
    Is there a way to make a query to find out if there are any uninvoiced sales orders older than 5 days?  I am having difficulty figuring out how the invoice is linked to the sales order.
    I am more familiar with excel than SQL but I'm guessing it will be similar to the following:
    SELECT * FROM ORDR WHERE today's date - posting date>5 AND (not sure what to check here for the invoice having been created)
    **Note: my syntax is of course not exactly correct, this is just to give you an idea of what I'm looking for
    Has anyone had to do this before or know how it would be done?  It would be very useful for me.
    Thanks!
    Mike

    Hi Mike
    The document link is built on row level so the RDR1 should be used instead of ORDR to server your propose.
    You could use this query to get all the lines do not link to a invoice.
    *targettype 13 refers to target document invoice
    select t0.docentry,t0.docdate,t0.linenum,t0.itemcode,t0.quantity,t0.price,t0.linetotal
    from rdr1 t0 join ordr t1 on t0.docentry= t1.docentry
    where t0.trgetentry is null and t0.DocDate < dateadd("d",-5, getdate()) and t1.docstatus = 'O'
    or just use this query instead to find those lines do not link to any document
    select t0.docentry,t0.docdate,t0.linenum,t0.itemcode,t0.quantity,t0.price,t0.linetotal
    from rdr1 t0 join ordr t1 on t0.docentry= t1.docentry
    where t0.targettype !='13' and t0.DocDate < dateadd("d",-5, getdate()) and t1.docstatus = 'O'
    Please modify the code according to your needs.
    Regards,
    Syn Qin
    SAP Business One Forums Team
    Edited by: Syn Qin on Aug 11, 2008 5:20 AM

  • Open sales order, Invoice.......

    Hi
      Is there any standard report where i can see all the open order for sales organisation level. similarly i want see all the invoice created on a particular month at sales organisation level.
    I know we can see at VA05 Open sales orders but this is for Customer or material specific..
    VF05 For payer and material Specific... here i cannot see for sales organisation level..
    I want this report at sales organisation level.. can any body guide me in this regard.
    Regards
    MBS

    Hi
    One way of getting the open sales order report at sales org level is the "Backorder Report" - try using transaction V_RA
    For Billing info at sales org level, an easy way is to get the information at the table level - please use transaction SE16 and table VBRK to get the relevant information
    Reward points if this helps you
    Rgds

  • Creating Query to show items from open sales orders with a/p invoice

    Hi experts,
    I am trying to create a query that will show what items/quantities are still in open sales orders that can now be filled by an incoming shipment of goods, processed through the a/p invoice.
    This needs to be done using subqueries, which I have no experience with.  I am trying to do this using the ORDR and RDR1 tables to show the open items from the sales orders and the OPOR and POR1 tables to show items just received in to inventory.  I would like the query to show exactly the open item's, their quantities, the posting date from the sales order and the customer name that can now be filled from the new shipment through the a/p invoice.
    I appreciate the assistance,
    Hayden (on behalf of Todd)

    Hello,
    try this
    SELECT T0.[DocDate], T1.[ItemCode], T1.[Dscription],( T1.[Quantity] - T1.[DelivrdQty]) As "Open Qty" FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry WHERE T0.[DocDueDate]  <= [%0]And ( T1.[Quantity] - T1.[DelivrdQty]) != 0
    Try this query in query manager.
    Thanks
    Manvendra Singh Niranjan
    Edited by: Manvendra Singh Niranjan on Jul 13, 2011 6:27 AM

  • Open sale order quantity in VA05

    hi all,
    can anyone please tell me the function module or bapi or Table to find out open sales order quantity coming in VA05.
    regards.

    First of all define what is open , is it created but notdelivered , or delivered but not invoiced.
    The table VBUP has flags for statuses eg
    A     Not yet processed
    B     Partially processed
    C     Completely processed
    A for open , B for partial C for complete , so by checking this table you will find which are actually delivered or invoiced completely.
    Tcode V.02 gives u this option.

  • Deletion of open sales orders

    Dear all,
    we want to delete open sales orders .I searched forum unable to do .Please guide me.
    Regards,
    Suresh

    hi
    You can  delete the sales order using transaction VA02, but there should not be any subsequent document is created against it. Please let me know the error message you are still getting unable to delete so.
    Deletion /cancellation can only happen even if the subsequent documents are NOT created. After cancelling the invoice and deleting the delivery document, we can set the reason for rejection at the Sales Order Header Level.
    Steps:
    1. Cancel the invoice through T code VF11
    2. Reverse the Goods Issue using VL09, turn the pick quantity u2018zerou2019 in the delivery document
    3. Delete the delivery document using VL02n.
    4. Finally set the reason for rejection at the Sales Order Header Level. (So Bala, just check the SO you want to delete ever had any subsequent document? )
    Note: An Invoice cannot be deleted but canceled. It can only be canceled with (VF11) only if the relevant accounting document is not generated. Generation of accounting document means the value is posted into accounts and G/L accounts are hit.
    SAP FI department needs to reverse the accounting doc on a real-time scenario. Only after the accounting doc is reversed invoice can be canceled. Tax documents generated through the Invoice (Tax is maintained on a separate account) also need to be reversed but this is a part of FI so an SD consultant just needs to request the FICO guy to do the reversal
    transaction MASS or VA05 you should be able to set the reason for rejection

  • List of Open Sales Orders

    Hi All,
            I  am in need of a report to display  list of open Sales orders, Requirement Date or Requested Delivery Date and Requirement Qty for given Materials (Multiple Input) and Plant.
    Please guide me, Is there any Standard Report Available to display the above information except VA05.
                                                            Or else
    Please guide me, the list of tables to fetch those information.

    Did you try in VA05N ?
    How ever , you will not get the requirement date oir requested delivery date here .You can get only Document date or creation date .
    I suggest you to try to build a report with the below SAP field and data element  :
           VBELN       VBAK-VBELN,     "SALES  ORDER
           POSNR       VBAP-POSNR,     "ITEM
           MATKL       VBAP-MATKL,     "Material Group
           AUART       VBAK-AUART,     "ORDER TYPE
           AUDAT       VBAK-AUDAT,     "ORDER DATE
           BSTNK       VBAK-BSTNK,     "CUSTOMER PO NO.
           BSTDK       VBAK-BSTDK,     "CUSTOMER PO DATE
           WAERK       VBAK-WAERK,     "Currency
           PSTYV       VBAP-PSTYV,     "Sales document item category
           ZMENG       VBAP-ZMENG,     "TARGET QTY.
           KWMENG      VBAP-KWMENG,    "SO QTY
           OPENQTY     VBAP-KWMENG,    "OPEN QTY
           LFIMG       LIPS-LFIMG,     "DELIVERY QTY
           LFIMG1      LIPS-LFIMG,
           SHKZG       VBRP-SHKZG,
           NETPR       VBAP-NETPR,     "UNIT PRICE
           NETWR       VBAP-NETWR,     "NET VALUE
           BALWR       VBAP-NETWR,     "NET VALUE FOR BALANCE QTY.
           BALLOC      VBAP-NETWR,     "BALANCE VALUE IN LOCAL CURRENCY
           KURSK       VBKD-KURSK,     "EXCHANGE RATE
           FPLNR       VBKD-FPLNR,     "BILLING PLAN NO.
           FKSAF       FPLT-FKSAF,     "BILLING STATUS
           LOCVAL      VBAP-NETWR,     "AMT. IN LOCAL CURRENCY
           KUNNR       VBAK-KUNNR,     "CUSTOMER
           VKORG       VBAK-VKORG,     "SALES ORG.
           VKBUR       VBAK-VKBUR,     "SALES OFF.
           VDATU       VBAK-VDATU,     "Req.Del.Date  
           MATNR       MARA-MATNR,     "MATERIAL NO
           ARKTX       VBAP-ARKTX,     "MATERIAL DESC
           WERKS       VBAP-WERKS,     "PLANT
           LFSTA       VBUP-LFSTA,     "Item Delivery Status
           FKARA       TVAK-FKARA,
           GBSTA       VBUP-GBSTA,     "Overall Status
           FKSAA       VBUP-FKSAA,     "Item billing statuS
           NAME1       KNA1-NAME1,     "CUSTOMER NAME
           VBTYP       VBAK-VBTYP,     "Doc. Category
           LFARV       TVAK-LFARV,     "Delivery type
           LIFNR       LFA1-LIFNR,     "Vendor Number
           SPSTG       VBUK-SPSTG,     "Overall blkd status
           COST        KONV-KWERT,     "COST
           DISC        KONV-KBETR,     "DISCOUNT
           SPRICE      VBAP-NETWR,     "SELLING PRICE
    The above field are similiar kind of report .But I feel you have to keep two opetion one will be Open Sales Order and other All the sales order .Discuss with your abaper in this regard in line with VA05N and VA05
    Hope this will be useful
    Regards
    JH
    Edited by: Jiaul Haque on Jun 20, 2010 9:07 AM

  • Uploading Open Sales Orders

    Dear All,
    Can some one kindly let me know how to upload open sales orders, open deliveries , open Purchase orders and open invoices.
    Your early replies are very much appreciated.
    Rgds,
    Ravi

    Hello Ravi,
    Use LSMW for uploading the data involving open sales orders, open deliveries , open Purchase orders and open invoices.
    Here are the steps which you can follow :
    1. Define the source structure as well as the field of the legacy system.
    2. Perform the Cleansing activity to eliminate the unwanted data if present.
    3. Extract the Data from the legacy system.
    4. Field and structure Mapping of the Target (SAP system) is be done.
    5. Start the process of Uploading.
    6. Correct if any discrepancies that comes up due system performance issue.
    Regards,
    SARTHAK

  • Excluding open sales order & Deliveries in Credit management

    Hi All,
           I dont want to update all the open sales orders and deliveries in sales value in FD32. For this I have done the configuration and it is working fine. But after the configuration, system will delete the existing records in S066 & S067 and will not create records further even we create new sale order, del & inv.
    Now I want to know wether there will be any problem if the records in S066 & S067 were deleted and will not be created further. And I also want to know wether the data in these infostructures (S066 & S067) were used anywhere in the system or not?
    Kindly help me out in this.
    Ratna

    Hi,
        My requirement is while doing credit check system should consider only open invoices, not sales order or deliveries. For this I did the following.
        After running the program all my records in S066 & S067 will be deleted as I have deleted the update group under credit control area. Giving blank in update group under credit control area, will not update any open sales values or deliveries in FD32 for freshly created documents. But already there will be some existing open orders & del in the system which will show as sales value in FD32. This value will not be cleared for ever as there was no update group. So I want to clear these sales value in FD32. So I will run the program after deleting the update group and so the system will delete all the records in S066 & S067 and sales value will be zero in FD32 which is as per requirement.
    Now I want to know will there be any problem by deleting this records. Wethere these records are anywhere used in the system other than FD32???
    Kindly update
    Ratna

  • Open Sales Order Balance incorret

    Dear All,
    When you copy a Sales Order to an AR-Invoice and then increase the line quantity on the AR Invoice, the Open Sales Order Balance on the Business Partner Master Data shows a negative amount.
    E.G.
    Sales Order 10 Chairs @ R1000 = 10000 (Open Sales Order balance in bp master = 10000)
    Copy to AR Invoice
    AR Invoice 12 chairs @ R1000 = 12000 (Open Sales Order balance in BP maser = -2000)
    When subsequent sales orders are added their is a  - 2000 diff between the Sales order balance and actual open sales orders.
    Can you please tel me how to correct this.
    Best regards
    Erika

    Hi,
    Please run the Query from the Note no. : 999124 and check whether the item in the sales order appears in the results obtained.
    If yes then you need to log a support ticket to get your issue investigated.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Tables related for open sales orders

    Hi all,
    I need to fetch the list of open sales orders
    based on the range of customers.  I have seen va05
    but in that only single customer
    is allowed. I want for range of customers based on that list of open
    sales orders.
    can any tell me for this requirement is any std tcode available if not
    what tables  I have to use to fetch data.
    any suggestion will be rewarded.

    Hi ,
      can you check these tables in sales
    Name Description Uses
    LIKP Shipped Lines header
    LIPS Shipped Lines detail
    VBAK Order header Every order (unless archiving)
    VBAP Table fields Every line item (unless archiving)
    <b>VBBE</b> Open sales order line items Great file, but be careful. Contents don't reflect orders that do not affect purchasing (go figure).
    VBEP Schedule line item
    VBFA Document flow Let's you move from order to shipping document to invoice.
    VBUK Order status
    VBUP Line item detail status
    VBFK Invoicing header
    VBFP Invoicing detail
    <b>Reward pts if found usefull :)</b>
    regards
    Sathish

  • Need logic for calculate the balance quantity in open sales order

    hi all
    i need logic to calcuclate the balance quantity in open sales order ,
    where i am using VBAK header and VBAP item , and VBFA for document flow tables
    i need to have the balance quantity , for the open sales order
    especially taking with respect to  VBFA-VBTYP_N = M for invoice creation and N for canellation
    any one please help me

    thank you but i am clear abt it
    will you please anyother way to calucaluate the logic ,
    and i need to populate in bukets also for the terms of 5 years
    Edited by: sridhar loganathan on Nov 25, 2008 6:43 AM

  • Open Sales Orders Backlog Report

    Hi All: I have been asked to create Backlog reports for Open Sales Orders and the revenue amounts for the next 15days, one month, 2 months, 3 months 6 months etc etc. Does anyone know of a standard report that covers that and the business content and cues that go with it?
    Thanks in advance
    Bobby

    I haven't seen any standard content for it, with my client, we actually developed the open order report from Item extractor and status extractor. And compare the created on date to the system data to see how long it has been opened for and put it in different buckets.
    Hopes that help.
    thanks.
    Wond.

  • Logic for Open Sales order qty

    What should be the logic given to determine "open sales order qty" during designing a report.
    Note the criterias are as under:
    1) Open sales order qty is the confirmed qty less the delivery qty.
    2) The delivery qty should be delivery order qty (The delivery should not necessarily be pick, packed & PGI)

    sorry it doesn't work for services, since they do not create requirements.
    in this case you can use VBFA table, subracting all the delivered quantities VBFA-RFMNG with VBFA-VBTYP_N = J and VBFA-VBELV/VBFA-POSNV = to your order/item from the ordered quantities
    hope  this help you.
    Roberto

Maybe you are looking for

  • BI 7.0 Infoset  Document

    Hi Expert, Could anyone can provide good documentation or material related to SAP BI infoset. Thanks, Saran

  • Function module to find start date and end date of fiscal year for company

    Hi, Is there any function module exist which will provide me start date and end date of fiscal year for company code and fiscal year provided? Thanks & Regards, Parag

  • Scheduling infocube activation in background

    It is taking too long and timeout when I tried to activate a SAP delivered InfoCube.  Can this be scheduled in background job?

  • HT4061 Can't update to iOS 6

    I have no way to find my serial number: I'm unable to connect my iPhone to iTunes, due to some faulty USB ports on my laptop. There is nothing I can do: my phone is forcing me to update! What do I do?

  • Another Error downloading

    Today when I try to export any file ,final cut server shows me this: Error downloading. /Users/yangwz/Desktop/中国元素镜头/时光机器-雪山2.mov (No such file or directory) but the original 雪山2.mov file exists in the hard disk and can be found. I restored the lates