Forecast values in Demand Planning

Is there a way to obtain forecast values right to the way they are splitted and alloted to Customer groups/markets etc when the user enters values to Saleable CDP line or a certain keyfigure line/row in any view of the planning book. Calculations are done behind via macros etc.Can I Know the table name where it is split & stored in SAP tables.Thsi is required as I need to retrieve the information in the user exit BAdI /SAPAPO/SDP_SAVE to retrieve them ? Transaction is /SAPAPO/SDP94.
Thanks
Savitha

hi Glason
if the values have been changed by the user community, I am not sure if there is a way to find out. However if there is technical flaw in data processing, you can check for the steps as posted in the above post.
We faced a similar issue in our project. We were not able to trace the user ids under which the values were changed. However since we retain the 15 days of back up, we were able to check that the values were changed on a certain date but not the user ids. but we were still able to restore the original values.
As an additional step, we also developed macros to store (in the form of alerts) the exisitng value and the updated value incase the there was a manual change in the Sales forecast and other editable key figures.  This ensured that there was a check if there was a manul change. we also ensured that these macros were not executed during the background jobs.
SAP also provides a standard SAP APO Change Monitor add-on which can be used to track chnages to the key figures. Please refer to note 1308968 for further information on the add on.
let me know if this helps.
Rgds, Sandeep

