Forecast future data

Dear All
Is it possible that we can perform various kinds of analysis like correlation analysis,regression analysis,volatility anlysis,statistical analysis etc.on historical data and forecast future price etc for using BI. If so please let me know how preferably with an example.
Any valuable suggestions with examples of how it can be done in BI in this regard are truly appreciated and rewarded with points.
Also please let me know how to analyze future trends based upon past data using BI.
Regards
Suresh

hai Suresh,
Check these:
http://help.sap.com/saphelp_nw04s/helpdata/en/43/174720c5dd3db4e10000000a422035/frameset.htm
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00915d56-1e31-2a10-6785-e8b5c4114de3
https://www.sdn.sap.com/irj/sdn/advancedsearch?query=integrated+planning&cat=sdn_all&start=11
Thanks,
Kiran Manyam

Similar Messages

  • Forecast future data using various analysis methods

    Dear All
    Is it possible that we can perform various kinds of analysis like correlation analysis,regression analysis,volatility anlysis,statistical analysis etc.on historical data and forecast future price etc for using BI. If so please let me know how preferably with an example.
    Any valuable suggestions with examples of how it can be done in BI in this regard are truly appreciated and rewarded with points.
    Regards
    Suresh

    Hi,
    I saw your Message regarding forecast future data using various analysis methods. I got the same requirement. Please let me if have any Document or approach on the same.
    regards
    raghav

  • Dynamic webform with actual and forecast scenarios data

    Hello,
    How to design a Plannning WebForm having 12 columns for months (Jan to Dec), displaying actual scenario data for past months, and allowing input of forecast scenario data for the current and future months ?
    I guess i could put 12 substitution variables in columns titles : &scen_i = actual or forecast.
    1) Is it OK ?
    2) No way to use Planning variables instead of Essbase variables ?
    3) Your solutions will be appreciated. Thanks
    Philippe Cuisset

    Well the idea of copying the actuals to fcst scenario is a good one. I have a similar issue currently where i have some actual months combined with FCST months. The problem is actual months must be read only and fcst must be writable. So even though i copy these actuals to Fcst, i cannot prevent users from changing actual months data.
    Another solution that i found is to use shared members. Creating a seperate member with chiildrens as months.
    I simply define Childrens of the member in the webform. After every month i add a extra child(month) without touching any of the webforms. I have not studied it entirely yet but sounds to be interesting Let me know your views.
    Thanx
    sam

  • Provisioning a user in future date

    Hello,
    Creating a new user and provisioned to OID work properly.
    Now I would like to create a user with start date in the future. OIM when the value USR_START_DATE is on the future it update the USR_PROVISIONING_DATE too on the same future date but not execute the provisioning to OID and the USR_STATUS is "Disabled Until Start Date"
    If there any way to update the USR_START_DATE with a different USR_PROVISIONING_DATE and do the provioning as normal and keep USR_STATUS as Active.
    thanks
    TG
    Edited by: TG on 1-Nov-2010 9:48 AM

    Hello again,
    i'm using the Thor.API.Operations.tcUserOperationsIntf.createUser((java.util.Map arg0).
    arg0 will contain USR_PROVISIONING_DATE=today date and USR_START_DATE = to the future date.
    I apply what your propose and push the USR_PROVISIONING_DATE=today date and put it on the pre-insert in Users form.
    sorry it did not work, it change the value in USR_PROVISIONING_DATE to put the USR_START_DATE value and didn't provisioned
    thanks
    TG
    Edited by: TG on 1-Nov-2010 10:47 AM

  • Purchase order error with future date

    Hi,
    Here one scenario like
    We have created a sales order VA01-->Pur. Order ME21N with current date i.e., 05.09.2008. System able to post perfectly and post MIRO, cutomer invoice and finally released to accounting.
    Now, same sales order VA01-->Pur. Order ME21N with future date i.e., 05.09.2009. System threws error message "Account requires an assignment to a cost object".
    Here my question is, why system is asking this assignment if i gave future date(05.09.2009) and why system is not asking if i gave current date(05.09.2008) ? remaining all are same except date
    Looking forward your comments/thoughts
    thansk
    anifi

    Hi,
    Thanks for your reply
    regards
    Edited by: Anifi on Sep 22, 2008 6:18 AM
    Edited by: Anifi on Sep 29, 2008 2:05 PM

  • How to disable the future dates in Date pick calendar - SQL Server Reporting Services

    Hi All, 
             I have a scenario to run the report only for the Past days, and i have datepick calendar as a parameter for selecting Start Date and End Date. I want to control the Users by not to select the Future Dates in the End Date. In Other Words, the user should not select beyond the Current Date,
    Is there any way for me to control it. Advance Thanks
    Regards,
    Sundarrajan.

    Hi
            Here is a solution for ur problem: put the below code in the script, and the add
    OnClientDateSelectionChanged="checkDate"
    in the calenderExtender... u ll get the answer nicely.. Happy coding..
    <script type="text/javascript">
    function checkDate(sender,args){
    alert("You cannot select a day greater than today!")
    sender._selectedDate = new  Date();
    sender._textbox.set_Value(sender.selectedDate.format(sender._format))
    }</script>

  • Future date not to be allowed in the tabular form

    Hi,
    I have a tabular form with 3 columns.. the first column name is DATE, the user is not allowed to enter a future date or a date greater than the sysdate, so as soon as the date value is entered I have to generate a javascript/dyanamic action that throws error... I don't want the alert message to pop up when the submit is pressed, when the user moves the cursor to the next column, error should be shown. Is this possible. I am using APEX 4.0

    Hello Suzi,
    I’m afraid I won’t be able to walk you through this issue as I need to leave the office, however I have some remarks for you.
    First, if you intend to practice JavaScript you should really find the time to learn and understand it. I can promise you it will worth your while, otherwise you’ll just waste a lot of time.
    Secondly, The values of the APEX items you are retrieving using JavaScript are strings. So, in your current code you are actually comparing two strings and not dates.
    Next. When you are validating your data using JavaScript you have to make sure that the user will take the necessary measurements to fix the problem. For example, you must place the cursor back in the offending field. Using the following:
      wwv_flow.f04[1].focus(); will set the cursor in the first cell of the ‘f04’ column. This code also suggest that wwv_flow.f04 is actually a JavaScript array that holds references (object pointers) to all the cells in the ‘f04’ column. You can go through them using a simple loop.
    You should also not use the onchange event in this case. Imagine that after your first error alert, and setting the cursor back to the offending field, the user just press tab to move to the next field. This time around, the onchange event will not be fired (as the value of the field has not changed) and you lost your validation effect. To force the JavaScript validation to fire every time you should use the onblur event.
    That’s all for now :)
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • A dynamic "future" date stamp

    Hello folks,
    I am looking to insert a future date automatically in a dynamic stamp. That is, I would like to be able to have the stamp automatically add X days to the current date. I have seen a lot of JavaScript forums, tried many of the proposed solutions, but have yet to find something that works for my dynamic stamp. Currently my stamp looks like this:
    event.value = (new Date()).toString();
    AFDate_FormatEx("mmmm d, yyyy");
    Amy help would be greatly appreciated. Thanks!

    Thanks for the suggestion.  I gave this a shot, and it simply displays today's date:

  • Future Date Restriction in Transaction J2I5

    Hi,
    Is there a possibility to restrict "Excise Register Extraction" for Future Dates in J2I5 T code?
    Please assist on this...

    Issue resolved by ABAP changes

  • O4NM or O4TEN  Create & Actualize a Ticket with future date

    Hi,
    I would like to create a ticket with future date; in the tab 'Movement Details'....'Start Date', 'End Date' & 'Posting Date'.
    Example: Ticket to be created with the start & end date as 05/20/02008.
    System throws error : Cannot actualize a ticket for a future date or time.
    Please suggest.
    Thanks
    Parveen

    Hi Sandil,
    During the ticket creation, when I'm entering the 'Start Date' and 'End Date' with a future date eg 05/30/2008; getting the error.
    The requirement is to create & actualize the ticket with dates 'Start Date', 'End Date' and the 'Posting Date' with future date.
    FYI, there is a significant number of tickets that are booked using end of the month date in order to avoid several fees. We also have to do closing and reconsolidations end of the month. These activities create a significant stress to complete tasks before deadlines. Along with that, we also have to complete ticketing that we scheduled for end of the month. Therefore, resolving the issue of been able to ticket and actualize tickets ahead of time would substantially make processes and procedures easy when we are stretched for time which we don't have towards the end of the month.
    Please suggest.
    Thanks
    Parveen

  • Correct end date to a present or future date - Section80 and 80C deduction

    Hi SDN,
    We are getting following exception for Section80 and Section80C deductions when click on Review button.
    Data valid only for past is not allowed, correct end date to a present or future date. Begin date should start from or higher. We have reset the valid From date to current financial year starting date(4/1/2011) using BADI HRXSS_PER_BEGDA_IN. But Valid to date it is taking 3/31/2011 instead of 3/31/2012. Where can we change this Valid to date. Please help me.
    regards,
    Sree.

    Dear Punna rao
    Kindly check this BADI HRXSS_PER_BEGDA_IN and activate it
    below is the IMG for this BADI
    Employee self service-->Service specific settings-->Own data->Change Default start date
    Ask your technical team to activate this BADI, as this requires access key to activate it. Kindly do this process & let me know the out comes, as this must solve ur issue.
    Hope this Info will be useful
    Cheers
    Pradyp

  • How to program mails to be sent in future date

    hi
    i would like to knwo how to program my mails to be sent in a future date.
    in the mail application and Outlook for Mac.
    (outlook for windows allows me to program de date a mail may be sent)
    best regards    

    You can use the Automator app to set an alarm on your calendar which sends the mail at a future time.
    It's simpler than it might sound.  This explains how:
    http://joannalaforet.wordpress.com/2010/02/08/schedule-mail-on-mac-the-easier-wa y-automator-ical-alarm/

  • Action needs to be triggered in future date

    Hi All,
    We have a requirement where we need to trigger an Action on Contract's End date. How can we define action, so that it would be triggered in future date automatically with out any user intervention. I have checked with Date profiles. That wouldnt help in this scenario. 
    Can we do this with events..? How can we schedule an event, so that the event would be triggered in future (ex. after 2 years)?
    Thanks in Advance!
    Regards,
    Rajesh.

    Hi Rajesh,
    A lot depends on how are you planning to schedule the action in your case. With actions a lot of different combinations of 'schedule condition','start condition', 'action merging' options and 'processing time' can be used to meet the requirements.
    If you want trigger the action immediately when the contract end date is reached, one of the options could be to use the condition contract end date = current date as schedule condition and then use the following:
    Processing Time = Immediate Processing
    Action Merging = Max. 1 Action for Each Action Definition
    Do not set a start condition.
    Thanks & regards,
    Ahmad

  • Background jobs are scheduled in future date

    Hi
    A system which is used by a customer test system was installed and scheduled the jobs in 2010( in future date).
    Now we have changed the date to current date. But still all the background jobs are in future date.
    There are around 500 jobs are scheduled. And it not possible to reschedule one by one.
    Is there any way workaround to change it back to current date format.
    Best Regards,
    Jai

    Dear Jai,
    The jobs scheduler should have this dates changed to current.  If its a third party system which are running these batches, then be careful to convey the same message to the 3rd party.
    If its in SAP, then the schedule change date should execute your jobs. At the same time, ensure that the transports between the test systems match to the destination.
    Do let me know for any clarification.
    Thanks
    Madhu

  • Goods Receipt in future Date

    Hi,
    Please tell me if i can restrict the production order for doing GR for a future date???
    If today is 22/10/2009, and i am trying to give the posting date in MIGO as 25/10/2009 then system should restrict it.
    Thanks

    HI
    Check this Badi   WORKORDER_GOODSMVT
    In REM  i have achieved the same with the help of BAdi RM_BFLUSH_GOODSMVT.
    Check the first one with the help of ABAPer
    Regards
    Anupam Sharma

