How to identify open sales orders by sales representative by due date. ?

We rely heavily on forecasting our "billing pipeline".   Billing Pipeline is defined in our organization  by:
All billings for a specified date range + (all open sales orders + deliveries)  not yet billed but due by  a specified due date = Billing Pipeline.  
The open items list by Sales Orders + Deliveries will accommodate that by the company but does not accommodate a breakdown by sales person.
I am looking for a way to generate all Sales Orders & Deliveries that are not yet billed by due date for each sales person. 
Has anyone done this in SAP core reporting or have a query to accomplish this ...?
Thanks, Dan
Prograde

This one will show you Open orders by open lines by Sales Person by Date Range
You can use the same structure for Open Deliveries. Change Ordr to Odln and RDR1 to DLN1
Regards,
M. Jenkins
SELECT T2.SlpName, T0.DocNum, T0.CardCode, T0.CardName, T0.NumAtCard as 'Cust PO', T1.ItemCode, T1.Dscription, T1.Quantity, T1.OpenQty AS 'Open', T1.Price, (T1.OpenQty * T1.Price) AS 'Total Net', T1.ShipDate FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN OSLP T2 ON T0.SlpCode = T2.SlpCode WHERE CONVERT(nchar(8), T0.DocDate, 112) >= [%0] AND  CONVERT(nchar(8), T0.DocDate, 112) <= [%1]  and  T1.LineStatus ='o' ORDER BY T2.SlpName, T0.CardName, T0.DocNum
Edited by: Inc. Cowper on Feb 4, 2009 8:39 PM