Similar Messages

  • DP - Sales and Demand Forecast values in the Planning book were increased.

    Dear DP Experts,
    The Sales and Demand Forecast values in the Planning book were increased.  Is there a way to tract who user could have made the changes?  Can we view the last change like in the document flows?
    Thanks,
    Glason

    hi Glason
    if the values have been changed by the user community, I am not sure if there is a way to find out. However if there is technical flaw in data processing, you can check for the steps as posted in the above post.
    We faced a similar issue in our project. We were not able to trace the user ids under which the values were changed. However since we retain the 15 days of back up, we were able to check that the values were changed on a certain date but not the user ids. but we were still able to restore the original values.
    As an additional step, we also developed macros to store (in the form of alerts) the exisitng value and the updated value incase the there was a manual change in the Sales forecast and other editable key figures.  This ensured that there was a check if there was a manul change. we also ensured that these macros were not executed during the background jobs.
    SAP also provides a standard SAP APO Change Monitor add-on which can be used to track chnages to the key figures. Please refer to note 1308968 for further information on the add on.
    let me know if this helps.
    Rgds, Sandeep

  • Forecasting Models in Demand Planning.

    Hi experts,
    want to know in details and also to practice various forecasting models in Demand Planning, from beginning.
    please suggest.
    Regards
    Bhupendra

    Hi Bhupendra,
    There are various forecasting models to use in business like automatic model and manual model as a broad category. 
    In detailed, there are models like constant model, trend model, season models, trend seasonal etc.,
    Forecasting models are very simple and mostly based on STATISTICAL TECHNIQUES.  If you have sound knowledge in various statistical methodologies, it will be very easy to followup all the models.
    Moreover, while selecting the best model for an organisation, one needs to study and identify the key performance indicators for improvement and accordingly the forecast model needs to be aligned.
    The method to find this kind of model is the BEST FIT METHOD (it could be one or more or combo of it).
    In demo systems or sandbox system, you can populate various data with various models and try to analyse the one which satisfies business requirements. You can also take the help of BUSINESS PLANNING ANALYSER to build the customised forecasting model which can be part of business side or from consulting side.
    Regards
    R. Senthil Mareeswaran.

  • Transfer forecast values to demand management

    Hi Gurus,
    Can anyone let me know how i can transfer the forecast values to the demand management on mass as a background job.
    Thanks,
    Ravi

    Hi Brahmankar,
    Thanks for the reply.I would try with MD70 and let you know.Can you please answer my other threads on the forecasting.I am really waiting for answers but unfortunately could'nt get any.
    Please look into the below thread and answer.
    Rough cut planning profile
    Thanks,
    Ravi
    Edited by: kumar s on Sep 1, 2009 2:18 PM

  • Forecast Model in Demand planning and  E book Sap trainingcourse

    Dear Experts ,
    I am Exploring differnt Forecast Model , like  constant
    model, trend model, seasonal model, trend and seasonal model, Croston method
    with exponential smoothing, linear regression, and causal models with multiple
    linear regression (MLR).
    is there any SAP links or material or course availabe to learn more about Forecasting Techniques that we can use in Demand Planning in APO
    if you have idea please help me to learn .. i am really starving for this techniques
    Thanks in advance
    Cheers & Thanks
    Raj

    Hi Raj
    Below link will give you entire information on forecasting models, forecasting accuracy technequues etc,:
    http://help.sap.com/saphelp_apo/helpdata/en/33/437a37b70cf273e10000009b38f8cf/frameset.htm
    For MLR refer the following link:
    http://help.sap.com/saphelp_apo/helpdata/en/ac/216ba4337b11d398290000e8a49608/frameset.htm
    Which is the best model to use:
    You should try running forecasting using various model(seasonal, seasonal linear, linear, constant etc) and comapre
    the forecast accuracy and find out which one is the best suitable.
    Another way is to choose auto model which will select the best possible forecast strategy and give the result.
    I hope thos will help you.
    Please let us know if you require any more information.
    Thanks
    Amol

  • Demand Planning: How to create a forecast in ODP

    Our client is using Oracle Financials OM etc however it currently uses a separate tool for forecasting. We are planning to start forecasting in Oracle Demand Planning.
    Following is the simplified calculation for forecasting, how can this be done in ODP:
    Calculation is done for item type, 2 calculations are done for every month (X and Y changes every month):
    JAN:
    1. A= X% of Jan sales
    2. B= Y% of last year sales
    The forecast should pick greatest number among A and B (it should not pick A+B).
    Is this possible in ODP, how to setup the forecast and its calculations.
    Thanks in advance.

    You could do this in ODP using the absolute value function and some formula measures.
    I assume you are familiar with formula measures in ODP and hence I will focus only on the math behind the formula measures. I am ignoring the percentage aspect that can be easily achieved using formula measure capabilities.
    The result set that you want is the following:
    if X > Y return X else Y
    Formula measure 1 = FM1 = X + Y
    Formula measure 2 = FM2 = = |X - Y| (absolute value)
    Formula measure 3 = (FM1 + FM2) / 2
    How does this work?
    |X - Y|
    returns Y - X if Y > X
    returns X - Y if X > Y
    if X > Y then the result is
    (X + Y + X - Y)/2 = X
    if X < Y, then the result is
    (X + Y + Y - X)/2 = Y
    This will give you the results you want.
    Note: the formula measures apply at all levels of the hierarchy and is not the aggregation from the lowest levels.
    Please be careful and validate this solution against your total set of requirements.

  • Demand Planning and eSOA

    I am an SCM consultant, with particular interest in Demand Planning.
    I am experienced with SAP APO, but am now interested in how the emerging eSOA environment can help with Demand Planning solutions.
    Can anyone share thoughts/experiences of how web services in general and SAP eSOA in particular can provide 'added value' to Demand Planning?
    Thanks,
    Bob Austin, Atos Origin

    Generally speaking, the demand plan or forecast is ultimately the "image" of the demand side that the supply side wishes to "mirror" or fulfill against. This view is a consolidation of many views from several players on the demand side -- whose input is provided to a much smaller group of planner-users of the Demand Planning tool.
    What eSOA does is to essentially extend the Demand Planning process to this larger audience via a number of means:
    The new Duet/Excel capability is one example of this extensibility. Think of all the spreadsheets that are being used to do <i>something</i> associated with the demand management process that you can now start to inject some process discipline and control into.
    Another example is the ability to integrate with tools like 3rd party sales force automation or channel partners across mobile devices, etc. Because eSOA decouples the interaction layer from the data itself, I now have greater flexibility to extend and collaborate across an increasingly fragmented "demand chain" and different types of users and devices. The opportunity to add value requires some analysis and creativity -- but we are in the age of user-driven innovation and eSOA is designed for this "self service" paradigm.
    Hope this helps.

  • Release Demand Planning to Supply Network Planning

    1. /SAPAPO/MC90 - Release Demand Planning to Supply Network Planning
    In the above t.code i am not able to change the target planning area- it has greyed out
    2. I need thisto be changed becuase i have defined my own snp planning area.
    any clues how to do this >
    reg
    dsk

    hi dsk
    Dont worry about the greyed out target planning area in the "release :extended" option. It is the default. In general if you release the forecast from a demand planning book , it means that you are releasing the foreacast values from the time series live cache to order live cache. That is the forecast value which was just a quantity value in the time series live cache will now be associated to a specific category.
    Once you release the forecast from DP to SNP you should be able to see the forecast value in all the SNP planning books that have forecast key figure. The forecast is not released to a specific planning book, it is released to the order network and will be available to view in all SNP planning books. So just go ahead and execute MC90 . After that you can make sure if the values are reflecting in SNP by going to /n/sapapo/rrp3 and checking the material . You should be able to see values under cateogry "FC Req". After this you can try loading the material in planning book and u must be able to view the results.
    Thanks
    Saradha

  • How to configure for the give senario where we from APO demand planning, we provide baseline forecast into TPM

    Hello Guru's,
    Request for information on smart documentation on the integration between Trade Promotion Management and SCM-Demand Planning from an architecture perspective how to configure for the give senario where we from APO demand planning, we provide baseline forecast into TPM and from TPM promotions values can be considered in to APO demand planning: can anybody give me some insight on it.
    Thanks in advance.
    Kumar

    Hi Praveen
    There are several ways you can connect a DP system to a TPM. How are your interfaces and systems setup?
    Option1:
    Extract the baseline from APO to a BW cube, extract the data out of BW, may be using infospokes/open hub and pass it on to TPM.
    2. Have a custom program written in APO-DP to extract the selected keyfigure data at the aggregation level into an interface or a .txt file into APO directory and use some data transfer service such as EDI to take this data and send to TPM.
    In my experience it is simple to define an integration process. The much larger and complicated aspects are the date adjustments and the aggregation levels.
    Date adjustments:
    Understand the basis of the data in APO and TPM. APO is usually at the requested delivery date or material availability date ( when the customer like a store wants the product). However TPMs are usually at the consumption date ( when an end customer like you and me but from store shelf). Depending on the product and business style this can mean several days difference. Let's say it is 25 days on average, you need to add 25 days to APO base line date to get the TPM consumption date.
    Aggregation level:
    This can be product or customer. If the planning in DP is at product sku level and the TPM is at packs or brand level, you need to aggregate the data up before loading to TPM. The same with customer.
    To me the most complex part of the integration is to understand and transform the data in a meaningful way and a strategy to sustain this integration by keeping both DP and TPM in sync in terms of master data. Also important to have a process for identifying exceptions and failures. you send baseline from DP to TPM and if it fails, how do you know? how do you trouble shoot?
    Hope these help.

  • Which table can we see consumption and forecast values in forecast based planning

    Dear SAP Gurus,
    I am working on implementing forecast based planning for Spare parts for my client. They have one Main Plant which do purchase of Spare Parts and through Stock transfers moved to 60+ Plants from where Spares are being sold.
    Now I am carrying out SAP trial runs for a set of 160+ materials with various models and want to compare with their existing methodology of requirement calculation.
    I want to compile Consumption and Forecast data month wise for these trial materials (160+ materials in 60 Plants) . One way I thought is to go individual Material Master and looks for values in Forecast view. However it is tedious and time consuming.
    The table name shows RMCP2 and RM03M for forecast and Cons values, but I could not find the table.
    Hence I want to know which table if I can view I can get the consumption and forecast data calculated for quick copying and compilation. 
    Thanks and Regards,
    R.Velmurugan.

    Dear Mariano,
    Thanks for your valuable inputs.
    Like I could able to get the consumption values for materials using table MVER and fields GSV01,GSV02 etc.,
    What field I need refer in table PROP for getting forecast values.
    As such I could not see any column where in data are similar to Forecast view.
    Thanks and Regards,
    R.Velmurugan.

  • Demand Planning - No authorization for all characteristic values selected

    Hello All,
    I am trying to load the data and it is giving error "You do not have authorization for all the characteristic
    values selected".  I can access the data in sandbox but not in Development. SU53 of both are same.
    Also the roles are same in both the system.  /sapapo/mc77 - maintain selection assignments is also same in both the systems.
    Thank you for the help.
    Regards
    Pratap

    Hi,
    This is a case of inadequate authorization for display or execution of demand planning.
    I don't understand what you exactly mean by
    "su53 of both are same".
    SU53 gives you a list of the authorization check that the system last executed on the ID.
    Here r some suggestions. do an su53 immediately after the authorization error message is flashed.
    It shall give you the authorization object which is required for that activity that you were attempting.
    Also it suggested the name of role/s which have the required authorization object already present.
    It is possible that you might have ALL authorizations in dev system, but the quality and production systems are usually the area where selective authorizations are to be used.
    Hence the basis team might not have given you all the authorizations in the higher system where you are facing the above issue.
    Hope this helps
    Regards

  • SAP ERP - Demand Planning and Forecasting

    Dear all,
       my customer is a wholesale company. They want to use a component in SAP ERP (not SAP APO), in order to make demanding planning and forecasting for the materials , quantities and dates they should make the purchases in order to cover the demand of their customers. What is the component that should be used in order to achieve this?

    MRP can be used without production planning. SOP and Demand Management are not Production.
    Nevetheless, if you want a simpler planning cycle, provided that you understand its ads and cons, you could go for Consumption Based Planning MRP.
    See this link for details:
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/7d/c2821c454011d182b40000e829fbfe/frameset.htm
    Mario

  • Customer Forecast Management vs. Collaborative Demand  Planning

    Hello,
    Currently my client is trying to replace 40-50 raw excel format forecast which they receive from multiple customers with SAP APO.
    They use a consolidated format and upload it into another 3rd party tool currently.
    My question is which best suits the purpose in short term as they are very limited on resources. I would also like to know the difference between using Customer forecast management vs. Collaborative demand planning in this context.
    Thank you all,
    Sai.

    You can use the GATP functionality known as Product Allocation for this scenario. This will basically mean that you need to maintain product allocations against each customer in your GATP planning book and every time you create a sales order in R/3, the quantity will be checked against the allocated quantity in APO GATP. If the quantity exceeds the allocated quantity for that given month, then sales order cannot be confirmed.
    You will need to explore this funcionality in APO GATP and this should help your requirement.
    Cheers,
    Srinidhi

  • Spare parts Demand Planning and Forecasting SCM

    Hi ,
    I am APO DP consultant can any body help me on questions on AS-IS and To-Be analysis Of Spare Parts Demand Planning and forecasting in SAP SCM.
    If You have any Documents or links or nay information on these please give replay.
    Ram

    Dear Ram..
    SPP is purely base on BOD (Bill of Distribution)..
    following are the points u can cover in AS is TOBE..
    1. On what Level (Chs) the Client performing Spare Parts Planning?nd how u want to disagreegate on lowest level ie.Hierarchy Level?
    Ex. from Region..to Branch..to ..Customer..
    2. Have u configured Spare Parts in R/3?
    3. What is the Pattern of Sales History?Seasonal/Trend/Constant  etc?
    4. u can ask questions on Deployment...Inventory?
    5. What is the Lead Time for Procurement?Distribution?Transportation?
    for more details...
    http://help.sap.com/saphelp_scm50/helpdata/en/a3/7ed240caeb752ae10000000a155106/frameset.htm
    Rajesh Patil
    SPINNOVATION

  • Interactive demand planning  -statistical forecasting error

    Hell APO DP experts,
    We are implementing CBF functionality in demand planning. In /SAPAPO/SDP94 - Interactive Demand Planning, when we try to run forecast we are getting a message:
    Not possible to carry out the forecast  -  no historical data
    Message no. /SAPAPO/MA502
    although the historical data is there.
    Any info on this?
    Regards
    Pandit

    Hi,
    If you are working on SAP APO 4.0/4.1,
    Check OSS Note 790517 - No error message "No historical data available".
    Implement the corrections as mentioned in the message.
    Warm regards,
    Prem

