Daily Sales Total Comparison Query

Hi Experts,
I'm trying to make a query to get daily sales total for week and wish to make a graph.
However, if there is no figures in credit note or Down payment invoice or invoice then query seems not showing any figures for particular date.
I would be appreciated if anyone help this.
SELECT DISTINCT
GetDate(),
SUM (DISTINCT T0.DocTotal) AS 'Daily INV Sum',
SUM (DISTINCT T2.DocTotal) AS 'Daily DT INV Sum',
SUM (DISTINCT T1.DocTotal*-1) AS 'Daily CR Sum',
SUM (DISTINCT T0.DocTotal) + SUM (DISTINCT T2.DocTotal) - SUM (DISTINCT T1.DocTotal) AS 'Daily Sales Total'
FROM OINV T0, ORIN T1, ODPI T2
WHERE DateDiff(D,T0.DocDate,GetDate())=0 AND DateDiff(D,T1.DocDate,GetDate())=0 AND DateDiff(D,T2.DocDate,GetDate())=0
UNION ALL
SELECT
DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 1, 0)),
SUM (DISTINCT T0.DocTotal) AS 'Daily Sales Sum',
SUM (DISTINCT T2.DocTotal) AS 'Daily DT INV Sum',
SUM (DISTINCT T1.DocTotal*-1) AS 'Daily CR Sum',
SUM (DISTINCT T0.DocTotal) + SUM (DISTINCT T2.DocTotal) - SUM (DISTINCT T1.DocTotal) AS 'Daily Sales Total'
FROM OINV T0, ORIN T1, ODPI T2
WHERE T0.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 1, 0)) AND T1.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 1, 0)) AND T2.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 1, 0))
UNION ALL
SELECT
DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 2, 0)),
SUM (DISTINCT T0.DocTotal) AS 'Daily Sales Sum',
SUM (DISTINCT T2.DocTotal) AS 'Daily DT INV Sum',
SUM (DISTINCT T1.DocTotal*-1) AS 'Daily CR Sum',
SUM (DISTINCT T0.DocTotal) + SUM (DISTINCT T2.DocTotal) - SUM (DISTINCT T1.DocTotal) AS 'Daily Sales Total'
FROM OINV T0, ORIN T1, ODPI T2
WHERE T0.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 2, 0)) AND T1.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 2, 0)) AND T2.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 2, 0))
UNION ALL
SELECT
DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 3, 0)),
SUM (DISTINCT T0.DocTotal) AS 'Daily Sales Sum',
SUM (DISTINCT T2.DocTotal) AS 'Daily DT INV Sum',
SUM (DISTINCT T1.DocTotal*-1) AS 'Daily CR Sum',
SUM (DISTINCT T0.DocTotal) + SUM (DISTINCT T2.DocTotal) - SUM (DISTINCT T1.DocTotal) AS 'Daily Sales Total'
FROM OINV T0, ORIN T1, ODPI T2
WHERE T0.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 3, 0)) AND T1.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 3, 0)) AND T2.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 3, 0))
UNION ALL
SELECT
DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 4, 0)),
SUM (DISTINCT T0.DocTotal) AS 'Daily Sales Sum',
SUM (DISTINCT T2.DocTotal) AS 'Daily DT INV Sum',
SUM (DISTINCT T1.DocTotal*-1) AS 'Daily CR Sum',
SUM (DISTINCT T0.DocTotal) + SUM (DISTINCT T2.DocTotal) - SUM (DISTINCT T1.DocTotal) AS 'Daily Sales Total'
FROM OINV T0, ORIN T1, ODPI T2
WHERE T0.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 4, 0)) AND T1.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 4, 0)) AND T2.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 4, 0))
UNION ALL
SELECT
DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 5, 0)),
SUM (DISTINCT T0.DocTotal) AS 'Daily Sales Sum',
SUM (DISTINCT T2.DocTotal) AS 'Daily DT INV Sum',
SUM (DISTINCT T1.DocTotal*-1) AS 'Daily CR Sum',
SUM (DISTINCT T0.DocTotal) + SUM (DISTINCT T2.DocTotal) - SUM (DISTINCT T1.DocTotal) AS 'Daily Sales Total'
FROM OINV T0, ORIN T1, ODPI T2
WHERE T0.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 5, 0)) AND T1.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 5, 0)) AND T2.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 5, 0))
UNION ALL
SELECT
DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 6, 0)),
SUM (DISTINCT T0.DocTotal) AS 'Daily Sales Sum',
SUM (DISTINCT T2.DocTotal) AS 'Daily DT INV Sum',
SUM (DISTINCT T1.DocTotal*-1) AS 'Daily CR Sum',
SUM (DISTINCT T0.DocTotal) + SUM (DISTINCT T2.DocTotal) - SUM (DISTINCT T1.DocTotal) AS 'Daily Sales Total'
FROM OINV T0, ORIN T1, ODPI T2
WHERE T0.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 6, 0)) AND T1.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 6, 0)) AND T2.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 6, 0))
UNION ALL
SELECT
DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 7, 0)),
SUM (DISTINCT T0.DocTotal) AS 'Daily Sales Sum',
SUM (DISTINCT T2.DocTotal) AS 'Daily DT INV Sum',
SUM (DISTINCT T1.DocTotal*-1) AS 'Daily CR Sum',
SUM (DISTINCT T0.DocTotal) + SUM (DISTINCT T2.DocTotal) - SUM (DISTINCT T1.DocTotal) AS 'Daily Sales Total'
FROM OINV T0, ORIN T1, ODPI T2
WHERE T0.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 7, 0)) AND T1.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 7, 0)) AND T2.DocDate = DATEADD(dd, 0, DATEADD(dd, DATEDIFF(dd, 0, GetDate()) - 7, 0))

