EVDRE Issue

Hi All,
We have designed an input schedule using EVDRE. Here expansion for Account Dimension members is set as SELF,DEP. In workbook options we have set the drilldown options as "Expand by inserting new rows".
The issue is as follows -
Say we have two nodes -
Node 1 (consisting of 4 members)
Node 2 (consisting of 5 members)
We double click on Node 1 and enter the plan values. The screen will look as follows -
NODE                          PLAN VALUE
Node 1
Member 1                   100
Member 2                   120
Member 3                    150
Member 4                    170
Node 2
We do not "Send and Refresh Schedules" as we wish to enter plan values in members belonging to Node 2. Hence we double click on Node 2..Once we double click on Node 2, all the plan values entered for members belonging to Node 1 disappear.
The screen appears as follows -
NODE                          PLAN VALUE
Node 1
Member 1                  
Member 2                  
Member 3                  
Member 4                   
Node 2
Member 1                  
Member 2                  
Member 3                  
Member 4                   
Member 5                  
We wish to plan for both the nodes and then send the data. Is there a way to do this?
Please advise.

Dear All,
I also worked on same issue.This option will work in NW Version also.After changing input schedule from Report.we have to do Expand all and then Refresh it. Once completed these things  then we have to save it...It will working fine
With Regards
BrahmaReddy Kolli