Maybe you are looking for

  • Cleaning my Mac

    I have a 2008 iMac Desktop with 2.4 GHz Intel Core 2 Duo processor and 1GB 667 MHz DDR2 SDRAM which was used primarily as a family computer when I purchased it. Now that I have purchased everyone in the family MacBooks, I have reclaimed the iMac and

  • In windows, scheduling a sync?

    the ipt is in its cradle all night with itunes running. itunes is setup to check for new pod cast every hour, but it doesnt sync the new pod casts over automatically. is there a way to tell the ipt to sync every so often, or tell it to sync at a cert

  • Project will not burn...

    Hi. Trying to burn a project in idvd i go to the burn icon click it opens then click to burn and nothing it just glows faster without spinning and closes again. Nothing happens no encoding nothing. The project is 3gig onto a standard dvd so plenty of

  • [SOLVED} no write access to qnap

    Hello all, built a new system, installed Arch64, had Arch32 on previous build. I set up my /etc/fstab file per  my last post: https://bbs.archlinux.org/viewtopic.php?id=114716 however, I can't seem to copy any files to my qnap device. when I issue a

  • PS 3210 rejects label paper

    I am trying to print Christmas card labels onto 'Office' ST2100 label sheets. When I load the paper onto the main tray my printr feeds it straight through without printing. If I have plain paper below the label sheets it feeds the labels straight thr