Similar Messages

  • How to pull the Sale order number(sales document) to Accounting document

    Hi Gurus,
    How to pull the sale order number to the accounting document.
    Is any configuration needed to this.
    When i run the FBL5N Repoprt ,Sale order number (Sales document) is not getting updated to accounting document.It is diplaying as blank field.
    Thanks you.

    Hi Shivaji,
    In order to display the Sales document in the customer line item report, you need to add it as a special field thorugh customizing settings.
    Path - SPRO - FA-GL Accounting - GL Accounts - Line Items - Define special fields for finding and sorting data and in that select the table BSEG-and field VBEL2 (Sales document) and save/
    This will work. hope this helsp
    regards,
    radhika

  • Sales Order / Forecasted Sale Order Report

    hi
    How to create Sales Order / Forecasted Sale Order Report.

    Hi Raju,
    Are you talking of normal sales order and in the Forecasted sale order report what are the inputs you are giving.

  • Settlement of Sale Order to Sale Order

    Dear experts
    I need help in the following scenario:
    At my client place we are doing job work for external material. All the material are supplied by the customer and our client will do the processing and send it back to customer's customer on customers request.
    To create Excise Invoice against the Customers Customer we are handling through 2 sale orders.
    First One Sale order will be created against the Customer Order and Sale price will be the selling price of Customers to Customer.
    Second Sale Order will be created for Job Work Charges for the processing the materials.
    On settling the process orders all the cost is settling to Sale Order One, Clients revenue is coming from Sale Order Two.
    Here I need to settle the First Sale Order to Second Sale Order. I have given the second sale Order number in first sale order number in Settlement rule.
    But when I settle the First sale Order all the amount it going to Price Differance Account.
    How to settle the Cost of First Sale Order to Second Sale Order?
    Regards
    Kiran A

    Dear Experts
    any advises.
    Can I go for Sale Order to Sale Order Settlement ?
    Regards
    Kiran

  • Sales order to  sales  order reference

    Hi,
    My requirement is:
    I am creating a sales order B with reference to another sales order A. And sales order A can onl be referred once. If we try to refer order A once again, it should not allow.
    How to map this.
    Regards
    Gaurav Jain

    Hi DIeter,
    Not so sure about copying to sales order to sales order without reference, but you could try using Item proposals and create a standard list of materials and that can cut out the repetition
    Regards
    Paul

  • Sales Order and Sales Item not copy over to table AFPO-KDAUF and AFPO-KDPOS

    Hi Expert,
    May I know why I run MRP and convert planned order to production order based on Sales Order, why the sales order and sales item is not copied and save in table AFPO-KDAUF and AFPO-KDPOS?
    I can see the sales order and sales item is appearing in MD04, but how is the linkage between production order and sales order/item?
    Thanks.

    Sales order No. and sales line item will only be transfer to production order in MTO ( Make to Order) scenario.
    If your scenario is MTO and the sales order reference is not getting  transfer, then check your requirement type and  requirement class setting in T.Code OVZH and OVZG.
    In standard SAP 'KE' requirement type  40 requirement class is used  for MTO scenario.

  • Sales order Vs Sales Return Order

    Hi All
      I have report sales order details ,which I have taken from VBAK ,but I need to get the sales return document to the particular sales order (if it is).
    Please help me how is the relationship sales order Vs Sales Return Order

    Normally the Sales Return Order is created with reference to the billing document of the original sales order. You can get the billing document number from the table VBRP (field VBELN).
    VBRP-AUBEL = VBAK-VBELN = VBAP-VBELN
    VBRP-AUPOS = VBAP-AUPOS
    The Sales Return Order can be fetched from the table VBAP (field VBELN)
    VBRP-VBELN = VBAP-VGBEL
    VBRP-POSNR = VBAP-VGPOS
    Hope this helps.
    Regards,
    Manoj

  • Approval of Sales Order vs Sales Quotation

    Hi experts, How can I fire an approval when total of Sales Order is different from total of quotation base? I retrieved the total from quotation on a sales order user field , but I can't fire the approval.
    Thanks,

    Hi Rolando Arzamendia.
    Try this User Query for Sales Order vs Sales Quotation Approval.
    SELECT Distinct 'True'  FROM
    ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN oqut T2 ON T1.BaseDocNum = T2.DocNum
    WHERE T2.DocTotal = $[ORDR.DocTotal]
    Thanks,
    Madhan.

  • Convert sales order to sales invoice

    Hi Dear;
    in SBO there is Document generation wizard utitity that help us to convert many sales orders to sales invoices, but for non multilanguage Business partners.
    could you help me and send to me the syntax that convert a/r sales oerder to a/r sales invoice please?
    regards;

    Hi Dany,
    Here's some sample code of how to convert a Sales Order (object type 17) to an invoice. I have used sales order number 10 as an example here.
            Dim oInvoice As SAPbobsCOM.Documents
            Dim oOrder As SAPbobsCOM.Documents
            Dim iDocEntry As Integer
            Dim i As Integer
            iDocEntry = 10
            oOrder = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
            oInvoice = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
            oOrder.GetByKey(iDocEntry)
            oInvoice.CardCode = oOrder.CardCode
            oInvoice.CardName = oOrder.CardName
            oInvoice.Address = oOrder.Address
            oInvoice.DocDate = oOrder.DocDate
            oInvoice.DocDueDate = oOrder.DocDate
            For i = 0 To oOrder.Lines.Count - 1
                oOrder.Lines.SetCurrentLine(i)
                If i > 0 Then
                    oInvoice.Lines.Add()
                End If
                oInvoice.Lines.BaseEntry = oOrder.DocEntry
                oInvoice.Lines.BaseLine = oOrder.Lines.LineNum
                oInvoice.Lines.BaseType = 17
            Next
            If oInvoice.Add() <> 0 Then
                oApplication.MessageBox("Error: " & oCompany.GetLastErrorDescription)
            End If
    Hope it helps,
    Adele

  • Sales Order processing - Sale from stock

    Dear Gurus,
    What are the configuration steps involved in Sales Order Processing- Sales from Stock.
    Kindly let me know.
    Regards
    Prashant Ranalkar

    Go with Make To Stock scenario.  For configuration details, make a search in this forum.
    thanks
    G. Lakshmipathi

  • Difference between sales order schedule line and item level data

    Hi All,
    Could you please let me know what is the difference between sales order schedule line and item level data?
    Thanks,
    Ramya

    Hi Ramya,
    Sales order schedule line contains del date, order qty, rounded qty, confirmed qty, delivery qty, schedule line category, purchase requisition etc.,  ie It contains the full details of sales order data with respect to the scheduled line of delivery.  The total quantity of a sales order item can be subdivided into schedule lines that contain the various subsets with the corresponding delivering dates.
    Sales order Item level data contains details of the item in the sales order like material code, net price, net value, UoM, PO details, reason for rejection if any, material group,billing date, plant etc., ie this
    contains the full details of item irrespective of scheduled line.
    Regards,
    R. Senthil Mareeswaran.

  • Transfer posting of goods from sales order to sales order

    Hi Sap experts
    Can anyone please tell me what is the movement type for trasfering goods from one sales order to another sales order and tell me what r the steps i should follow for this .

    Hi,
    What do you mean by transfer posting from sales order to sales order? The movement type will come into picture when a material document is involved that means goods are issued/received.
    Elaborate more on your query.
    Hrishi

  • How to get open production orders by plant wise

    Hi,
    How to get open production orders by plant wise.
    i know from tcode COOIS, is it possible to get from this. if so what are the parameters we have to give to get open production orders by plant wise.
    is there any tcode or tables available , please provide details .
    regards,
    Hari priya

    Hi,
    What is your definition of Open Production Orders?
    Definetly you will get the report from COOIS for Plant wise.
    Whther you want to consider all the Orders having the Status REL but not DLV?
    Then there is a chance of having the Orders, still with PDLV status but GR is done for the full Qty. May be you don't want to consider the TECO status, eventhough the Order is short closed??
    Better to ommit the Orders with CRTD status also..
    So, based on this which status to consider and which status not to consider..
    You can define the "Selection profile status" in BS42.
    Use this selection profile in COOIS, so that the rsults will be accurate..
    Best Regards,
    Siva

  • How to identify a particular order type(PP01) is coming to APO?

    How to identify a particular order type(PP01) is coming to APO? Can it be checked at CIF exits on APO side?

    Hi Abhishek,
    I am looking for exits at APO side only.
    Thanks,
    Prenith PP

  • How to identify which Internal order type is relevant for Budget manager

    Hi,
        How to identify which Internal order type is relevant for Budgeting i.e Budget Manager.
    regards,
    Rajesh

    controlling-internal orders-budegeting and availability control -define tolerance limits for availabilty control
       in which it is defined whether mail be sent to budget manager against the budget profile(budget profile is assigned to order type).
    controlling-internal orders-budegeting and availability control -define tolerance limits for availabilty control-maintain budget manager
    here budget manager is assigned to  order type
    assign me points if it is useful

  • If I create sales order under sales org - 5000 system is taking from 6000

    Hi
    Having 3 Sales org - 6000 , 5000 & 4000
    If I create sales order under sales org - 5000 system is taking from 6000 by default
    If 6000 prices (condition record) are not available system calculates from 4000.
    Can U tell for the same whr is the link b/w those...it's urgent.
    Thanks & Regards
    Sreehari

    Hello,
    I believe the customer you are created is under 6000 sales area. That is the reason why it is redetermining the sales area to 6000, even if you are trying to create the sales order in 5000. Extend the customer in 5000 or create a new customer in 5000.
    Prase

