SALES REPORT BY ITEM

PROBLEM - Sales Analysis report will not pull data when requesting multiple items and date range of YTD (2008) - but when report is broken into fewer item #'s & shorter date range - then the data populates - How do you fix?

YVONNE YLLARRAM,
Select Annual option in sales analysis.
select the required item group in sales analysis selection creteria.
Tick secondary selection
select the required customers in from.. to.. fields.
Apply option group by customer.
Click ok.
Above selection creteria will pave way
to populate report more quickly.
Jeyakanthan

Similar Messages

  • [Sales A/R] [Sales Report] [Open Item List] [missing item]

    Dear Expoerts,
    Business One 2005A:
    How to restore or rectify the 'missing item' on the Open Item List?
    There is an item shows Commiited 10 however there is no corresponding Sales Orde.
    Since there is no stock therefore data shows Available -10.
    How can we purge this bug because we tried Goods Issue and Restore, neither methods can do anything about it.
    Your advice will be very much appreciated.
    Kunitomo
    Tokyo, Japan

    Dear Gordon,
    Yes, i'm sure. When i test it, i copy Sales Order (eg. got 5 items - 4 of 5 item is 0 amt)  to Delivery Order (got 5 items - 4 of 5 items is 0 amt). Then i delete the row of 4th & 5th item with 0 amt. 
    FROM Sales order:
    Example: 1) Item A      $1,000.00
                   2) Item B              $0.00
                   3) Item C              $0.00
                   4) Item D              $0.00
                   5) Item E              $0.00
    To Delivery Note:
    Example: 1) Item A      $1,000.00
                   2) Item B              $0.00
                   3) Item C              $0.00
                   4) Item D              $0.00 (Delete row in Delivery Order)
                   5) Item E              $0.00 (Delete row in Delivery Order)
    After i check the Open Item List - the amt, net & tax do not show the figure for this Sales Order. The Sales order just show $1,000.00 in "Original Amount" in Open Item List.
    Please check for me, the SAP B1 system std is like that?
    Thank you.
    Regards,
    Sheon

  • XLR sample - sales report by item by sales rep

    Hi all,
    I am using the above report at client site and its working great.
    The cust now has a requirement to modify this and include a column that looks at same period -12mths.
    I can easily do that by -
    - duplicating the existing columns 
    - applying period parameter to columns and not the report default
    - and changing the parameter to be @per-12.
    This doesnt seem to work however as the parameter is an expression which means I can select a range of periods.  XLR gives error:
    Definition parsing failed: syntax error near @per-12.
    It only seems to work when I have the parameter as a dimension so that only 1 period can be selected.
    Can XLR do the calculation for the range of periods -12 mths?
    My client wants to create a quarterly report so selecting 1 period is not going to be sufficient.
    I hope what I have explained is clear.
    Thanks for any advice,
    John

    Hi,
    There is a detailed syntax explaination document in portal> Docment Resource Center, you can download it and check.
    There also the explaination regarding @period-12
    For multiple selection, you can use Selection icon(next to the Expand icon) for columns to show more columns for different period.
    hope this helps you.
    maggie an
    SAP BusinessOne Forums Team

  • Report to show the followup sales documents and items

    Sales had executed many sales quotations with customers over a period of time.
    Now the Sales Staff wanted to know how many sales documents and what/how many sales items are being purchased by the customer with respect to the quotation.
    Is there a report that list out the sales documents and items created w/respect to a particular quotation instead of looking at the document flow which is difficult to diagnose.
    Thanks

    hello, friend.
    you can try table VBFA, where you can see sales documents and their subsequent documents.
    for a general listing of quotations, use tcode VA25.
    regards.

  • Sales Analisys on Items report in Delivery

    Incorrectly sales analysis report on Items in the context of Delivery Notes, if Delivery has a status - Closed.
    1. Add the document u2013 Delivery №1 with item/service type to the system.
    2.We want to see the sales analysis report. Sales -> Sales reports -> sales analysis. Criteria for report: Delivery Notes and you can see customers, Items and Sales Employees reports.
    The Items report, Sales Employees report and customers report have the same values.
    3.Closed the document "Delivery".
    4.And if we see the Items report, then the report will show us a zero quantity.
    How can I remove this error?
    Tnaks.

    Yes, i agree with Gordon.
    YOu can try this SQL query.
    SELECT T0.ITEMCODE,
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 1 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'JAN QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 2 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'FEB QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 3 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'MAR QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 4 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'APR QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 5 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'MAY QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 1 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'JUN QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 7 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'JUL QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 8 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'AUG QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 9 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'SEP QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 10 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'OCT QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 11 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'NOV QTY',
    (SELECT SUM(T1.QUANTITY) FROM DLN1 T1 with (NOLOCK)
    WHERE MONTH(T1.DOCDATE) = 12 AND T1.ITEMCODE =
    T0.ITEMCODE) AS 'DEC QTY'
    FROM dbo.OITM T0
    LEFT JOIN dbo.DLN1 T1 ON T1.ItemCode = T0.ItemCode
    WHERE T0.SellItem = 'Y'
    GROUP BY T0.ItemCode,YEAR(T1.DOCDATE) HAVING YEAR(T1.DOCDATE) = YEAR(GETDATE())
    ORDER BY T0. ITEMCODE

  • Sales Analysis Report by Items - How to chart it

    The sales analysis report by items is great for us but I notice that there is no way of getting a bar chart for example at that initial report level. Only when you drill down in to a group does it show the charts.
    Is is possible to get the Items Groups summary sales report in to a chart?

    Hi Ricky.....
    Chart waise Graphical Representation is given by SAP and it can be easily done in XCelcius.
    All you need to do is you have to create your own report and put this report in XCelcius.
    It is recently launched.....
    Regards,
    Rahul

  • Need to create a report of Items sold= last sale date report

    Hi Guys,
    There is an column of last sale date in OITM but that doesnt gives any data when you run a query. Basicaly client need to generate a report of Items with last sale date, is this possible SAP Business One?
    Regards

    Hi Joe,
    you could use the stock posting list report with a suitable date range & select only AR invoices in the 'Expanded' options, then sort by posting date in descending order
    This report can then be exported to Excel & all irrelevant transactions can be deleted, keeping only the first & second row for each item (Row 1 = Itemcode, Row 2 = last stock posting from AR invoice showing in the 'Price after discount' column).
    Alternatively, you might explore whether an SDK solution  may be created that runs the last prices report for all items.
    All the best,
    Kerstin

  • Items Sales Report

    Hello.
    I need to make an items sales report, but i have diferences between OINV.DocTotal and (INV1.Quantity * INV1.Price). What is the correct way to make this kind of report?
    regards
    Oscar

    thanks for every one, I found the answer:
    SELECT T0.DocEntry, T1.DocNum,
           (SELECT (T2.DocTotal - T2.VatSum) FROM OINV T2 WHERE T0.DocEntry = T2.DocEntry) 'DocNeto',
          (ROUND(SUM(T0.LineTotal),4) - T1.DiscSum) 'DetTotal' FROM INV1 T0
       LEFT JOIN OINV T1 ON T0.DocEntry = T1.DocEntry
    WHERE YEAR(T0.DocDate) = 2008  AND T1.DocType = 'I' and T0.DocEntry = 8755
    GROUP BY T0.DocEntry,T1.DocTotal,T1.DocNum,T1.DiscSum
    I did this query to match the header and details invoices.
    Thanks, for your time.

  • Sales and Purchase Analysis reports by Item

    The current functionality of these reports is more like an open items list rather than an analysis report.
    If you Run a Purchase Analysis report by Item with a secondary selection of Supplier, and choose GRPO - the scenario is to find out how many of which products you have received in the date range from a specific supplier. This type on data is useful to use for negotiations on pricing etc.
    Currently, the report will only display values for GRPO that have not been drawn to AP Invoice. This is supposedly system functionality, but, the report is called analysis, so should provide data for that purpose?

    Hi,
    You may double click the column header to change the sort.
    Thanks,
    Gordon

  • Daily Sales reports - $0 price items

    In the daily sales reports, I'm getting some rows showing $0 customer price and royalty price. These are for paid, not free apps. It shows a product type identifier of 7 (instead of the usual 1).
    What does this mean ?
    Anyone else getting these ?

    Never mind.
    I just realized that these are the no-charge update numbers.

  • Sales report for the month.

    Hi all,
    I am looking for some help with a query that I am trying to write for a customer. They have asked me for a report that shows them a date range of sales not including: Discount, Tax, and Shipping/Freight. They are wanting to be able to populate this using a date range and by business partner. The last thing they are wanting is to have this only include items that are in 2 specific item groups. If anyone has any suggestions it would be greatly appreciated. Thanks!
    Kind Regards,
    Jeff Haldeman
    Support One

    Hi Jeff ,
    lets make this simpler
    1. How do you identify as sales -- Is it Ar invoice or Sales order
    2. How is your user entering data for discount at row level or footer (header) level
    3. Since they need Item * sales Cost  ,looks like you have to calculate your own total so you cannot  use  system total unless you reverse (doctotal -tax -discount )
    4.  Date range means (you have to use parameter )
    5. Business partner range (parameter )
    6. Item with two group ( put a condition )
    Did you take a look at Sales Analysis report by Item with secondary selection customer and use filter function to take out some unnecessry field .May be that satisfied their need .
    Please update us more .then we can help you more
    Thank you
    Bishal

  • Sales Analysis by Item: Show all items

    I am trying to look for a way to get a report that will show me the Sales Analysis by item, but show me all the items even if the item wasn't sold to any Business partner.
    Example:
    I have the following items and sales for today:
    Item A, invoice $100
    Item B, Invoice $200
    Item C, no sales
    Item D, Invoice $500
    If I run the sales analysis by item they will show me
    Item A, $100
    Item B, $200
    Item D, $500
    but I want to show it
    Item A, $100
    Item B, $200
    Item C, $0
    Item D, $500
    Please let me know if there is a way or a queries that I can do to get that result.
    Thank You,

    HI,
    Sales Analysis per item only display item with records.
    You can attain by creating a query to display your desired output.
    Please try to look in the forum for the sales report.
    example:
    [Sales report for the month.|Sales report for the month.]
    [Re: sales analysis report|Re: sales analysis report]
    [Re: A query report of sales invoices|Re: A query report of sales invoices]
    thanks.
    Clint
    Edited by: Clint T. Pauyon on Sep 24, 2011 12:09 PM

  • Sales Analysis by Items printed with PLD / SBO8.8 PL11

    Hi all,
    need to print the sales analysis by items on one page only with sales turnover per month (no columns with gross profit and %)
    Right now the systems is creating 3 pages for one report (1. page january until april, 2. page may until august, 3. page september until december).
    How can I change the report to print all months on one page.
    Thanks for answers.
    Gebhard

    Hi Gebhard,
    I am afraid you need your own report for your goal.  Try Crystal Report or XL Reporter.
    Thanks,
    Gordon

  • Sales order line items delivery cancelled but still appears in MD04.

    Hi PP Gurus,
    In the sales there are 6 line items are there out of which for 1 line item delivery and PGI happened. And for remaining line items delivery got cancelled, but these line items for which delivery cancelled appearing in the MD04, I have rejected the sales order line items but these line items still shows in MD04. Please advise how to remove these line items from MD04.
    Thanks and Regards,
    SHARAN.

    Hi
    Pl refer SAP Note : 1166713 for the Problem which says " You have posted goods issue and therefore the delivery requirements should no longer be existing. These inconsistencies can be seen using report SDRQCR21"
    Regards
    Brahmaji

  • SALES REPORT (Credit memos Subtracted)

    Hi all,
    I would like to come up with a detailed Sales Reports that shows the Quantity and Value of items sold per day (AR Invoices) excluding the credit memos. I later want to use the same query in crystal reports. I came up with the below query; the select statements are executing individually but using 'UNION ALL' I am getting a 'Conversion' error.
    SELECT T0.[CardCode]Code, T4.[SuppCatNum]cat, T4.[FrgnName]frn, T1.[Quantity]InvQ, T0.[DocTotal]InvT,0 MemoQ,0 MemoT FROM OINV T0  INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry full outer JOIN OSLP T2 ON T0.SlpCode = T2.SlpCode full outer JOIN OUSR T3 ON T0.UserSign = T3.USERID full outer JOIN OITM T4 ON T1.ItemCode = T4.ItemCode WHERE (T1.WhsCode='MLO01' or T1.WhsCode='ARG01')  AND T0.DocDate=[%0]
    union all 
    SELECT  0 Code, 0 cat, 0 frn, 0 InvQ,0 InvT, T1.[Quantity] MemoQ, T0.[DocTotal] MemoT FROM ORIN T0  INNER JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry full outer JOIN OSLP T2 ON T0.SlpCode = T2.SlpCode full outer JOIN OUSR T3 ON T0.UserSign = T3.USERID full outer JOIN OITM T4 ON T1.ItemCode = T4.ItemCode WHERE (T1.WhsCode='MLO01' or T1.WhsCode='ARG01') AND T0.DocDate=[%0]
    kindly assist refine this query or come up with a better one altogether. Thank you.

    Hi,
    Try:
    SELECT T0.CardCode Code, T4.SuppCatNum cat, T4.FrgnName frn, T1.Quantity InvQ, T1.LineTotal InvT,0 MemoQ,0 MemoT
    FROM OINV T0
    INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN OITM T4 ON T1.ItemCode = T4.ItemCode
    WHERE (T1.WhsCode='MLO01' or T1.WhsCode='ARG01') AND T0.DocDate=[%0\]
    union all 
    SELECT  '', '', '', 0,0, T1.Quantity, T1.lineTotal
    FROM ORIN T0
    INNER JOIN RIN1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN OITM T4 ON T1.ItemCode = T4.ItemCode
    WHERE (T1.WhsCode='MLO01' or T1.WhsCode='ARG01') AND T0.DocDate=[%0\]
    Thanks,
    Gordon

Maybe you are looking for