How to Create an Input Schedule Comparison with Data Using EVDRE

Hello,
I try implement the scenario described in "How to Create an Input Schedule Comparison with Data Using EVDRE".
Once I am using the "Insert Function" from the panel and selecting the EVTIM function Excel crashes (see page 8 How to paper).
Systems:
BPC 7.0 NW SP02
Office 2007
BPCADminClient and BPCOfficeClient up to date
Have anyone a solution?
Thanks
Oktay

Hi Oktay -
This function works in my BPC70NW SP02 system. Your issue might be that you are trying to access a TIME member that does not exist. Please make sure the offset value is a valid dimension member.
I can confirm that EVTIM does allow the offset for base members (such as 2009.MAY) as well as parent nodes (such as 2009.Q1 or 2008.TOTAL)... BUT...the offset result of the EVTIM function needs to be a valid dimension member!
Regards,
Sheldon

Similar Messages

  • How to create a webservice in Tomcat with the use of Axis

    I am very new to webservices. I am suppose to create a webservice in Tomcat with the use of Axis. I have downloaded all the required jars.
    Please help me how to start.
    Thanx in advance.
    [email protected]

    Check out the Axis user's guide at: http://ws.apache.org/axis/java/user-guide.html

  • How to create an input enabled query with Integrated Planning

    Hello experts. I have created an aggregation level in IP and I am trying to create an input enabled query based on this aggregation level.  My problem is in the properties.  On the query properties planning tab the Start query in change mode is grayed out and I am unable to select it.  Also on all the chararteristic properties on the planning tab, the planning settings are all grayed out as well and the No budgeting is selected.  There is a red exclamation here that says 'function not supported by server'  Any ideas?  Points will be awarded.
    Peter

    hi,
    go through this help for the procedure...
    [http://help.sap.com/saphelp_nw04s/helpdata/en/43/1d023a41130bd5e10000000a422035/frameset.htm]
    hope it helps...

  • How to create a Finish Schedule List with InDesign?

    We create Room x Room selection catalogs with images and brief descriptions for architectural & Interior design projectsl.  How can I export the text description into a Finish Schedule list(spreadsheet) for contractors to order materials from this indesign catalog.

    Give the Text Decsription a unique Paragraph Style name.
    Then use the Layout>Table of Contents
    And only select the Unique Paragraph Style name to generate a separate table of contents.
    Export that text as a .txt file.
    Open it Excel

  • How to create a timer in forms with out using pjc

    Any body help me rgarding this matter..
    plez..

    That i know but how i assign this timer in an objects..like text bos or dispplay item????

  • How to create an dynamic internal table with the structure of a ddic table

    Hi all,
    I want to fill ddic-tables (which I already created) in my abap dictionary with data out of CSV-files (which are located on the CRM-Server).  The ddic tables have different amount of fields.
    I started with creating a table which contains the name of the tables and the path to the matching CSV-file.
    At the beginning I'm filling an internal table with part of this data (the name of the ddic-tables) - after that I am looping at this internal table.
    LOOP AT lt_struc ASSIGNING <lfs_struc>.
         LOOP AT lv_itab1 INTO lv_wa1 WHERE ztab_name = <lfs_struc>.
         lv_feld = lv_wa1-zdat_name.
        ENDLOOP.
        CONCATENATE 'C:\-tmp\Exportierte Tabellen\' lv_feld INTO lv_pfad.
        Do.
        OPEN DATASET lv_pfad FOR INPUT IN TEXT MODE ENCODING NON-UNICODE IGNORING CONVERSION ERRORS.
        READ DATASET lv_pfad INTO lv_rec.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        enddo.
        REPLACE ALL OCCURRENCES OF '"' IN lv_rec WITH ''.
        SPLIT lv_rec AT ';' INTO TABLE lt_str_values.
        INSERT into (<lfs_struc>) values lr_str_value.
        CLOSE DATASET lv_pfad.
    endloop.
    This is not the whole code, but it's working until
    SPLIT lv_rec AT ';' INTO TABLE lt_str_values.
    I want to split all the data of lv_rec into an internal table which has the structure of the current ddic-table, but I didn't find out how to do give the internal table the structure of the ddic-table. In the code I used an internal tyble type string but I should be the structure of the matching tabel.
    If I try to create an internal table by using a fiel symbol, I am told, that the data types are not matching.
    Has anyone an idea?

    Hi Mayari,
    though you were successfull with
    METHOD cl_alv_table_create=>create_dynamic_table
    I must warn you not to use it. The reason is that the number of tables created is limited, the method uses GENERATE SUBROUTINE statement and this triggers an unwanted database commit.
    If you know the DDIC structure, it is (starting with ECC6.0) much easier:
    field-symbols:
      <table> type standard table.
    data:
      lr_data type ref to data.
    Create data lr_data type table of (<DDIC structure>).
    assign lr_data->* to <table>.
    The split code can be simplified gaining speed loosing complexity not loosing functionality.
    field-symbols:<fs_s> type any.
    field-symbols:<fs_t> type any.
    SPLIT lv_rec AT ';' INTO table it_string.
    loop at it_string assigning <fs_s>.
      assign component sy-tabix of wa_string to <fs_t>.
    if sy-subrc = 0.
      <fs_t> = <fs_s>.
    endif.
    at last.
      append <fs_itwa3> to <ft_itab3>.
    endat.
    endloop.
    Though it may work as Keshav.T suggested, there is no need to do that way.     
    Regards,
    Clemens

  • How to create am email subscribe form with EA?

    I know how to create the input elements, but how I create the form element directly in EA?

    Thanks. I have it working now.
    One problem working with most e-mail list providers is that the response, when someone subscribe to a list, is anew html page that replaces the one you have. In most cases that is not an issue, but if you want to keep the flow in your page it is.
    The typical way to solve the problem is by not using the default forms, but by creating one that works through a PHP or other server side script that can receive a response that can handle anyway you want on the fron end.
    Since I am trying to see what can I do without depending in particular sewrver side code, that was not an option for me.
    The way I solved was dynamically creating an iframe inside EA so the response html page will be restricted to that area, which I can manipualte from EA.

  • How to create a custom function module with the records in SAP R/3?

    Hi All,
    How to create a custom function module with the records in SAP R/3? Using RFC Adapter I have to fetch the custom function module records.
    Regards
    Sara

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • How to compare result from sql query with data writen in html input tag?

    how to compare result
    from sql query with data
    writen in html input tag?
    I need to compare
    user and password in html form
    with all user and password in database
    how to do this?
    or put the resulr from sql query
    in array
    please help me?

    Hi dejani
    first get the user name and password enter by the user
    using
    String sUsername=request.getParameter("name of the textfield");
    String sPassword=request.getParameter("name of the textfield");
    after executeQuery() statement
    int exist=0;
    while(rs.next())
    String sUserId= rs.getString("username");
    String sPass_wd= rs.getString("password");
    if(sUserId.equals(sUsername) && sPass_wd.equals(sPassword))
    exist=1;
    if(exist==1)
    out.println("user exist");
    else
    out.println("not exist");

  • How can I share my schedule information with my wife on her accounts and devices?

    My wife and I have separate accounts in our MacMini and MacBook.  We each have an iPhone.  She uses GMail.  I use Mac Mail.  How can I share my schedule information with my wife on her accounts and devices?

    It is not advisable to follow the above suggested method. The following will do what you want without complications.
    1. On your Mac, go to http://help.apple.com/icloud/#mm6b1a9479 and follow the instructions to share a calendar privately. If you have more than one calendar you want to share you will have to do each individually. You can choose whether she is able to edit it or whether it should be read-only.
    2. If your wife does not have an iCloud account she will need to obtain one. When you share a calendar and nominate her to access it she will receive and email. All she has to do is to open the email and click 'Join Calendar'. This will add the calendar to her Calendar app on all devices and on icloud.com without affecting any other data. Again, this will have to be done individually if more than one calendar is involved.

  • How to create user editable Crystal Report with dynamic dataset

    What I would like to achieve:
    A program loads a report in runtime updates list of database fields (possibly includes sample data), open report in "Crystal Reports 2011" (or 2008) where user customizes report and saves it. Later on the program loads the report, fills actualized data and displays it in .net report viewer.
    What I do:
    CrReport = New CrystalDecisions.CrystalReports.Engine.ReportDocument
    CrReport.Load(TemplateFilename)
    Dim Results As DataTable
    DataTable is filled from a database
    CrReport.SetDataSource(mResults)
    CrReport.SaveAs(NewReportPath, True)
    The NewReportPath is opened in the default program.
    What are the problems
    The report is open in preview mode (not in design).
    When the field is added to the report the designer asks for XML datasource on preview.

    The short answer is that it is not possible. I broke the question to other two: How to save a report that it opens without preview? and How to create user editable Crystal Report with dynamic dataset, where it is possible to find details. Key answer is Re: How to create an editable previewable report?

  • How to creat the Varient for 1099MISC With Holding Tax

    How to create the Variant for 1099MISC With Holding Tax ?

    HI,
    please follow the below steps to create variant at report.
    tcode se38
    report RFIDYYWT
    pass all the parameters
    press save icon
    give variant name
    retrive the variant in report
    tcode se38
    report name RFIDYYWT
    press : shift + F5
    or get varinat icon.
    I hope above will resolve your issue.
    Regards
    Madhu M

  • How to build dynamic input schedule from version

    Hi experts,
    I want to create an input schedule based on my category selection which will allow users to enter data to budget part but changing the actual part is prohibited.
    For example I have category member which is 2010-09-1. This means I am working on 2010 Budget which has 9 periods of actual and 3 periods of forecast and 2011 Budget. In my input schedule I would have 24 months from 01.2010 to 12.2011 and I will copy actual to budget for the first 9 months but I do not want users to change first 9 months actual data from input schedule.
    What solution can you propose for this in BPC NW ?
    Regards,
    ergin

    Hi Ergin,
    From the description you have provided, I guess you will have the TIME dimension in the Column. The CATEGORY would be set to 2010-09-1, lets suppose. In this case, the first 9 columns should be locked for any changes. For this, you need to use the Data Validation technique, which is native to Excel.
    select an empty cell, lets say D1. in this cell, you should fetch the value "2010-09" from the version "2010-09-1". If the version is changed to "2010-10-1", the cell D1 will be automatically updated and will show "2010-10". In the column, in the row just above the Time dimension, write a formula to fetch the year and monthnum property of the Time member. Lets say, the time dimension members are displayed in the cells E4 to AB4 (24 columns for 24 months). In the cell E2, you can write the formula, =EVPRO("application name",E$4,"YEAR")&"-"&EVPRO("application Name",E$4,"MonthNum"). This will return 2010-01 in the cell E2 for the member 2010.JAN. Similarly, for 2010.FEB, the cell should display "2010-02". We will keep the formula in E2 only. After the expansion, the formula also will be expanded for the other cells.
    Select the first data cell of the EVDRE report. Open Data Validation. In the Settings Tab, in the Formula field, write =D1>E$2. Then go to the error alert tab and choose the style as stop and give some title and message. This would typically mean that if value of D1 (in this case 2010-09) is not greater than E2 (in this case 2010-01), then the error message will be displayed, when we try to enter values in these cells. And it will not allow to enter any value.
    Once the EVDRE is expanded, this data validation will be copied into all the other data cells. So, in this way, the enter input schedule can be kept dynamic.
    Hope this helps.

  • How to create new view without interlinking with gantt chart or resource views

    ok clear
    one another question
       In msp how to create new view without interlinking with gantt chart or resource views

    Hi Shiv PMC--
    I splitted your question above in another thread in order not to have  a huge thread with many topics in it.
    That being said, I'm not sure to understand. A view is just a manner to display MS Project data with columns. A view can have a table with column (left part) associated with a Gantt chart. It can also just contain a table with no Gantt chart (like the task
    table) or a table with a timephased grid (resource and task usage).
    Please give us more information, maybe with a concrete example so we can help you.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • How to create labeled table of Content with expand and collapse

    Hi All,
    Can somebody help me how to create labeled table of Content with expand and collapse as example given below:
    User1
    Template1
    Template2
    User2
    +
    User3
    Template1
    Template2
    Like when we see expand (+) and collapse (-) button when we click on 'about this page' link.
    Thanks
    Bhupendra

    Hi,
    Tou can use Table inside table to show the details this way but I'm not sure about Expand/Collapse.
    Expand/Collapse are part of HGRID.
    I think we can develop this functionality with little manipulation.
    Regards,
    Reetesh Sharma
    Edited by: Reetesh Sharma on Jun 28, 2010 4:56 AM