Could you let me know how to make pivot query?
                    AR INV TOTAL  |  AR Down Payment Total  | AR Credit Total  | (AR INV TOTAL+AR DP TOTAL-AR CREDIT TOTAL)
Today's Sales
Yesterday
Until Week Before

Similar Messages

  • Query for daily sales by warehouse

    Hi
    I need a query for   Daily sales by warehouse.  I am only new to this and struggling with generating.
    ideally it will look like the below.     With no selection criteria as I would like to schedule the report to email out at the end of each day.
    Warehouse      Revenue      GP          GP%
    NSW               $xxxx             $xxx       35%
    Would someone mind helping
    thanks

    thankyou ,   But i have multiple warehouse and i dont want to use a selection criteria.
    to expand on the original example
    Warehouse      Revenue      GP          GP%
    NSW                 $xxxx             $xxx           35%
    QLD                  $xxx               $xx            32%
    VIC                  $xxx               $xx            32%
    Also the results should only show figures for the day the query is executed
    Any help is appreciated.
    Similar layout to this,except using query and whs code.    the below is generated using sales analysis and customer group. 

  • Daily sales by month and cumulative sales for year

    Hi Experts,
    I have a reporting requirement where I have to show daily sales by month and cumulative daily sales for particular month for the year.
    e.g. If the current month is January then my result shows fine. see below
    Calendar Day
    Net Sales
    Target
    Sales Year
    Actual
    Target
    01/01/2014
    100
    90
    01/01/2014
    100
    90
    02/01/2014
    200
    180
    02/01/2014
    300
    270
    03/01/2014
    300
    290
    03/01/2014
    600
    560
    04/01/2014
    400
    350
    04/01/2014
    1000
    910
    But If I am in the month of Feb and I want to show sales for the month and cumulative sales for the year for just Feb but instead of showing cumulative total from 01/01/2014 to end of Feb it starts again at begining of Feb - See below
    e.g. 
    Calendar Day
    Net Sales
    Target
    Sales Year
    Actual
    Target
    01/02/2014
    200
    190
    01/02/2014
    200
    190
    02/02/2014
    400
    380
    02/02/2014
    600
    570
    03/02/2014
    600
    590
    03/02/2014
    1200
    1160
    04/02/2014
    800
    750
    04/02/2014
    2000
    1910 
    Expected Result - sales for the year shoud show cumulative result from 01/01/2014 - 31/12/2014
    Calendar Day
    Net Sales
    Target
    Sales Year
    Actual
    Target
    01/02/2014
    200
    190
    01/02/2014
    1200
    1100
    02/02/2014
    400
    380
    02/02/2014
    1600
    1480
    03/02/2014
    600
    590
    03/02/2014
    2200
    2070
    04/02/2014
    800
    750
    04/02/2014
    3000
    2820 
    How do I achive this?
    please help.

    What else you need?
    looks like you got #working days for the month, use that metric as of jan 15th

  • Daily sales report with last  selling price

    Dear All,
    how to query daily sales record with last selling price as  following:
    cust. code ,  item  , unit price, last selling price to this cust. within 3 month ,  highest  selling price of  this item with 3months
    I'm new to both  SAP and SQL, Please help! Many Thanks!!
    Wing

    Hi,
       Try this........
    SELECT P.CardCode,P.CardName,P.ItemCode,
    [1] as [Jan],
    [2] as [Feb],
    [3] as [Mar],
      [4] as [Apr],
    [5] as [May],
    [6] as [Jun],
    [7] as [Jul],
    [8] as [Aug],
    [9] as [Sep],
    [10] as [Oct],
    [11] as [Nov],
    [12] as [Dec]
    FROM (SELECT (T0.CardCode),T0.CardName,t1.ItemCode,T1.price,MONTH(T1.Docdate)as month
    FROM dbo.OINV  T0
    inner join INV1 T1 ON T0.DocEntry=T1.DocEntry
    inner join OITM t2 on T1.ItemCode=t2.ItemCode 
    WHERE T1.DocDate>='[%0]' and T1.DocDate<='[%1]' and T1.ITEMCODE='[%2]'
    and T0.CardCode='[%3]'
    ) S
      PIVOT  (max(price) FOR [month] IN
    ([4],[5],[6],[7],[8],[9],[10],[11],[12],[1],[2],[3])) P
    ORDER BY P.[CardCode]
    Check this link for SQL tutorials.........
    http://beginner-sql-tutorial.com/sql-subquery.htm
    http://w3schools.com/sql/default.asp

  • Sales Analysis Comparison 9.0 PL10

    Please advise how to create this query properly by to/from (period)dates?  Having a problem, for some reason, adding units and %s.
    Stores(a property in BP)  Total Units     Total Sales     Total Units LY(same period)     Total Sales LY(same period)     %Units    %Sales
    I have:
    DECLARE @DateFrom AS DATE
    DECLARE @DateTo AS DATE
    SELECT @DateFrom=DocDate FROM OINV TO WHERE T0.DocDate='[%0]'
    SELECT @DateTo=DocDate FROM OINV T1 WHERE T1.DocDate='[%1]'
    CREATE TABLE #temp
    (CardCode NVARCHAR(15),CardName NVARCHAR(100),CurrentYear DECIMAL(18,2),Prior Year DECIMAL (18,2))
    INSERT INTO #temp(CardCode,CardName,CurrentYear,PriorYear)
    SELECT CardCode,CardName,SUM(DocTotal),0
    FROM OINV
    WHERE DocDate BETWEEN @DateFrom AND @DateTo
    GROUP BY CardCode,CardName
    UNION
    SELECT CardCode,CardName,SUM(DocTotal*-1),0
    FROM ORIN
    WHERE DocDate BETWEEN @DateFrom AND @DateTo
    GROUP BY CardCode,CardName
    UNION
    SELECT CardCode,CardName,0,SUM(DocTotal)
    FROM OINV
    WHERE DocDate BETWEEN DATEADD(YEAR,-1,@DateFrom)AND DATEADD(YEAR,-1@DateTo)
    GROUP By CardCode,CardName
    UNION
    SELECT CardCode,CardName,0,SUM(DocTotal*-1)
    FROM ORIN
    WHERE DocDate BETWEEN DATEADD(YEAR,-1@DateFrom)AND DATEADD(YEAR,-1@DateTo)
    GROUP BY CardCode,CardName
    SELECT CardCode,CardName,SUM(CurrentYear)AS'CurrentYear',SUM(PriorYear)AS'PriorYear' FROM #temp
    GROUP BY CardCode,CardName ORDER BY CardCode,CardName
    DROP TABLE #temp

    Hi,
    Try this:
    DECLARE @DateFrom AS DATE
    DECLARE @DateTo AS DATE
    SELECT @DateFrom=DocDate FROM OINV T0 WHERE T0.DocDate='[%0]'
    SELECT @DateTo=DocDate FROM OINV T1 WHERE T1.DocDate='[%1]'
    CREATE TABLE #temp
    (CardCode NVARCHAR(15),CardName NVARCHAR(100),CurrentYear DECIMAL(18,2),Totalunit NVARCHAR (15),Totalunits NVARCHAR(100),  salesPrior Year DECIMAL (18,2))
    INSERT INTO #temp(CardCode,CardName,totalunit, totalsales,CurrentYear,PriorYear)
    SELECT CardCode,CardName,SUM(T1.[LineTotal]),0,sum(T1.[Quantity])
    FROM OINV t0 inner join inv1 t1 on t0.docentry = t1.docentry
    WHERE T0.DocDate BETWEEN @DateFrom AND @DateTo
    GROUP BY CardCode,CardName
    UNION
    SELECT CardCode,CardName,SUM(T1.[LineTotal]),0,sum(T1.[Quantity])
    FROM ORIN T0 inner join RIN1 t1 on t0.docentry = t1.docentry
    WHERE t0.DocDate BETWEEN @DateFrom AND @DateTo
    GROUP BY CardCode,CardName
    UNION
    SELECT CardCode,CardName,0,SUM(T1.[LineTotal),,sum(T1.[Quantity])
    FROM OINV t0 inner join inv1 t1 on t0.docentry = t1.docentry
    WHERE t0.DocDate BETWEEN DATEADD(YEAR,-1,@DateFrom)AND DATEADD(YEAR,-1@DateTo)
    GROUP By CardCode,CardName
    UNION
    SELECT CardCode,CardName,0,SUM(T1.[LineTotal),,sum(T1.[Quantity])
    FROM ORIN T0 inner join RIN1 t1 on t0.docentry = t1.docentry
    WHERE T0.DocDate BETWEEN DATEADD(YEAR,-1@DateFrom)AND DATEADD(YEAR,-1@DateTo)
    GROUP BY CardCode,CardName
    SELECT CardCode,CardName,Totalunit, Totalsales,SUM(CurrentYear)AS'CurrentYear',SUM(PriorYear)AS'PriorYear' FROM #temp
    GROUP BY CardCode,CardName ORDER BY CardCode,CardName
    DROP TABLE #temp
    Let me know the query result.
    Thanks & Regards,
    Nagarajan

  • Std profit center report to campare daily sales report from BW

    Hi
    daily sales report (filtred throgh BW using Profit cneters and account groups) need to compare
    with sap  R/3 DATA . kindly update me where i will extract it ( like any s_alr_87..... reports in profit center ?)
    let me clarify my query:
    daily sales report is getting on the basis of profit centers through BW (revenue element and profit center wise)
    where could we compare it with R/3
    thanks in advance
    Edited by: barnabasjh on Jul 1, 2010 7:23 PM

    You can use following:
    1. KE5Z (profit center actual line item report)
    2. S_ALR_87009712 (profit center actual/plan report)
    3. KE5Y (profit center plan line item report)
    Thanks.
    Rahul

  • Sales order invoice query

    Hi
    Please send the sales order invoice query as basic columns.. Further I will modify the query according to the requirement.
    Pleas send to my personal ID: [email protected]
    Thanks
    Sree

    Thanks.  There's a few problems though.
    1)  It seems that OINV DocTotal != Balance Due.  I'm seeing a number of invoices where there was a balance due, but we applied additional money (either we took another incoming payment and applied it or applied money from the account balance, etc.) and yet it still shows a total.
    2)  It's pulling incoming payments from different customers.  I think this is because the table was joined based on "RCT2 T4 on T4.[DocEntry]  =  T3.[DocNum] and T4.[InvoiceId] = T2.[LineNum]"  In one example I have 2 incoming payments 446 and 614.  Both have the DocEntry 542, but one relates to A/R Invoice 542 (for a different client) while the other relates to Down Payment Invoice 542.  *I was able to fix this by adding WHERE T5.CardCode = [%0]*
    3)  I'm going to work with this a little bit and see if I can alter it to make it work for me.  Basically this query falls a little short on the following:
    -  Doesn't include incoming payments that aren't linked to a down payment invoice.
    -  Does not give the Invoice Total (I'd like to know how much of the SO was invoiced.  DocTotal seems to give me Amount Invoiced - Down Payments.  I'm not sure the best way to get this number.  Maybe I could do the sum of each line * tax + freight)
    -  Does not give the outstanding amount on an invoice.  The ARtotal [DocTotal] column gives me how much was owed when the invoice was created, but it doesn't tell me what is currently owed.
    -  Lastly it may complicate the query too much and could be left off, but it would be nice to see if they have any money from credits or incoming payments that has not been applied.  Perhaps this would be easily accomplished by simply pulling in their account balance.

  • How to Round on Daily bases in a Query.

    Hi All,
    I have a query which sum the columns between two dates I want to round the sum on the daily bases. My query is written below.
    SELECT sum(S_QTY * S_RATE), sum(S_QTY * S_TOT)
    FROM SAUDA
    WHERE S_PARTY = 'A080' AND S_CITY = 'Z' AND S_TYPE = 'S' AND S_BILL_TYPE = 'd' AND
    S_DATE BETWEEN '2005-03-30-00.00.00' AND '2006-03-31-00.00.00' AND UPPER(S_CITY) != 'F';
    SUM(S_QTY*S_RATE) SUM(S_QTY*S_TOT)
    3700 2.775
    What I want is to round the sum on daily bases, means the values which I am getting is the total sum but not the individual dates. Try to help me.
    SKM

    Try this:
    SELECT sum(round(S_QTY) * S_RATE), sum(round(S_QTY) * S_TOT)
    FROM SAUDA
    WHERE S_PARTY = 'A080' AND S_CITY = 'Z' AND S_TYPE = 'S' AND S_BILL_TYPE = 'd' AND
    S_DATE BETWEEN '2005-03-30-00.00.00' AND '2006-03-31-00.00.00' AND UPPER(S_CITY) != 'F';
    I hope this will solve ur problem.

  • No Daily Sales/Trend Report for today?

    Has anyone received your iTunes Connect Daily Sales/Trend Report for today (1/25/10)? I have not received mine yet. First time it hasn't been up at this hour.
    It usually arrives at 2:30am (it's 9:30am here now) or if it's delayed, usually in another region, there's a note in big red text on the reports page.

    As I recall (back when I only had a few apps just starting in the store), yes, no daily sales means no daily report. Wait for the weekly report to confirm.

  • Report on daily sale,stock availability,pending order,Ageing report

    Report on
    daily sale for time period
    stock availability
    pending order
    Ageing report

    Dear Goutam
    Through VF05, you can see sales daily.
    For stock MMBE
    For Pending Order, VA05
    Thanks
    G. Lakshmipathi

  • Daily sales outstanding report

    Hi Friends,
    Client has requested a Daily Sales Outstanding(DSO) Analysis Report to be generated each month which should measure the average number of days a company takes to collect receivables after a sale is made. 
    Does SAP have any standard report for this, if not please guide me what should I do to get above requirement.
    Thanks

    The balance and the sales have been determined from table KNC1.However, this table is not updated per credit control area.
    When one company code is associated with more than one credit control area, there are possibilities of errors coming in DSO, in some old releases.
    OSS note 885637 may be relevant.
    Function modules CUSTOMER_DSO_CALCULATION, CUSTOMER_DSO_EXPLANATION could be used in this calculation.
    DSO days
    The number of the days the customer took to clear an invoice is calculated as the DSO days,(the balances are set against the sales). The DSO days are calculated with the following formula:
    DSO = Balance/sales per period x 30
    DSO calculation: Number of posting periods to be included
    The number of months to be taken into account determines how many previous months must be included when calculating the balance and sales per day.
    <b>Customizing controls</b>
    In customizing, SPRO>Financial Accounting>Accounts Receivable and Accounts Payable>Credit Management>Define Preliminary settings for credit management.
    The day sales outstanding figure is normally calculated in the standard system using a 3 month period.
    DSO Calculation with current balance or average of 3 months balance are set up in configuration.

  • ORBO - Daily sales report includes Order Init Transaction?

    Hi All,
    Can you please any one guide me in ORBO application,the daily sales report includes the Order init transaction details?
    Appreciate your help.
    Hari.

    Oracle Retail application doesn't consider Sale of Item which has not been moved out from the store and in other words all the orders , layaway ,special orders Initiated considers will not be accounted as sale amount despite of retailer has received amount in advance( Item inventory get reserved for those transaction ) .Transaction amount of those transaction will be added in sale of the particular day when those transaction will get completed i.e. Item inventory ( SOH) get down .
    I hope i have answered your question. Please let me know if further information required
    Thanks
    Himanshu Lohani
    [email protected]

  • Daily Sales rep

    Hi All,
    I have a requirement to build a daily sales report (Revenues & Cost) Report:
    Upon analysis of the Input and output layouts, i concluded that all the charateristics & Keyfigures are present in the COPA dsrc,, but except one Characteristcs called "Discount Group" is not there in the COPA DSrc.
    As per my knowledge ,if i want to enhance the COPA Dscrc, i shud enhance the Operating concern or the structure of CE1XXXX Table
    Can any1 tell me how to enhance the COPA DScrs Extract structure with this Discount group field?
    The enhancement must be based on Sales order Number and its Item.
    Thanks and Regards

    ehanced the COPA Extraction Structure

  • Daily sales(qty of material delivered to cutomer)

    How can i get daily sales(qty of material delivered) for last one year.
    Regards,
    vivek

    Dear Vivek
    If you want cumulative value, you can run MC+E. If you want break up details, the standard TCode is VF05.
    Alternatively, you can also use SE16 and give table VBRP so that the system will generate the despatch details made.
    thanks
    G. Lakshmipathi

  • 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.

Maybe you are looking for