Maybe you are looking for

  • Debt collectors chasing me for an account that was...

    Hello all, Received a phone call this afternoon from quite an aggressive lady from a company called Advantis and representing a third party called TDX.  She was quite cryptic at first and started out by asking me for lots of my personal details.  I w

  • Adobe AIR runtime silent install

    Hi, I know this question is asked often but I haven't found a solution for current release. I've downloaded this version : http://airdownload.adobe.com/air/win/download/3.5/AdobeAIRInstaller.exe which is the lastest one. I can run it and install it o

  • What is the use of Match(X) or Copy in Business Content Collected Obj..?

    Hi All, In Business Content, After doing Drog nd Drop on Collected Objects, There, after Install Icon(I) we will find <u><i><b>Match(X) or Copy (M)</b></i></u> ...... Can anybody tell me what is mean by it and why and where do we use it.....? Please

  • How do I upload an edited photo on my iPhone to photostream?

    New photos that I have taken with my iOS 5 devices (iPhone and iPad) upload to Photostream without any issues.  My question is about photos that I've edited in my Camera Roll.  When I edit a photo in Camera Roll, the updated photo is not uploaded to

  • Director network bug: Save As

    We have Director MX 2004 installed over an Apple network, and have one major problem: when a user attempts to SAVE AS, Director trashes the file completely. When we previously used Netware servers for user id authentication and storage this problem d