Similar Messages

  • How can I modify this makefile to create proper ARMV7 dylibs?

    I need to modify this makefile in order to create proper dylibs for inclusion in my IOS projects. If I just using the dylibs generated without changing this file, I get this error trying to use the dylibs:
    ld: warning: ld: warning: ignoring file Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    libbson.dylib, file was built for unsupported file format
    ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (armv7s):
    Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    libbson.dylibignoring file
    Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    libmongoc.dylib, file was built for unsupported file format
    ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (armv7s):
    Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    libmongoc.dylib
    Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    The makefile:
    # MongoDB C Driver Makefile
    # Copyright 2009, 2010 10gen Inc.
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    # http://www.apache.org/licenses/LICENSE-2.0
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    # Version
    MONGO_MAJOR=0
    MONGO_MINOR=6
    MONGO_PATCH=0
    BSON_MAJOR=$(MONGO_MAJOR)
    BSON_MINOR=$(MONGO_MINOR)
    BSON_PATCH=$(MONGO_PATCH)
    # Library names
    MONGO_LIBNAME=libmongoc
    BSON_LIBNAME=libbson
    # Standard or posix env.
    ENV?=posix
    # TODO: add replica set test, cpp test, platform tests, json_test
    TESTS=test_auth test_bcon test_bson test_bson_subobject test_count_delete \
      test_cursors test_endian_swap test_errors test_examples \
      test_functions test_gridfs test_helpers \
      test_oid test_resize test_simple test_sizes test_update \
      test_validate test_write_concern test_commands
    MONGO_OBJECTS=src/bcon.o src/bson.o src/encoding.o src/gridfs.o src/md5.o src/mongo.o \
    src/numbers.o
    BSON_OBJECTS=src/bcon.o src/bson.o src/numbers.o src/encoding.o
    ifeq ($(ENV),posix)
        TESTS+=test_env_posix test_unix_socket
        MONGO_OBJECTS+=src/env_posix.o
    else
        MONGO_OBJECTS+=src/env_standard.o
    endif
    DYN_MONGO_OBJECTS=$(foreach i,$(MONGO_OBJECTS),$(patsubst %.o,%.os,$(i)))
    DYN_BSON_OBJECTS=$(foreach i,$(BSON_OBJECTS),$(patsubst %.o,%.os,$(i)))
    # Compile flags
    ALL_DEFINES=$(DEFINES)
    ALL_DEFINES+=-D_POSIX_SOURCE
    CC:=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc')
    DYN_FLAGS:=-fPIC -DMONGO_DLL_BUILD
    # Endianness check
    endian := $(shell sh -c 'echo "ab" | od -x | grep "6261" >/dev/null && echo little || echo big')
    ifeq ($(endian),big)
        ALL_DEFINES+=-DMONGO_BIG_ENDIAN
    endif
    # Int64 type check
    int64:=$(shell ./check_int64.sh $(CC) stdint.h && echo stdint)
    ifeq ($(int64),stdint)
        ALL_DEFINES+=-DMONGO_HAVE_STDINT
    else
        int64:=$(shell ./check_int64.sh $(CC) unistd.h && echo unistd)
        ifeq ($(int64),unistd)
            ALL_DEFINES+=-DMONGO_HAVE_UNISTD
        endif
    endif
    $(shell rm header_check.tmp tmp.c)
    TEST_DEFINES=$(ALL_DEFINES)
    TEST_DEFINES+=-DTEST_SERVER="\"127.0.0.1\""
    OPTIMIZATION?=-O3
    WARNINGS?=-Wall
    DEBUG?=-ggdb
    STD?=c99
    PEDANTIC?=-pedantic
    ALL_CFLAGS=-std=$(STD) $(PEDANTIC) $(CFLAGS) $(OPTIMIZATION) $(WARNINGS) $(DEBUG) $(ALL_DEFINES)
    ALL_LDFLAGS=$(LDFLAGS)
    # Shared libraries
    DYLIBSUFFIX=so
    STLIBSUFFIX=a
    MONGO_DYLIBNAME=$(MONGO_LIBNAME).$(DYLIBSUFFIX)
    MONGO_DYLIB_MAJOR_NAME=$(MONGO_DYLIBNAME).$(MONGO_MAJOR)
    MONGO_DYLIB_MINOR_NAME=$(MONGO_DYLIB_MAJOR_NAME).$(MONGO_MINOR)
    MONGO_DYLIB_PATCH_NAME=$(MONGO_DYLIB_MINOR_NAME).$(MONGO_PATCH)
    MONGO_DYLIB_MAKE_CMD=$(CC) -shared -Wl,-soname,$(MONGO_DYLIB_MINOR_NAME) -o $(MONGO_DYLIBNAME) $(ALL_LDFLAGS) $(DYN_MONGO_OBJECTS)
    BSON_DYLIBNAME=$(BSON_LIBNAME).$(DYLIBSUFFIX)
    BSON_DYLIB_MAJOR_NAME=$(BSON_DYLIBNAME).$(BSON_MAJOR)
    BSON_DYLIB_MINOR_NAME=$(BSON_DYLIB_MAJOR_NAME).$(BSON_MINOR)
    BSON_DYLIB_PATCH_NAME=$(BSON_DYLIB_MINOR_NAME).$(BSON_PATCH)
    BSON_DYLIB_MAKE_CMD=$(CC) -shared -Wl,-soname,$(BSON_DYLIB_MINOR_NAME) -o $(BSON_DYLIBNAME) $(ALL_LDFLAGS) $(DYN_BSON_OBJECTS)
    # Static libraries
    MONGO_STLIBNAME=$(MONGO_LIBNAME).$(STLIBSUFFIX)
    BSON_STLIBNAME=$(BSON_LIBNAME).$(STLIBSUFFIX)
    # Overrides
    kernel_name := $(shell sh -c 'uname -s 2>/dev/null || echo not')
    ifeq ($(kernel_name),SunOS)
        ALL_LDFLAGS+=-ldl -lnsl -lsocket
        INSTALL_CMD=cp -r
        MONGO_DYLIB_MAKE_CMD=$(CC) -G -o $(MONGO_DYLIBNAME) -h $(MONGO_DYLIB_MINOR_NAME) $(ALL_LDFLAGS)
        BSON_DYLIB_MAKE_CMD=$(CC) -G -o $(BSON_DYLIBNAME) -h $(BSON_DYLIB_MINOR_NAME) $(ALL_LDFLAGS)
    endif
    ifeq ($(kernel_name),Darwin)
        ALL_CFLAGS+=-std=$(STD) $(CFLAGS) $(OPTIMIZATION) $(WARNINGS) $(DEBUG) $(ALL_DEFINES)
        DYLIBSUFFIX=dylib
        MONGO_DYLIB_MINOR_NAME=$(MONGO_LIBNAME).$(DYLIBSUFFIX).$(MONGO_MAJOR).$(MONGO_M INOR)
        MONGO_DYLIB_MAJOR_NAME=$(MONGO_LIBNAME).$(DYLIBSUFFIX).$(MONGO_MAJOR)
        MONGO_DYLIB_MAKE_CMD=$(CC) -shared -Wl,-install_name,$(MONGO_DYLIB_MINOR_NAME) -o $(MONGO_DYLIBNAME) $(ALL_LDFLAGS) $(DYN_MONGO_OBJECTS)
        BSON_DYLIB_MINOR_NAME=$(BSON_LIBNAME).$(DYLIBSUFFIX).$(BSON_MAJOR).$(BSON_MINOR )
        BSON_DYLIB_MAJOR_NAME=$(BSON_LIBNAME).$(DYLIBSUFFIX).$(BSON_MAJOR)
        BSON_DYLIB_MAKE_CMD=$(CC) -shared -Wl,-install_name,$(BSON_DYLIB_MINOR_NAME) -o $(BSON_DYLIBNAME) $(ALL_LDFLAGS) $(DYN_BSON_OBJECTS)
    endif
    # Installation
    ifeq ($(kernel_name),SunOS)
        INSTALL?=cp -r
    endif
    INSTALL?= cp -a
    INSTALL_INCLUDE_PATH?=/usr/local/include
    INSTALL_LIBRARY_PATH?=/usr/local/lib
    # TARGETS
    all: $(MONGO_DYLIBNAME) $(BSON_DYLIBNAME) $(MONGO_STLIBNAME) $(BSON_STLIBNAME)
    # Dependency targets. Run 'make deps' to generate these.
    bcon.o: src/bcon.c src/bcon.h src/bson.h
    bson.o: src/bson.c src/bson.h src/encoding.h
    encoding.o: src/encoding.c src/bson.h src/encoding.h
    env_standard.o: src/env_standard.c src/env.h src/mongo.h src/bson.h
    env_posix.o: src/env_posix.c src/env.h src/mongo.h src/bson.h
    gridfs.o: src/gridfs.c src/gridfs.h src/mongo.h src/bson.h
    md5.o: src/md5.c src/md5.h
    mongo.o: src/mongo.c src/mongo.h src/bson.h src/md5.h src/env.h
    numbers.o: src/numbers.c
    $(MONGO_DYLIBNAME): $(DYN_MONGO_OBJECTS)
        $(MONGO_DYLIB_MAKE_CMD)
    $(MONGO_STLIBNAME): $(MONGO_OBJECTS)
        $(AR) -rs $@ $(MONGO_OBJECTS)
    $(BSON_DYLIBNAME): $(DYN_BSON_OBJECTS)
        $(BSON_DYLIB_MAKE_CMD)
    $(BSON_STLIBNAME): $(BSON_OBJECTS)
        $(AR) -rs $@ $(BSON_OBJECTS)
    install:
        mkdir -p $(INSTALL_INCLUDE_PATH) $(INSTALL_LIBRARY_PATH)
        $(INSTALL) src/mongo.h src/bson.h $(INSTALL_INCLUDE_PATH)
        $(INSTALL) $(MONGO_DYLIBNAME) $(INSTALL_LIBRARY_PATH)/$(MONGO_DYLIB_PATCH_NAME)
        $(INSTALL) $(BSON_DYLIBNAME) $(INSTALL_LIBRARY_PATH)/$(BSON_DYLIB_PATCH_NAME)
        cd $(INSTALL_LIBRARY_PATH) && ln -sf $(MONGO_DYLIB_PATCH_NAME) $(MONGO_DYLIB_MINOR_NAME)
        cd $(INSTALL_LIBRARY_PATH) && ln -sf $(BSON_DYLIB_PATCH_NAME) $(BSON_DYLIB_MINOR_NAME)
        cd $(INSTALL_LIBRARY_PATH) && ln -sf $(MONGO_DYLIB_MINOR_NAME) $(MONGO_DYLIBNAME)
        cd $(INSTALL_LIBRARY_PATH) && ln -sf $(BSON_DYLIB_MINOR_NAME) $(BSON_DYLIBNAME)
        $(INSTALL) $(MONGO_STLIBNAME) $(INSTALL_LIBRARY_PATH)
        $(INSTALL) $(BSON_STLIBNAME) $(INSTALL_LIBRARY_PATH)
    scan-build: clean
        scan-build -V -v make
    test: $(TESTS)
        sh runtests.sh
    valgrind: $(TESTS)
        sh runtests.sh -v
    docs:
        python docs/buildscripts/docs.py
    clean:
        rm -rf src/*.o src/*.os test/*.o test/*.os test_* .scon* config.log
    clobber: clean
        rm -rf $(MONGO_DYLIBNAME) $(MONGO_STLIBNAME) $(BSON_DYLIBNAME) $(BSON_STLIBNAME) docs/html docs/source/doxygen
    deps:
        $(CC) -MM -DMONGO_HAVE_STDINT src/*.c
    32bit:
        $(MAKE) CFLAGS="-m32" LDFLAGS="-pg"
    test_%: test/%_test.c test/test.h $(MONGO_STLIBNAME)
        $(CC) -o $@ -L. -Isrc $(TEST_DEFINES) $(ALL_LDFLAGS) $< $(MONGO_STLIBNAME)
    %.o: %.c
        $(CC) -o $@ -c $(ALL_CFLAGS) $<
    %.os: %.c
        $(CC) -o $@ -c $(ALL_CFLAGS) $(DYN_FLAGS) $<
    .PHONY: 32bit all clean clobber deps docs install test valgrind

    Hi Petar,
    Thanks for your answer. No doubt that we could solve the issue using on of the way you suggested.
    However, even though I had the evdre issue right after applying time dimension modifications, it occurs that the evdre issue was not due to time dimension modifications. I tested it better and I can tell that using "total" as a level works.
    Best regards,
    Ludovic

  • How can I modify Time dimension to create a Top member above year members ?

    Hi experts,
    I would like to modify Time dimension to add a Top member above year members.
    I already did a test:
    I added a member in Time dimension which is the parent of all year members. I granted it these property values:
    - ID = TOTAL
    - EVDESCRIPTION = Total
    - LEVEL = TOTAL
    - HLEVEL = 1 (and I added 1 to all the other members)
    - TIMEID = 10000001
    All other properties were left blank for this member.
    I processed the dimension. It went well. But when I tried an evdre in BPC excel it failed.
    Any idea of something missing ?
    I am working on SAP BPC MS 7 SP4
    Thanks for your help
    Ludovic

    Hi Petar,
    Thanks for your answer. No doubt that we could solve the issue using on of the way you suggested.
    However, even though I had the evdre issue right after applying time dimension modifications, it occurs that the evdre issue was not due to time dimension modifications. I tested it better and I can tell that using "total" as a level works.
    Best regards,
    Ludovic

  • Issue with EVDRE migration

    Dear BPC Experts,
    We are migrating our environment from BPC 7.5 to BPC 10.
    We are in process of migrating our report, however, we have observed that post migration the changes/modification perform on the migrated report are not saved on the server folder with same file name (overwrite).
    Hence, we have to save the report/input form with different name, each time we make any modification to it and then only changes are saved.
    For example, after migration first we make changes to formatting and saved the report and close it. After that we find that 1 formatting style is missing, so we open the same report and do the changes and save it. The changes performed 2nd time are not available when we open that report from server folder.
    However, changes are available if we store the file with different name. The changes we perform 1st time and 2nd time, both are available.
    We are on SP 14 Patch 3 of EPM Add-in.
    Your help is highly appreciated.
    BR,
    Ashwin.

    Hi Ashwin,
    You may open a new folder on "server root folder" and save your new files there. After migrating each report you can upload there and change your old folder name as (Backup,etc) and change your new folder name with the old one. Thats how i solved this issue.
    Also you need to migrate from here:EPM>MORE>EVDRE MIGRATION for each report.
    Regards,
    Yigitalp

  • EVDRE Performance Issue

    Hello,
    We're working on a fairly complex EVDRE input schedule and are running into performance issues.
    The portion of the report generation that is taking the longest is where the status bar reads:
    "Applying DataRange Formulas"
    Does anyone know exactly what the EVDRE is doing when this is displayed and/or ways to make this step in the report generation process quicker?
    Thanks.
    Mike

    Hi Dries,
    I'm no BPC 7.0 SP3, SQL Server 2008 and Excel 2007.
    Thanks.
    - Mike

  • EVDRE Access Issue Post Upgrade from BPC 5.1 SP3 to BPC 7.0 SP6

    Greetings,
    Recently upgraded from BPC 5.1SP3 to BPC 7.0 SP6.  Experiencing some strange behavior regarding the ability to send data to BPC from an EVDRE.  Both users are part of the same secuity team, thus have the same security in both versions.  However, one is able to send data to BPC 7.0 SP6 for a specific input template while the other recieves a message "There is no data to refresh."    This message is not encountered in BPC 5.1 SP3.
    The strange thing is that the user who receives the "there is no data to refresh" is able to rebuild the input template ad hoc and send data to BPC
    I have reviewed security, cleared the cache on the user's machine.  I had the user with this issue log onto the app server; she encountered the same behavior regarding this template.  Also tested a seperate input template in another application, this issue did not occurr.
    Any ideas would be greatly appreciated.
    Regards,
    Greg Lakin

    Hi, n
       From your description it looks like the problem si more related to that specific user. Please try to reprocess the security for that user. Then go on file server and go into <appset>/<application>/<private publication>/<user name> and delete appinfo.zip.
       Other idea can be related to the excel cache, but I don;t know why is not working for this specific user. You can try to save it in a new template as Patrick indicated.
    You can try also clear local application information from admin client or try from other machine using the same client.
    Hope this can hekp you,
    Mihaela

  • EVDRE Measures Dimension Issue

    Greetings,
    Currently using Version 5.0.502.  We are encountering an issue with EVDRE reports when the Measures dimension is included in the ColKeyRange.  When Measures is included in the ColKeyRange, the EVDRE report will not retrive any values.  When Measures is not included in the ColKeyRange, the EVDRE report will retrive values.  Any ideas would be appreciated!
    Regards,
    GReg Lakin

    Version 5.0.502 is BPC 5.1 SP3.  There are several service packs following this release that you could take advantage of, or you should consider upgrading to the latest version 7.0 SP.  The process, while appears to be a big step and does have many variables would be a recommended path, sinc the current version of 5 is coming off of SAP maintenance at the end of this month.  SAP will take calls and support, but no additional changes will be built for version 5.1.

  • BPC NW SP5 with Windows 7 and Office 2010 -  issues with EvDRE reports

    Hi All,
         We are facing a BPC front end issue with the following symptoms:
    1. Any report with multiple EvDREs crashes out either instantly or within a few minutes of operation.
    2. Two EvDRE reports (or one report and one input tempate) crashes same as above.
    The crash is either an EvDRE error message or an endless wait for the server to respond (where we have to eventually terminate the application).
    We were suggested to move  to sp7 but the issues persisted.
    We do have a message and SAP is helping us investigate. What I want to understand from everyone is are there customres  successfully using this combination  (BPC NW SP5 Windows 7 and Office 2010) along with the above features?
    Customer is really loosing confidence in the solution and is eager to find out if we are the only one using this.
    Regards
    Anupam

    Hi Zach,
      While I do understand we need to isolate the problem but testing on different combinations, customer at the moment is not inclined for this and is looking for other customer references that this environment is stable.
    Regards
    Anupam

  • Mutiple EVDRE's in  Report - Overwriting rows issue

    Hi,
    I have 2 evdre's in my report. Rows from my 1st evdre is overwriting rows  in the 2nd Evdre.
    How to fix this?
    Thank you in advance.

    Hi nilanjan,
    EVDRE1
    RANGE     VALUE
    PageKeyRange     Sheet1!$F$3:$F$16
    ColKeyRange     Sheet1!$K$39:$L$39
    RowKeyRange     Sheet1!$I$41:$I$42
    evdre2
    RANGE     VALUE
    PageKeyRange     Sheet1!$F$20:$F$33
    ColKeyRange     Sheet1!$K$46:$L$46
    RowKeyRange     Sheet1!$I$48:$I$49
    The rowrangekey seems to be fine for me..but not sure why its overwriting the rows.
    Any other suggestions?
    Thanks for your help

  • Performance issue BPC 7.5 SP4

    Hi
    We have got performance issue after a upgrade from BPC 7.5 SP03 to BPC 7.5 SP04 Patch1.
    We got problem with EVDRE reports especially with large reports with a lot of settings in MemberSet or if we use filter on property in MemberSet.
    We have reports that expand in about 20 seconds on BPC 7.5 SP03 and takes about 25 minutes to expand after the upgrade to BPC 7.5 SP04 Patch1
    I have also made new EVDRE reports and vary simple reports works fine but when I increase the number of members to expand and the number of terms in MemberSet I works very slow.
    We have got about 10 applications in this Appset and the problem does only occur in one of this Applications
    I have processed all dimensions in the application and done full process and modify application without any error.
    I have also tried to create a log file on the EVDRE report to compare logs in the different applications and different ServicPacks but I only get data in the EVDRE_TRACE.TXT file and no data in the EVDRE_LOG.TXT file
    Anyone having the same problem?  Anyone who knows how to get the EVDRE_LOG.TXT file to work?
    Regards
    Fredrik

    Hi,
    Starting with 7.0 SP4 enable the logs is done into other way.
    Please follow the note:1328702
    Regards
    Sorin Radulescu

  • Issue in the Reporting feature of SAP BPC NW 7.0

    Hi everyone,
    I am facing an issue with respect to the Reporting feature in SAP BPC NW 7.0 version. I am supposed to generate a P&L report using the EVDRE function.
    Issue-
    In the report that I have generated, the system is retrieving only a subset of the broad-level P&L heads. e.g. while BPC is retrieving the EBITDA, EBIT and PAT figures, it is not retrieving the Depreciation, Interest and Tax figures in the report. All the members that are not getting displayed are members with ACCTYPE= 'EXP', while the ones getting displayed are members with ACCTYPE= 'INC'.
    Even though the 'EXP' figures are not getting displayed, the amounts are getting deducted correctly. (i.e. even though Interest amount is not getting displayed in the report, the PBT figure being displayed is correctly calculated as PBT= EBIT-Interest).
    Also, I am able to see the amount in Interest payments, if I drill to the base-member elements (G/Ls in my case)
    Would really appreciate if someone could shed some light on what might be the probable issue.
    Thanks in advance,
    Sameer Rane

    Hi Nilanjan/All,
    Thanks a lot for your reply. I suppose, I was not very clear about my problem. The issue is with regards to the value for the Account-dimension members with ACCTYPE = 'EXP' and not with the members per se.
    Setting the MemberSet Filter addresses the issue of getting particular Dimension members in the report. In my case, I am already seeing all the necessary members in my report (I have explicitly created a list of all the members I want to see in my report in the MemberSet parameter). However, I am not able to see any values for these members for any of the time periods (even though the values exist).
    Also, I don't get any values for some of the INC items as well (e.g. OperationsIncome) inspite of the fact that the base member G/Ls under this account hold values.
    Would appreciate any help towards resolving this issue.
    Thanks in advance,
    Sameer

  • BPC 7.5NW SP8 PERIODIC APP–EVDRE TOTALS USING YTD MEASURE ARE INCORRECT

    Hello u2013
    I have 4 application sets with periodic applications in which all measures are set up exactly the same in BPC 7.5 NW SP8. Time in each of the appsets includes months, quarters, seasons and year. Measures include Periodic, QTD, STD, YTD and Rolling12. All measures work correctly with the exception of one application in which the YTD measure is summing incorrectly. This issue exists in both the DEV and PROD environments for this application.
    The Time dimension is maintained using fiscal years. The fiscal yearu2019s months run from February -> January. Time uses the same setup in all 4 appsets.
    The following steps have been taken in an attempt to fix this issue:
    1.     Verified the Time dimension hierarchy and levels are set up correctly
    2.     Cleared client cache
    3.     Deleted Time dimension .xls, .xlt and .xml files from the BW and re-processed the dimension
    4.     Ran light and full optimizations
    5.     Verified the formula in the BW for this app is the same as the formula in the other apps
    6.     Refreshed client-side dimension files
    7.     Used the How-to-guide u201CHow to Maintain Measure Dimension for BPCu201D and verified the UJA_FORMULA_APP table and UJA_API_DATA_CHECKER function module are maintained automatically and no missing entry messages exist
    8.     Deleted the PARENTH1 hierarchy from the Time dimension, processed, added the hierarchy back into the member sheet and re-processed
    9.     Updated application description and modified application
    Has anyone else had this problem? Any assistance in resolving this issue will be most appreciated.
    Thanks,
    Carrie
    YTD Measure Formula:
    MEMBER [MEASURES].[YTD] AS 'IIF([%ACCT_TRANS%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC",SUM(PERIODSTODATE([%TIME%].[LEVEL00], [%TIME%].CURRENTMEMBER),-[MEASURES].[/CPMB/SDATA]),IIF([%ACCT_TRANS%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP",SUM(PERIODSTODATE([%TIME%].[LEVEL00], [%TIME%].CURRENTMEMBER),[MEASURES].[/CPMB/SDATA]),IIF([%ACCT_TRANS%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="AST",([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIME%].[LEVEL03])),IIF([%ACCT_TRANS%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ",-([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIME%].[LEVEL03])),-[MEASURES].[/CPMB/SDATA]))))';SOLVE_ORDER=3
    *EVDRE RESULTS     *
    MONTH         YTD     
    FY2010 FEB     128,790,195      
    FY2010 MAR     214,054,796      
    FY2010 APR     63,828,203      
    FY2010 MAY     445,898,233      
    FY2010 JUN     377,079,009      
    FY2010 JUL     288,502,058      
    FY2010 AUG     517,947,504      
    FY2010 SEP     678,612,886      
    FY2010 OCT     593,190,135      
    FY2010 NOV     879,439,971      
    FY2010 DEC     784,580,667      
    FY2010 JAN     949,300,083      
    FY2010 TOTAL     949,300,083      
    TIME DIMENSION                 
    ID     PARENTH1     LEVEL     MONTHNUM     TIMEID
    2010.FEB     2010.Q1     MONTH     1     20100100
    2010.MAR     2010.Q1     MONTH     2     20100200
    2010.APR     2010.Q1     MONTH     3     20100300
    2010.MAY     2010.Q2     MONTH     4     20100400
    2010.JUN     2010.Q2     MONTH     5     20100500
    2010.JUL     2010.Q2     MONTH     6     20100600
    2010.AUG     2010.Q3     MONTH     7     20100700
    2010.SEP     2010.Q3     MONTH     8     20100800
    2010.OCT     2010.Q3     MONTH     9     20100900
    2010.NOV     2010.Q4     MONTH     10     20101000
    2010.DEC     2010.Q4     MONTH     11     20101100
    2011.JAN     2010.Q4     MONTH     12     20101200
    2010.Q1     2010.STD1     QUARTER     3     10000001
    2010.Q2     2010.STD1     QUARTER     6     10000002
    2010.Q3     2010.STD2     QUARTER     9     10000003
    2010.Q4     2010.STD2     QUARTER     12     10000004
    2010.STD1     2010.TOTAL           6     10000005
    2010.STD2     2010.TOTAL           12     10000006
    2010.TOTAL           YEAR     12     10000007

    Hi Carrie,
    Your configuration looks OK to me. Can you provide us the output of the same EVDRE using the Periodic measure? Also, have you raised a customer message with SAP?
    Ethan

  • Evdre encountered an error while retrieving the data

    hi
    all
    i have an error
    "evdre encountered an error while retrieving data" evdre addin
    evdre cannot retrieve data
    working on ms 7.0 bpc
    excel 2003
    i have gone thru the sap service place and found that i have to replace 2003 to 2007
    please let me know also if there is any possibility to change my reports in such a way that i may pass with out this error
    what is the mistake i am doing while i create the reports ?
    ur help is appreciated
    thanks

    This error message has many root cause.
    First let's check if the installation of BPC client is correct.
    Just use a simple EVDRE functions and try to expand.
    Are you receiving any error? If yes then I suggest to try also for Apshell ppset.
    If it is not working then that's means you have a problem with installation.
    If you can use EVDRE from another machine then the problem is installaytion of the client.
    If the problem is into all computers then the problem is into server.
    If the problem is just into one report then you have to review that report because some parameters sent to EVDRE are wrong otit is trying to retrievea region which is toobig.
    I hope this will help you toinvestigate the issue.
    Regards
    Sorin Radulescu

  • Issue with Submit button

    Last October, I created a fillabe form via LiveCycle. I distributed the forms and they all worked initially on the receiver's end. The past couple of months, people have been informing me that the "submit" button has disappeared. Why would this happen? Even I have opened the form on my computer and the submit button is not there, even though it states in the purple bar at the top "to submit form by clicking submit".....Any ideas?

    Hi,
    this is the VBA code we are using.
    The below sheet is the report where user manually writes values and then another input form is attached to this report where the entered values get multiplied by 1000 and then this data gets sent to database.
    The values entered in the below report does not get submitted to database because, save button is grayed out. Only TIME dimension is active on this report to get the time period.
    SUBMIT button is created on the report tab and input schedule is hidden.
    Now the below screenshot is the migrated evdre input shedule where data from 1st report gets multiplied  by 1000 and then submitted to database.
    SUBMIT button is created on the report tab and input schedule is hidden.
    On the above lines, we have 2 more reports and 2 more input schedules in the same Input schedule. That is to say, we have 3 report sheets and 3 input sheets in 1 single report.
    SUBMIT button is configured on all the three report sheets and input schedule sheets are hidden.
    To reiterate the issue again, when we click on submit button the screen flickers and goes through all the reports and when data is submitted the screen appears to the same report from where submit button is clicked.
    Please let me know if you need more infromation.
    Regards,
    Ashwin.

  • EPM and EVDRE sorting changed in BPC 10

    We feel that the expand function on base level (BAS) in both EPM and EVDRE have been changed from 7.5 to BPC 10. It is the sorting of members that we feel is wrong. It is not expanding on the order of the dimension but on what hierarchy level order the member has. This will render in strange sort order of the members. We got this answer from the support on this:
    “By product design, I would like to confirm the changing of Member order for BAS Key of in BPC 10 (within EPM-Addin), comparing to 7.5 version for an EVDRE report. In version 7.5, the members are retrieved in the order of the dimension whereas in version 10, the members are retrieved by hierarchy level order (refer to the attached document "What's News" in PDF format, on the section page 11). By the way, you can change the default member order to ascending in version 10, please follow the steps below:
    1.       Click Edit Report and click the Dimension where the members need to be reordered to bring up the Member Selector window.
    2.       Click the Member Sorting & Grouping button and check the box next to Enable Member Sorting and click OK twice.
    After these steps, the members should be in ascending order.”
    This is actually not helping at all. It is then sorted based on numerical and alphabetical order. This is not good! Is there actually a need for sorting like this when you do it on a base level?
    To explain what we would like to have then:
    We would like it to sort as the expansion on “Descendants” (EPM) “ALL” (EVDRE) except for the calculated members which should be excluded.
    Is there anyone else that feels the same as we do?

    Hi Shrikant,
    I posted an idea to SAP and got this answer. We have SP 19 so I will test it when we get the new version:
    Other Terms
    EPM add-in 10.0 SP20, resolved issues, FC (for Financial Consolidation), BPC (for Planning and Consolidation)
    Solution
    Once you have installed the EPM add-in, edit the the "FPMXLClient.dll.config" file in the installation directory and set the "UseHierarchyOrderForBaseLevelSelectionRelationShip" element value to "true".
    Best Regards
    Patrik

Maybe you are looking for

  • Connecting Nokia to a dictating machine

    I would like to connect my Nokia 6600 to a Sony dictating machine to record calls that I recieve for refrence . , is there a cable that connects to Nokia and have a lead ( Mic and/or Ear ) If there is such a lead available , what is called, where I c

  • How to create an instance of a class which is actually an array?

    the following code gives a runtime exception Object obj = (Object )attributeClass.newInstance(); Exception: java.lang.InstantiationException: [Ltest.Name;[/b] Here test.Name is user defined class and i want to create an array instance of that class.

  • Multiple PLD option for a User

    Hello Experts, Can we give an option of having multiple PLDs to user to select the PLD from list, when it selects the PLD, it will opened. One option is to choose the the PLD from Layout Designer windows, as we can make it default and then open it. I

  • Attendee List with Personnel area and position

    Hi Is there any report which gives the attendee list with personnel area and position. Tried to get it through adhoc query with set operationss. But the booked date is missing.  Thanks Sreeja

  • I need to record a webinar; can that be done with imovie and if so, how?

    I need to record a webinar; can that be done with imovie and if so, how?