Sales usage outlier report .

Hi ,
I would like to create a report which is based on sales data . Here is the requirement ..
Sales Usage Outlier Report - Unusual high or low sales for stock materials in a plant (BI) <br> The report should allow the user to select criteria such as: -ABC code -Standard deviation from forecast -Material.
This report will be used to adjust historical usage for sales outliers that occur during the normal business process. These outliers can cause larger than normal swings in inventory purchases, if not captured during the forecasting process.
Could you please let me know , do we have any std functionality to show outlier in BW ?
Regards

Hi,
For the following requirment, here is the option,
Sales Usage Outlier Report - Unusual high or low sales for stock materials in a plant (BI)
- USE EXCEPTIONS TO HIGHLIGHT THE CHANGES THROUGH COLOR HUES.
The report should allow the user to select criteria such as: -ABC code -Standard deviation from forecast -Material.
- CREATE A USERENTRY VARIABLE ON THE "ABC CODE" FIELD AND ATTACH IN THE QUERY DEFINITION
This report will be used to adjust historical usage for sales outliers that occur during the normal business process. These outliers can cause larger than normal swings in inventory purchases, if not captured during the forecasting process.
THE REQUIREMENT IS NOT CLEAR.  BUT YOU MUST BE ABLE ANALYSE THE DATA AND CHECK THE USAGE OF SALES OUTLIERS AND DECIDE ON THE FORECAST VALUES.  YOU CAN CREATE CALCULATED KFs to analyse the historical data.
Thanks.