Maybe you are looking for

  • Synchronizing Analog Output to Counter Input

    Hi! I'm really new to LabView. Pls help! I'm trying to obtain a set of stimulus signal and response signal from my motor for system identification. The stimulus signal will be generated by the Ao0 channel and response signal (quad encoder linear posi

  • HT202157 AppleTV 3rd Gen 5.1.1 update. Network dropout... help?

    I have updated my aTV Gen3 to 5.1.1 and now it keeps dropping off the network... help? I recently updated to iTunes 11, and was also prompted to update my aTV Gen3 to 5.1.1. Almost immediately, i was having issues with dropping off the network etc. I

  • Port problem while running  Run 'rmid ' command

    Hi I tried to run the follwoing command. D:\Material\EJB\Ejb\3eCode\StatelessSession\HelloWorld>rmid -J-Djava.security.po licy=rmid.policy The response is as follows Activation.main: an exception occurred: Port already in use: 1098; nested except ion

  • CST and Dynamic Reconfiguration

    I have installed the Configuration and Service Tracker add on for SMC 3.0 update 4. Works great except for systems that support Dynamic Reconfiguration. These boxes sporadically send CST alerts that a hardware change has been made. The comment is Dyn

  • Memory Hangs in Photoshop CS3

    Hello! I recently upgraded from a Mac Powerbook G4 1.67GHz with 2GB RAM to a Macbook Pro 2.4 GHz Intel Core 2 Duo with 2GB RAM. I did a clean install of CS3 on the new machine, and since then I keep experiencing memory hangs, mostly when interacting