Comparative Sales Report Location wise

Dear Experts,
            The customer wishes to have a report in the following format mentioned below.
1. Customer Operates in Tamil Nadu, Andhra Pradesh and Delhi. All these locations are defined in the system and have relevant warehouses linked for sales.
2.The  report format is  total sales for the month (Invoice & Credit Note)
Month/Location - July 2009 -  July 2010 -  growth - August 2009 - August 2010 - Growth-
Total Sales       -  1000      -    1200   -       20%
Tamil Nadu       -    500      -     600     -      20%
Andhra            -    400      -     480     -      20%
New Delhi       -     100      -     120     -      20%
Awaiting your quick response
Saravanan
Edited by: Sanbrahma39 on Jul 5, 2010 12:27 PM

hi
u can do it with the help of crearing a query for 1st Jun 2009 sales take the closing balance for the sales account and respectively for 2010 and  when u have the 2 closing balance thus use a varibale in the query to store the change in percentage from 2009-2010 ie (009/2010*100 )
and similarily do it for others
denoate amounts in places of year
regards
Manish

Similar Messages

  • Sales report period wise

    Hi
    Is there any report in SAP to know the customer wise Sales Organisation wise sales order peport.
    we need to konw customer wise sales orders report period wise. how many salea orders we booked for the customer wise.
    EX: Customer No | Customer Name| Sales document type |Total Sales order(Total of sales orders).
    Plase let me know any report available for this kind of information.
    Thanks
    Rao

    Hi..
    If you have SIS Configured you can use below STD SD Reports
    Standard SAP SD Reports
    Reports in Sales and Distribution modules (LIS-SIS):
    Sales summary - VC/2
    Display Customer Hierarchy - VDH2
    Display Condition record report - V/I6
    Pricing Report - V/LD
    Create Net Price List - V_NL
    List customer material info - VD59
    List of sales order - VA05
    List of Billing documents - VF05
    Inquiries list - VA15
    Quotation List - VA25
    Incomplete Sales orders - V.02
    Backorders - V.15
    Outbound Delivery Monitor - VL06o
    Incomplete delivery - V_UC
    Customer Returns-Analysis - MC+A
    Customer Analysis- Sales - MC+E
    Customer Analysis- Cr. Memo - MC+I
    Deliveries-Due list - VL04
    Billing due list - VF04
    Incomplete Billing documents - MCV9
    Customer Analysis-Basic List - MCTA
    Material Analysis(SIS) - MCTC
    Sales org analysis - MCTE
    Sales org analysis-Invoiced sales - MC+2
    Material Analysis-Incoming orders - MC(E
    General- List of Outbound deliveries - VL06f
    Material Returns-Analysis - MC+M
    Material Analysis- Invoiced Sales - MC+Q
    Variant configuration Analysis - MC(B
    Sales org analysis-Incoming orders - MC(I
    Sales org analysis-Returns - MC+Y
    Sales office Analysis- Invoiced Sales - MC-E
    Sales office Analysis- Returns - MC-A
    Shipping point Analysis - MC(U
    Shipping point Analysis-Returns - MC-O
    Blocked orders - V.14
    Order Within time period - SD01
    Duplicate Sales orders in period - SDD1
    Display Delivery Changes - VL22           
    Regds
    MM

  • ANNUAL SALES REPORT (MONTH WISE)

    Hi,
    I have following query, which shows annual sales (month wise). But when i run this query it shows all the parts (my mass production and Spare parts as well). I want it should show only MASS Production items only.
    The differencation i have specified at Item level property. If item property no. 5 (name SPARES) is check then it is SPARE item otherwise it is MASS Production.
    Thanks,
    Vincent
    ======================================================
    SELECT T0.ITEMCODE, T0.ItemName, T0.U_MODEL,
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 1 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'JAN QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 2 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'FEB QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 3 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'MAR QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 4 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'APR QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 5 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'MAY QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 6 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'JUN QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 7 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'JUL QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 8 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'AUG QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 9 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'SEP QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 10 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'OCT QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 11 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'NOV QTY',
    (SELECT SUM(T1.QUANTITY) FROM INV1 T1 with (NOLOCK) WHERE MONTH(T1.DOCDATE) = 12 AND T1.ITEMCODE = T0.ITEMCODE AND YEAR(T1.DOCDATE) = YEAR(GETDATE())) AS 'DEC QTY'
    FROM dbo.OITM T0
    LEFT JOIN dbo.INV1 T1 ON T1.ItemCode = T0.ItemCode
    WHERE T0.SellItem = 'Y'
    GROUP BY T0.ItemCode, T0.ItemName, T0.U_MODEL, YEAR(T1.DOCDATE) HAVING YEAR(T1.DOCDATE) = YEAR(GETDATE())

    Hi Rahul,
    Yes this report is very much available, but my idea was to integrate an udf (Model No., which i didn't specify in this query).
    But yes this report is very usefull for me.
    Thanks
    Vincent

  • Sales Report (Customer wise)

    Dear Friends,
    Can anyone please give me the  t-code to run a complete report on total sales for the year per customer
    Thanks

    Hi,
    Use t-code VA05 or VA05N
    Kapil

  • Balance Sheet Location Wise

    The company is operating in 3 states, say andhra pradesh, tamilnadu, delhi.  There are several branches in each state.  Tamilnadu has 2 branches and andhra pradesh has 5 branches.  I've defined the locations, and added the branches as warehouses.
    My requirement is, I need balance sheet, profit and loss, trial balance for each state separately.  Please help me in this by providing suitable solution.
    Rgds,
    Balaji

    There are two ways of handling this.
    Option 1: Use Diemensions. Create a dimenstion called location and have values like AP, TamilNadu, Delhi etc., (Each Location would be a Profit Centre). Now you should insist the user to select this profit centre in Marketing documents, Journal Entry as Mandatory.
    Now you can generate TB and P&L reports based on a Profit Centre. But you cannot generate Balance Sheet Profit Centre wise.
    Option 2: Use 'Account Segmentation'. Create a Segment called 'Location' and have values like AP, TN, Delhi etc.,(Each Location would be a segment).
    Now you can generate Balance Sheet, TB and P&L reports Location wise.
    Note here you would have a huge increase in your G/L Accounts and you have to map appropriate GL Accounts for each warehouse. This option might be  little complex but really effective.

  • Please any one provide crystal report for  Location wise sales report with GP

    Please any one provide crystal report for  Location wise sales report with GP.Please its urgent

    A report writer tool like Crystal reports is not available due to the cost involved in its licenses.Do you think that Oracle Reports is free then? It's $$$$.
    You can download and test it for free, but if you want to use it in production you have to buy a license.

  • Storage location wise value in Report

    Hi all ,
    We are working of MM module on which we have scenario in report,
                       Plant     Storage location  stock       value   ( 10 rs each quant)
         A      A1                     10             0
                   A2                         20                 0
                        A3                      30                 0
    Total                                                     60         600
    So according to this we are not getting storagelocation wise value....
    we applied the note 589024 also ...so we are geeting the storage location wise value but that values are not matching with ECC(mb5b),....
    our next scenario is we are comparing previous months closing stock value to present months opening stock value ...but its coming different after applying the note 589024.
    Please guide us.

    hi,
    Could you check the stock value with MMBE tcode and see if it matches.
    regards,
    Arvind.

  • Region wise Sales Report / Sales Analysis

    Hi,
             I have a requirement of Region wise sales report. I have searched in the forum and found that I could acheive it through SE16-->VBRK-->REGIO field . I have tried executing the same, but the problem is when ever i am trying to pull up the sales for a particular region the system is giving an invoice number. But when I go to that particular invoice and see the PAYER , the PAYER is in the different region.
             Please let me know which region the system considers at the table level. I mean to ask which region the system considers for a particular transaction.
    Thankyou,
    Rakesh Tummala.

    Hello Rakesh,
    I am facing a similar issue that you are facing.  Yes, there is a region populated on the billing document in table VBRK.  However, depending on how your order entry is configured, the region listed in the billing document isn't necessarily the region the materials were shipped to.  To fine tune your requirement, are you looking for a report where the ship-to address is in a specific region or where the payer or sold-to address is in a specific region?
    If it's the ship-to address in a specific region, you'll need to develop a table join query in SQ01.  Join the tables VBRK --> VBPA --> ADRC.  VBRK is the billing document header table.  VBPA is the partner table where SH (ship-to partner) can be determined and it gives you an address code.  ADRC is the Business Address Services table that reads the address code and provides the address.  In the next step, make sure ADRC-REGION is a selection field so that you can specify the region.  Then, run the query, ensure VBRK-NETWR is an available field so that you can calculate the net value of billing documents for the specified region.
    If it's the payer or sold-to address in a specific region, this is easier since it's master data and not transaction-specific data (remember, your customer service group could be manually changing the ship-to location when creating a sales order, which is why you would need to follow the aforementioned steps).  You can do a quick search for accounts within a specified region then obtain the information in VBRK for the specified payers.
    I hope this information helps you, please provide questions if you need further clarification.

  • Report to Compare Sales

    Hi Guys,
    I need a report to compare the total sales by item wise.
    Like i need ITEM CODE, DESCRIPTION, TOTAL QUANTITY INVOICED, PRICE  for the given period.
    i used the below query but am unable to achieve the exact result.
    pls update the query.
    SELECT distinct T1.ItemCode, T1.[Dscription], T1.[Quantity], T1.[Price], (T1.[Price] * T1.[Quantity] ) as
    ' Total Price '
    FROM OINV T0 
    INNER JOIN INV1 T1 ON T0.DocEntry = T1.DocEntry WHERE T0.[DocDate] >=[%0] AND  T0.[DocDate] <=[%1] and targettype != '14'
    Thanks in Advance,
    Regards,
    Vamsi

    Hi ,
    I need  to know total sales - item wise  in given period.
    MY REPORT  SHOULD BE LIKE THIS
    ITEM CODE === ITEM NAME === QUANTITY === PRICE  == (QUANTITY * PRICE)
    ITEM1         == ITEM1           == Q1                   == PRICE1  == VALUE1
    ITEM2         == ITEM2           == Q2                   == PRICE2  == VALUE2
    ITEM N         == ITEM N            == Q N                   == PRICE N   == VALUE N
    EACH   ITEM NEEDS TO BE APPEAR ONCE AND TOTAL CUMMULATIVE SALES QUANTITY FOR THE ITEMS
    Thanks in advance,
    Regards,
    Parimis

  • PP report values mismathing Location wise

    Hi All,
    In PP reports I am getting mismatch compare to R/3 system.  When I am seeing the Plant wise totals its showing correct values. 
    When am going through Location wise some values its showing with Location name as # and description as Not maintained.  In that we are getting the total value of mismatch.
    So how to remove the # values from Report and get the data Location wise perfectly.
    Regards
    Sankar

    Posted in wrong place

  • Date Wise and Storage Location Wise Stock Qty & Value Report......

    Hi Experts,
    We want a report Date Wise(As on 31.03.2008) and Storage Location Wise Quantity & Value Report for only Finish Materials. Is there any report ?
    From Mb5b we canot get storage location wise report as we get only plant level qty and value.
    Pl. guide us.
    Regards,
    Yusuf

    Hi Yusuf,
        Try the Tcode: MC.9 there enter the site and article and executeYou will get details of the article
    stock, value. if you double click the article you will get the details of storage location.
    Hope it will be help for you
    Regards
    GK

  • Storage location wise opening, closing stock...date wise...report

    Hi all Experts,
    I am at client site and hav to provide a report containing opening, and closing stock (and issue qty if possible) storage location wise and date option wise.pls help
    regards
    vikas chhabra

    Hi,
    Use MB51 for date wise report
    OR
    Use MCL1, MCL5, MCL9, MCLD (If Warehouse Management you are using)
    OR
    You have to develop an own ABAP report.
    Regards,
    Biju K

  • Report for Storage location wise Stock with value..?

    Hi guru's
    Can anybody explain me what is T.code i want to use to get a report for STORAGE LOCATION STOCK  with VALUE..?
    Urgent reply me  ..
    Thanks
    sap-mm

    Sorry Mr chetan,
    I want to see only the stock available in my company with Value and storage location wise..
    Please try to get report for this
    Thanks
    sap-mm

  • Storage Location wise stock report

    Can any one let me learn, How to get storage location wise & selected date wise stock report in standard SAP

    HI,
    Then you use T.code: MB51, where you will find the Date Range besides to Storage Location.
    Regards
    VG

  • Monthly wise sales report

    hai,
         i m working on sales report where in i need to get month wise sales of the products and the related cost incured to company by the sales in the matrix form as shown below  can u help me in which way can i get this monthly report
              march     april     may   june    july......feb
    mtrl    25            30         0       19      23   ........(mtrl quantity)
    cost   30000     15000      0      45000  ..........(amt in rs)
    where in the above i m able to get yearly sales in one column (i.e i m able to show for one particular customer total sales in one column) but i m unable to split sales monthly and unable to show in a report so how can i able to sow in this matrix form

    Dear Raj,
    Please find the code for monthly wise report in PA0001 Table for calculation of Administrator time Recording.
    http://scn.sap.com/message/14216250#14216250

Maybe you are looking for

  • Problem getting blank DVDs to show up on desktop or in iTunes

    Hello, I have been trying to burn playlists in itunes onto a blank dvd. I can burn CDs, but when I try to insert a blank DVD, it checks media and spits it back out. Neither will my MAC show the blank dvd on my desktop when I insert it outside of iTun

  • HT4208 Purchased

    I can not see item list in Purchased on Updates of the App Store, after updating ios6. The App Store is down when is click the Purchased, so please help me.

  • Chinese language support for adobe reader for HP WEBOS?

    is there any traditional chinese language support for adobe reader for HP WEBOS? if yes, where can I download?

  • Evocam I chose quad view and want single view

    Evocam web page has lots of faqs. The pulldown help in Evocam app is not specific enough to answer my question. I found no "discussion forums" dealing with Evocam. I have basic questions about the setting up and choosing options within the app. For m

  • Impossible to change a password?

    Its seems to impossible to change a password for a skype.. i have tryed now two times and always after few attemps theres 24 hour waiting time before i can try another password. I have tryed many diffirent passwords but skype dont allow any password