Similar Messages

  • Open Balance on Sales Order Cost Report

    Hi SAP Group -
    I have a couple questions about the settlement of manufacturing variance to COPA.
    When our settlement process is complete (production order and sales order both settled to COPA), there is a balance remaining on the sales order cost report which is equal to the manufacturing variance on the production order.
    It seems that the manufacturing variance is posting from the production order to the sales order, but is not being assigned to the PSEG and flowing to COPA.
    I am looking for advice in two areas:
    First, how do we "clear" these balances on old orders that are already settled?
    Second, how do we prevent this from happening on future orders?
    Thanks !!!

    Refer to OSS 183250 and note 186485.
    If you don’t specify in the settlement profile for the production order that the variances are not transferred from the production order into CO-PA, you will settle the variances to <b>CO-PA twice</b>: once from the production order (broken down into variance categories), and once from the sales order item. The settlement rule still references the material and not the sales order item.
    Special Features of Product Cost by Sales Order with Valuated Sales Order Stock
    <a href="http://help.sap.com/erp2005_ehp_02/helpdata/en/90/ba66cc446711d189420000e829fbbd/content.htm">Read the topic on 'Special Features of Product Cost by Sales Order with Valuated Sales Order Stock'</a>
    You may want to check the period of the variance settlement from mfg order to sales order and ensure the settlement of sales order is also done the same period, if the type is PER.

  • Sale Order Status Report

    Dear Expert.
    I want Sales Order Status report as below mentioned format required quarry base report from Date to To Date.
    Location-OrderSeries-OrderNo-CardCode-CardName-ItemCode-Item Descripotion-Inv.UOM-Order Qty-Allocated Qty-DeliverQty-Peniding Qty adn Pending Order Value.

    Hi,
    You can check this :
    select t3.location as 'Location',t0.series as 'Order Series',
    t0.docnum as 'Order No.',t0.cardcode as 'Business Partner Code',
    t0.cardname as 'Business Partner Name', t1.itemcode as 'Item',
    t1.dscription as 'Item Name', t2.invntryUom as 'Inventory UoM',t1.quantity as 'Order Qty',
    t1.QtyToship as 'Allocated Qty- Qty to Ship', t1.delivrdQty as 'Delivered Qty',
    t1.OrderedQty as 'Ordered Qty', t1.openCreQty as 'Pending Qty',
    t1.Opensum as 'Pending Order Row Value'
    from ORDR t0 inner join RDR1 t1 on t1.docentry = t0.docentry
    inner join OITM t2 on t2.itemcode = t1.itemcode
    inner join OLCT t3 on t3.code = t1.loccode
    where t0.docdate >= '2011.01.01' and t0.docdate <= '2011.12.31'
    Hope it helps.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • Sales Order Status Report

    Hi,
    Can you please guide me for Sales Order status report extractors?whether some standard extractors would be used or customized or standard is available which can further be enhanced.
    Scenario is- I have to populate report columns like
    0-25000     25001-50000     50001-100000     100001-200000     200001-500000     500000>
    And analysis has to be shown in the report rows : Sales District. In Columns only number of sales order in each district would be entered as a number. Example- of for district ZMJT there are 3 order are in pending stage having quantities 35000 then entry 3 will come in first column and so on. Following are other columns for drill down purpose.
    Input Fields:
    Date Range
    Company Code
    Currency Type
    Sales District
    Sales Group
    Analytical Fields-
    Sales Org.
    Distribution Ch.
    Division
    Sales Order No.
    Sales Order Dt.
    Sales District
    Tube Dia
    Tube Length
    Laminate Structure
    Application Category
    Customer
    Customer Group
    Sales office
    Sales region
    Sales Order Qty
    Sales order Value
    Regards,
    Ritika

    Hi,
      We have standard extractor 2LIS_11_VASTI (Sales Document Item Status) for getting the status.
    Regards,
    Vamsi Krishna

  • Sales order Cost- Report

    Hi,
    I have an issue in MCTG. For some sales offices the value of Orders: Cost is showing as zero and for some sales offices the report is showing value.
    Why is it so?Any known reasons?
    Also is there any standard report which will show sales orders cost per sales organisation for a particular period?
    Regards,
    Ajit

    Hi Rajkumar,
    Analyse the report and read the documentation. It is not possible for sap also to give all in one report.
    Regards,
    Madhu.

  • Sales Person Commission Report

    What will be a query  to do a sales person commission report which includes Credit Memos?

    Hi Max, welcome to forums.
    Check this thread and see if it helps - Re: Commission Query
    Re: Commission Report
    Credit Memo query
    There are plenty of commission related query threads. You can mix and match to get a result most suitable to you.

  • Sales and Collection Report

    Dear Experts
    Am using below query for Sales and collection report but i came across that if i have  cancel any incoming payment is also showing in this report.
    Am requesting to modify this query in which if i or user do any cancellation of transction should not reflect in this report.In short Excluding of Cancelled entry
    Thanks in Advance
    Parikshit
    SELECT  M.SlpName, M.Sales,  M.Collection
    FROM (SELECT T1.SlpName AS 'SlpName',SUM(T0.DocTotal) as 'Sales', 0 as 'Collection'
    FROM OINV T0 INNER JOIN OSLP T1 ON T0.SlpCode = T1.SlpCode
    WHERE T0.DocDate >=[%0] AND T0.DocDate <=[%1]
    GROUP BY T1.SlpName
    UNION ALL
    SELECT H2.SlpName AS 'SlpName', 0, SUM(H0.DocTotal) as 'Collection'
    FROM ORCT H0 INNER JOIN OCRD H1 ON H0.CardCode = H1.CardCode
    INNER JOIN OSLP H2 ON H1.SlpCode = H2.SlpCode
    WHERE H0.DocDate >= [%0] AND
    H0.DocDate <=[%1] GROUP BY H2.SlpName
    )M

    SOLVED

  • Sales and stock report

    how to finding a site wise sales and stock report?
    please reply ASAP

    Stock Ledger Analytics should provide what you need. Some information can be found here: help.sap.com > SAP NetWeaver > BI Content > SAP NetWeaver 7.0 BI Content Add-On 4 SP 06 > Industry Solutions > Trading Industries > Retail Trade > Supply Chain Analytics > Stock Ledger Analytics (Link: http://help.sap.com/saphelp_nw70/helpdata/en/1c/8451a1005f4371b9c630a285ea7a7d/frameset.htm)

  • Sales Register xl report

    Hi All,
         Sales Register xl report is not working properly.  I have generated Sales Register xl report but i am not getting correct values.please explain what is the  problem.
    Edited by: silpa n on Nov 13, 2008 11:05 AM

    Hi Silpa,
    For you question of Excise i have the table wher to upload the thing but you have to create seperate template from DTW and then you can migrate.
    Regards
    Chidambaram

  • Sales Representative Commission Report

    Hi,
    Is there any standard report for Sales Representative Commission Report for Professional services.
    regards
    ravi

    to my knowledge there is no standard report as such....u need to gather the requirements and develop a new report in SE38.

  • Sale and trend report is too late?

    Hello every body!
    I often get Apple's sale and trend report is often on the middle of the month (around 10th to 15th). My friend got sale and trend report for January of 2012 a week ago, it's on 9th. But now I still got nothing.
    This make me a little bit worry, is this normal and often happening to you?
    Sorry about my bad English

    The Monthly Financial Reports always show up around the same time....don't panic yet.
    It is best to be patient...always

  • Need code for sales order create report using bapi's

    need code for sales order create report using bapi's

    Hi,
    Go through below link
    http://www.saptechies.com/bapi_salesorder_createfromdat2/
    <b>Reward points if it helps,</b>
    Satish

  • Smartform for sales tax summary report

    Hi all!
    Is there a smartform for the Austrian sales tax summary report available? I have not found any hints At the moment, we "just" use a SAP-SCRIPT printout. Thank's for your help!
    Regards
    MARTIN JAGERSBERGER

    Hi Arvind,
    Check /people/navneet.dhami/blog/2010/11/04/some-useful-sql-scripts link and modify the query as per your requirement.
    Thanks,
    Neetu

  • Usage of reports RDBMIDOC  & BBP_PD_SC_GETLIST?

    hi friends
    Usage of reports RDBMIDOC  & BBP_PD_SC_GETLIST?
    Regards
    Vinny

    This is a functionality in the system using which data can be distributed to other system when they are changed. The below SAP Help will provide detailed information.
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/12/83e03c19758e71e10000000a114084/frameset.htm
    Just out of curiosity:
    You are posting queries in a very diversified manner i.e. ABAP, SRM, Program related details. I just wonder what you are up to. Quite a lot of them are very basic ones. Are you learning ABAP or SRM ?. What ever it may be, just a small suggestion, SDN has a huge store of information. You can get all you need here. You just need to do a search in the forums/articles/wiki first, before posting a thread; because most of them could have been asked by some one earlier, many fellow members would provided very good suggestions. This will save a lot of your time. This is just a friendly suggestion, nothing meant to hurt you.
    Regards
    Kathirvel

  • What is "Default" in Usage Statistics report detail?

    I am running RoboHelp Server 8 and am outputing the "Usage Statistics" report which has an option to report on Browsers and Operating Systems. In the results for both is a category called "Default" (see images below). Does anyone know what this means? If you can answer that, maybe you can also tell me what the "Unknown" operating system is? I suspect this maybe an Apple Mac user as I know one of our users has tried accessing the help through the application installed on a Mac.
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.
    Follow the RoboColum(n) on Twitter

    Further to my previous post, I can confirm that the "Unknown" operating system is definitely NOT an Apple Macintosh user. Having run the report on another area, a seperate "Macintosh" category is displayed thus leaving me in the dark again. If anyone can shed some light on this and the "Default" category I'd be very grateful.
    Read the RoboColum(n) for a tips, tricks and musings on the Technical Communication Suite products.
    Follow the RoboColum(n) on Twitter

Maybe you are looking for

  • Is there a way to view a Genre Column in the iTunes Store?

         I have some file (That I did not download from iTunes). And their names were all messed up. But I was able to fix them by using the iTunes store and finding names, artist's, and etc. But when it came to Genres I could not find the Genre Column i

  • Add PROPERTY to Fields for "Field Name"

    I want to have each field with a unique name when it arrives in the Responses report. Then, when I export to csv or Excel, I can manage the data knowing each column has a well-formatted and unique name. This is unique from the field's "text". I read

  • Using the transaction launcher to call a BOR method to display a PDF

    Hello gurus, I have created a PDF icon and an onclick action to open a pdf, that displays on every row of an assignment block in the actions column, but I do not know the technical process to determine how to get a PDF from the IXOS system from the l

  • Change protocol adapter (Oracle Forms)

    I am trying to connect the SSL database from Oracle Forms. The problem is that the database is configured with a protocol adapter TCPS instead of only TCP. In Oracle Forms when connecting the database from the menu "File--Connect... " it presents the

  • How is the performance of Oracle Teradata Gateway?

    Hi, We need to speed up the Teradata extraction and load to Oracle tables on HPUX. The total volume tops about 200GB. Will using Oracle Teradata Gateway help data transfer and load perfomance? Currently we download first from teradata and then load u