Maybe you are looking for

  • Home button on wifes 2 week old phone will not wake up phone or recognize finger print!!!!

    Sounds like she'll be getting a new phone again but wondering if anyone totally reset the phone for a fix. Thanks.

  • Oracle WebCenter Framework Tutorial  bug in af:tree / security ?

    Hi I'm following Oracle® WebCenter Framework Tutorial and come without big problems through Providing Security section however at the end of the chapter it is recommended to apply ccecurity on page elements to display files/ folders using af:tree com

  • Do I need multiple Vendor ID and device ID ?

    Hi I am developing a Compact PCI/ PXI card. Will I need a different DEVICE ID for each card, so that Labview can recognise between two cards. Is the distinction between two cards having the same vendor ID done on the basis of Device ID's or is it don

  • External data load

    Hi We are loading the huge files from external data base. In infosource we are using the keyfigures 0AMOUNT (0CURRENCY) 0RT_SALRESA (0SALES_UNIT) But when my source file is not have the currency and unit fields seperately. When creating the datasourc

  • Jdbc - sql statement

    I have an update query which is not executing and giving me result as 0 UPDATE employee SET fullname = ?,cellphone = ?,homephone = ?,otherphone = ?,gender = ?,permaddr = ?,resaddr = ?,dob = ?,doj = ?,resignationgivenon = ?,lastworkingday = ?, modifie