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.

Similar Messages

  • The "Measures" dimension contains more than one hierarchy... Collation issue

    It appears that an Excel query pased through to SSAS has a "measures" with lowercase "m" when analysis services expects an uppercase "M" so it should look like "Measures". Is there a fix in excel to allow
    the correct passing of "Measures" member name to the cube?
    BTW, I have NO Calculations in the cube.
    In excel 2013 when I pivot with a pivot table connected to a case sensitive collation (non default config)
    cube and perform a filter by "Keep only Selected Items" I get the error "The 'Measures' dimension contains more than one hierarchy, therefore the hierarchy must be explicity specified".
    When I revert back to server wide setting to case insensitive, and I preform the exact same pivoting function it works without error. The problem appears to be that excel does not understand the server collation setting.
    When I run SQL Server Profilier I narrowed down the MDX statement run in Excel that gives me an error to this:
    with
    member measures.__XlItemPath as
    Generate(
    Ascendants([Employee].[Location Code].currentmember),
    [Employee].[Location Code].currentmember.unique_name,
    "|__XLPATHSEP__|"
    member measures.__XlSiblingCount as
    Generate(
    Ascendants([Employee].[Location Code].currentmember),
    AddCalculatedMembers([Employee].[Location Code].currentmember.siblings).count,
    "|__XLPATHSEP__|"
    member measures.__XlChildCount as
    AddCalculatedMembers([Employee].[Location Code].currentmember.children).count
    select { measures.__XlItemPath, measures.__XlSiblingCount, measures.__XlChildCount } on columns,
    [Employee].[Location Code].&[01W]
    dimension properties MEMBER_TYPE
    on rows
    from [Metrics]
    cell properties value
    Playing around with the query I discovered that if I capitalize the first letter of the "with measures" member, the statement works.
    with
    member Measures.__XlItemPath as
    Generate(
    Ascendants([Employee].[Location Code].currentmember),
    [Employee].[Location Code].currentmember.unique_name,
    "|__XLPATHSEP__|"
    member Measures.__XlSiblingCount as
    Generate(
    Ascendants([Employee].[Location Code].currentmember),
    AddCalculatedMembers([Employee].[Location Code].currentmember.siblings).count,
    "|__XLPATHSEP__|"
    member Measures.__XlChildCount as
    AddCalculatedMembers([Employee].[Location Code].currentmember.children).count
    select { measures.__XlItemPath, measures.__XlSiblingCount, measures.__XlChildCount } on columns,
    [Employee].[Location Code].&[01W]
    dimension properties MEMBER_TYPE
    on rows
    from [Metrics]
    cell properties value
    Also, I realise that I could change the collation on just the cube itself to case insenstive to get this to work, but I really don't want to do an impact analysis of running a mixed collation environment.
    So, my question is: Is there an excel fix that will allow me to run a case sensitve cube and allow me to click on filter and filter by "keep only selected items" or "Hide selected Items"? All other filtering works, it's only those two
    filtering options error for me.
    Here are the versions I'm working with:
    Excel 2013 (15.0.4535.1507) MSO(15.0.4551.1007) 32-bit Part of Microsoft Office Professional Plus 2013
    Microsoft Analysis Server Enterprise 2012 11.0.3000.0
    Any help would be appreciated. Thank you in advance!

    Hi, i assume this logic is for Dimension formula?
    If you have multiple hierarchy like ParentH1 and ParentH2 you should use FormulaH1 and FormulaH2 and not FORMULA column.
    in FORMULAH1
    [Account.H1].[Account_A] / [Account.H1].[Account_B]

  • Convert measure dimension to flat measure option not found

    Hi All,
    I am integrating Essbasse with BI. In the physical layer, I tried to convert measure dimension to flat measures. But when I right clicked my Essbase cube I am unable to find the
    convert measure dimension to flat measures option . My BI machine version is 11.1.1.6 .Kindly guide me to overcome this issue.
    Thanks and Regards
    Sai

    Sai, you first have to make sure that the properties of ONE of your dimensions is set to be a measures dimension. Then this option will show up upon right clicking.

  • Use of MEASURES dimension in a RUNALLOCATION in a script logic

    Hi everybody,
    We are trying to use MEASURES dimension inside a RUNALLOCATION in a script logic, because we need to work with the information at a YTD element
    Example:
    It works:
    *XDIM_MEMBERSET C_CATEGORY=%C_CATEGORY_SET%
    *XDIM_MEMBERSET TIEMPO=%TIEMPO_SET%
    *XDIM_MEMBERSET PRODUCT=BAS(TOT_PRODUCT)
    *XDIM_MEMBERSET MARKET=BAS(TOT_MARKET)
    *RUNALLOCATION
              *FACTOR=USING
              *DIM ACCOUNT     WHAT=Cost;          WHERE=Import;           USING=Units;
    //        *DIM MEASURES    WHAT=PERIODIC;      WHERE=PERIODIC;         USING=YTD;  
              *DIM CLIENT      WHAT=CLIENTE_NA;    WHERE=>>>;              USING=BAS(TOT_CLIENT);
    *ENDALLOCATION
    *COMMIT
    It doesn't work:
    *XDIM_MEMBERSET C_CATEGORY=%C_CATEGORY_SET%
    *XDIM_MEMBERSET TIEMPO=%TIEMPO_SET%
    *XDIM_MEMBERSET PRODUCT=BAS(TOT_PRODUCT)
    *XDIM_MEMBERSET MARKET=BAS(TOT_MARKET)
    *RUNALLOCATION
              *FACTOR=USING
              *DIM ACCOUNT     WHAT=Cost;          WHERE=Import;           USING=Units;
              *DIM MEASURES    WHAT=PERIODIC;      WHERE=PERIODIC;         USING=YTD;  
              *DIM CLIENT      WHAT=CLIENTE_NA;    WHERE=>>>;              USING=BAS(TOT_CLIENT);
    *ENDALLOCATION
    *COMMIT
    How can we do it? Is possible to use Measures dimension?
    Any idea out there?
    Kind regards
    Albert Mas

    Hi Albert,
    I believe you are correct that using MEASURES in this way is not possible. Depending on whether you have data in future periods, you may just be able to use the time dimension instead of the measures dimension:
    *DIM TIME WHAT=2010.AUG; WHERE=2010.AUG; USING=2010.TOTAL;
    You could also manually maintain a property and select on the property to do the same thing, which would allow you to exclude future periods.
    Another option might be to make your Units account a balance sheet account, which should make it always behave as a YTD value, or create a second UNITS_YTD account as a balance sheet account and populate it with the Units YTD value using script logic before running the allocation, then use the UNITS_YTD account as your allocation driver.
    Ethan

  • Multiple Essbase-derived measure dimensions in OBI EE

    Hi guys,
    I have a requirement here which basically requires the usage of measures coming from two different measure dimensions of Essbase (Account and Scenario) next to each other in reports.
    I set both to dim type "measure dimension" and made sure the respective measures exist as physical cube columns. Then I tried two alternatives:
    1.) One logical fact table - result spool:
    -------------------- Logical Request (before navigation):
    RqList distinct
    Actual:{DAggr(Account.Actual by { } )} as c1 GB,
    Actual LY:{DAggr(Account.Actual LY by { } )} as c2 GB,
    Target:{DAggr(Account.Target by { } )} as c3 GB,
    Vs Actual LY:{DAggr(Account.Vs Actual LY by { } )} as c4 GB,
    Vs Actual LY %:{DAggr(Account.Vs Actual LY % by { } )} as c5 GB,
    Ops:{DAggr(Account.Ops by { } )} as c6 GB,
    Sales_In:{DAggr(Account.Sales_In by { } )} as c7 GB
    +++Administrator:2a0000:2a000a:----2008/11/10 14:29:55
    -------------------- Execution plan:
    RqList <<60982>> {for database 0:0,0} distinct
    D1.c1 as c1 {for database 0:0,0},
    D1.c2 as c2 {for database 0:0,0},
    D1.c3 as c3 {for database 0:0,0},
    D1.c4 as c4 {for database 0:0,0},
    D1.c5 as c5 {for database 0:0,0},
    D1.c6 as c6 {for database 0:0,0},
    D1.c7 as c7 {for database 0:0,0}
    Child Nodes (RqJoinSpec): <<61009>> {for database 0:0,0}
    RqList <<60949>> {for database 3023:179879:Full cube,34}
    AggrExternal(INSIT.Actual) as c1 GB {for database 3023:179879,34},
    AggrExternal(INSIT.Actual LY) as c2 GB {for database 3023:179879,34},
    AggrExternal(INSIT.Target) as c3 GB {for database 3023:179879,34},
    AggrExternal(INSIT.Vs Actual LY) as c4 GB {for database 3023:179879,34},
    AggrExternal(INSIT.Vs Actual LY %) as c5 GB {for database 3023:179879,34},
    AggrExternal(INSIT.Ops) as c6 GB {for database 3023:179879,34},
    AggrExternal(INSIT.Sales_In) as c7 GB {for database 3023:179879,34}
    Child Nodes (RqJoinSpec): <<60952>> {for database 3023:179879:Full cube,34}
    INSIT T179892
    ) as D1
    +++Administrator:2a0000:2a000a:----2008/11/10 14:29:55
    -------------------- Sending query to database named Full cube (id: <<60949>>):
    select
    { {Scenario}.{Actual},
    {Scenario}.{Actual LY},
    {Scenario}.{Target},
    {Scenario}.{Vs Actual LY},
    {Scenario}.{Vs Actual LY %},
    {Scenario}.{Ops},
    {Scenario}.{30001}
    } on columns
    from {INSIT_C.INSIT}
    2.) Two logical fact tables - result spool:
    +++Administrator:2a0000:2a0007:----2008/11/10 14:49:23
    -------------------- Logical Request (before navigation):
    RqList distinct
    Account.Sales as c1 GB,
    Account.Backlog as c2 GB,
    Account.Sales_In as c3 GB,
    Scenario.Act vs Bud % as c4 GB,
    Scenario.Act vs Budget as c5 GB
    OrderBy: c1 asc, c2 asc, c3 asc, c4 asc, c5 asc
    +++Administrator:2a0000:2a0007:----2008/11/10 14:49:23
    -------------------- Query Status: Query Failed: {nQSError: 15018} Incorrectly defined logical table source (for fact table Account) does not contain mapping for {Scenario.Act vs Bud %, Scenario.Act vs Budget}.
    +++Administrator:2a0000:2a0009:----2008/11/10 14:49:28
    -------------------- Logical Request (before navigation):
    RqList distinct
    Account.Sales as c1 GB,
    Account.Backlog as c2 GB,
    Account.Sales_In as c3 GB
    OrderBy: c1 asc, c2 asc, c3 asc
    +++Administrator:2a0000:2a0009:----2008/11/10 14:49:28
    -------------------- Execution plan:
    RqList <<37039>> {for database 0:0,0} distinct
    D1.c3 as c1 GB {for database 0:0,0},
    D1.c2 as c2 GB {for database 0:0,0},
    D1.c1 as c3 GB {for database 0:0,0}
    Child Nodes (RqJoinSpec): <<37047>> {for database 0:0,0}
    RqList <<37051>> {for database 3023:179879:Full cube,34}
    INSIT.Sales_In as c1 GB {for database 3023:179879,34},
    INSIT.Backlog as c2 GB {for database 3023:179879,34},
    INSIT.Sales as c3 GB {for database 3023:179879,34}
    Child Nodes (RqJoinSpec): <<37059>> {for database 3023:179879:Full cube,34}
    INSIT T179892
    ) as D1
    OrderBy: c1 asc, c2 asc, c3 asc {for database 0:0,0}
    +++Administrator:2a0000:2a0009:----2008/11/10 14:49:29
    -------------------- Sending query to database named Full cube (id: <<37051>>):
    select
    { {Scenario}.{Sales}{Scenario}.{Backlog}{Scenario}.{30001}
    } on columns
    from {INSIT_C.INSIT}
    +++Administrator:2a0000:2a0009:----2008/11/10 14:49:29
    -------------------- Query Status: Query Failed: Essbase Error: Unknown Member Scenario.Sales used in query
    So basically neither of the two options work at all. Most of the time he just assumes that all that measures are coming from the last hierarchy I defined as a measure dimension...hence the unknown member error.
    Likewise with the two logical tables, he screws the query up completely and doens't even manage to resolve the column mappung against the logocal tables.
    Has anyone ever tried to mix measure dimensions retrieved from Essbase? Using OBI EE it's very tricky to define the acutal measure containing data points in Essbase.
    Cheers,
    C.
    Edited by: Christian Berg on Nov 10, 2008 2:58 PM
    Edited by: Christian Berg on Nov 10, 2008 3:00 PM
    Sorry for the reformatting...the forum doesn't like the square brackets in the BI server logs...

    Solved. Takes some nibbling around in Answers, but doable with unioning and pivot tables.
    Cheers,
    C.

  • Multiple source tables for Measures dimension.

    Hi,
    We have two different SQL source tables for the Measure dimension in our project. Both the tables have the same structure but the Measures they contain are different. Based on certain condition Essbase will have to pick up Measures from one of the two tables. So basically the source table changes based on the condition. Is it possible to design rule files to achieve this? Please help me with this.
    Thanks,
    Krishna

    as I am sure many will say essbase and load rules are not really an ETL tools.^^^ :)
    Glenn is going to counter with a "I know how to do this in three steps using create column as text, join, and a oft-overlooked but awesome command that everyone but Tom Tortolani (I think I have the spelling on that right -- he was the Arbor employee that wrote Load Rules) forgot.
    I 100% agree with John -- why not do it in SQL?
    Regards,
    Cameron Lackpour
    Edited by: CL on Jan 23, 2013 6:33 AM
    Misspelt Tom's name

  • Slicer Time Dimension Issue with Cube Functions

    Hi,
    Hoping someone can help me figure out right approach here.
    Summary:
    Using Excel 2013 connected to a SSAS cube as data source, and cube functions with slicers to create a dashboard.
    Have following time dimension slicers; Fiscal Year, Fiscal Quarter, Fiscal Month, Fiscal Week & Date, that are used to slice data based on user selection, along
    with a sales measure.
    Below is example of Slicer name and CubeMember function for each:
    Slicer_Fiscal_Year: 
    =CUBEMEMBER("Cube","[Date].[Fiscal Year].&[2015]")
    Slicer_Fiscal_Quarter: 
    =CUBEMEMBER("Cube","[Date].[Fiscal Quarter].[All]")
    Slicer_Fiscal_Month: 
    =CUBEMEMBER("Cube","[Date].[Fiscal Month].&[201408]")
    Slicer_Fiscal_Week: 
    =CUBEMEMBER("Cube","[Date].[Fiscal Week].&[201509]")
    Slicer_Date: 
    =CUBEMEMBER("Cube","[Date].[Date].[All]")
    Problem:
    What I am trying to do is to build a table with cube functions that takes the lowest grain of the slicer time dimension selected, shows the current member, plus
    the prior 7 so I can have an 8 period trending view table that I will build a chart from. In the above example that would mean that it would look at Slicer_Fiscal_Week since that is lowest grain that has an attribute other than All, and then show me the prior
    7 periods. In this case 201509 means Week 9, so I would want to show in table Week 9 back to Week 2. But if Slicer_Fiscal_Week was set to All, along with Slicer_Date, then Fiscal Month would be lowest grain, so I would want to show Fiscal Months from August
    (201408) back to January 2014. I know how to use CubeRankedMember to pull the value from what is selected in the slicer, the problem is figuring out how to pass the lowest grain time dimension so that I can use lag or some other MDX function to get the previous
    periods.
    Any help on this would be greatly appreciated.
    <object height="1" id="plugin0" style=";z-index:1000;" type="application/x-dgnria" width="1"><param name="tabId" value="{28593A5C-70C0-4593-9764-80C76B51795C}"
    /></object>

    Hello,
    Thank you for your question.
    I am trying to involve someone familiar with this topic to further look at this issue.
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • PDF + PowerPoint dimensions issue

    Hi All-
    I have come across a weird bug today, when a PPT is saved as a PDF, the dimension attribute for the slide is a portrate mode (540x720), the actual slide is 720x540, and although it will preview properly, when this PDF is uploaded to an iOS device, the device displays the image rotated 90 degrees.
    The issue can be solved by opening the PDF and rotating it 360 degreees (this appears to reset the dimensions), but that is a pain. Is there some setting when th PDF is created to set it to Landscape view?
    Below you can see the dimensions of my PPT before and after rotating the same slide....
    Thanks for taking the time to look, and for your help.

    Michael,
    MII doesn't throw any error and no output is generated. Understand a simple SQL Query result set when passed directly works fine and the table is generated. But in my case iam calling another transaction which in turns call a JCO interface to ECC.The result xml set is absolutely fine and when passing the same to the PDF table action there is no output generated.
    For the error "Index: n, Size: n" can u plz try to add a text or a horizontal line to the pdf prior to passing the result set.
    However I have noticed that the output doesn't get generated when there exists a single row. I have included a dummy row to the XML highlighted in my previous post and it works fine. Try and add the below xml with 2 rows as a transaction property xml and pass it to the table action block and it works fine.
    <?xml version="1.0" encoding="UTF-8"?><Rowsets><Rowset><Columns><Column Description="Operator_Comments" MaxRange="1" MinRange="0" Name="Operator_Comments" SQLDataType="1" SourceColumn="Operator_Comments"/><Column Description="Supervisor_Comments" MaxRange="1" MinRange="0" Name="Supervisor_Comments" SQLDataType="1" SourceColumn="Supervisor_Comments"/><Column Description="Planner_Comments" MaxRange="1" MinRange="0" Name="Planner_Comments" SQLDataType="1" SourceColumn="Planner_Comments"/></Columns><Row><Operator_Comments/><Supervisor_Comments/><Planner_Comments/></Row><Row><Operator_Comments/><Supervisor_Comments/><Planner_Comments/></Row></Rowset></Rowsets>
    kind of strange but not sure whts the reason..
    thanks,
    Gilmour

  • Unable to create Measures dimension in proper relationshipin Essbase Studio

    I am planning to build measure hierarchy in Essbase studio with TBCSample(SQL Server 2005) which is came by default with Essbase Studio installation
    I built the hierarchy with parent child relationship.
    However the hierarchies is not coming in the proper order
    Generally Sales,COGS should come under “Margin ” and it should be under “Profit”
    Eg:      Profit
         Margin
              Sales
              COGS
    However it is showing differently in “Preview” mode.
    Profit
    Margin
    Margin
    Sales
    COGS
    When I deployed the cube I got the below errors because of the duplicate members
    The error file is located on the server at: E:\Hyperion\products\Essbase\EssbaseStudio\Server\.\ess_japihome\data\TBCSampl.TBCSampl_03-29-11_23-16-00.err
    \\Record #6 - Member name (Measures) already used
    Measures Inventory
    \\Record #7 - Member name (Measures) already used
    Measures Profit
    \\Record #8 - Member name (Measures) already used
    Measures Ratios
    \\Record #9 - Member name (Margin) already used
    Profit Margin
    \\Record #14 - Member name (Total Expenses) already used
    Total Expenses Marketing
    \\Record #15 - Member name (Total Expenses) already used
    Total Expenses Misc
    \\Record #16 - Member name (Total Expenses) already used
    Total Expenses Payroll
    Please let me know how to resolve this issue
    Database: SQL Server 2005
    EPM Version : 11.1.1.3
    Thanks,
    SatyaB

    open the minischema and in the graphic go to your measures table. highlight either the parent or child member and right click. select create join. In the screen that comes up, selet the other column from the same table. It will create the join. You wnat an inner join. You can also click on the member and drag and drop the join line to the child member to create the join

  • Crop Dimensions Issue CS5 vs CS6

    I am transitioning from Photoshop CS5.5 CS6.
    Using CS6, I was cropping a photo and I defined an exact pixel dimension of 94px x 99px with an output 72ppi.When I went to resample it in the Image dialogue box to 94px x 99px. I was able to get the desired width of 94px but the height ended up being 89px. If I cropped it to the correct dimensions, why can't I do the same when I re-sample it?
    I went back to CS5.5 and it did it flawlessly. I can't figure out what is going on with CS6.

    I tried it with Constraint Proportions on before. I went back to the image file again and apply the cropping, restraining the size to 94px x 99px in CS6 and saved the file without the image resampling.
    I just notice when I apply the cropping again in CS5, it cropped the picture slightly differently and got the results I wanted after resampling.
    So if I restrained the dimensions when I cropped the image in both C5 and CS6, why is CS6 cropping it differently? I notice there are some extra options in C6 tool bar where you define the cropping measurements, (I'm not in front of the computer right now so this may not be accurate), I think there is an option to crop off white edges or something. Maybe there's a feature that is new I'm overlooking?

  • Entity Dimension Issue In Appshell

    Hi Experts,
    i got below issue when i modified standard ENTITY dimension of APPSHELL.
    999 "cannot save the member sheet to the server; do you want save it to the local machine? "yes" or "no"
    when i processed same ENTITY dimension i got error message
    1.Invalid user or Team names found in OWNER property of entity.
    2. Ivalid user name: SAP/Administrator
    kindly help me solve these issue...
    thanks in advance..
    Regards,
    Krishnakumar.

    Hi Nilanjan & jason,
    I have deleted outlooksoft folder from my documents...then i did process of each dimension one by one...
    when i process new dimension i am getting same issue again..
    there is no data in the mbr table to validate and process
    i am doing all this in server system..
    Nilanjan you have posted on feb 2010.
    This is happening because the following prerequisite software is not installed:
    Microsoft SQL Server 2005 Backward Compatibility Components Solution
    You can download it from
    http://www.microsoft.com/downloads/en/confirmation.aspx?familyId=228de03f-3b5a-428a-923f-58a033d316e1&displayLang=en
    we have installed Backward compatibility components for SQL Server 2008. Feature Pack, April 2010. any impact if we install latest service pack...
    i could not process any new dimension.....
    Regards,
    Krishnakumar...
    Edited by: krishnakumar thangaswamy on Apr 8, 2010 9:29 AM

  • EVDRE: refresh dimension cache files each time user saves or refreshes data

    Hi experts,
    We're facing a performance trouble with our input schedules, so we pretend to decrease response times.
    We've noticed an unexpected issue when users work with input schedules. Each time they save or refresh data into any input schedule, it seems to execute a dimension files refresh. Since they push Save buton till standard success message appears, we see diferent text messages in excel messages bar, in the bottom of excel window. And for a while, we can see a message where we can read "Load dimension cache".
    Does anyone know if this is an standar behaviour? Is there any way to avoid that, so we can decrease response time regarding input schedule performance?? Is there any dimension files refresh while we save data from an input schedule?
    Thanks in advance.

    I see these, too, running Fx12 on Windows 7. They are described in the (extremely voluminous!) about:cache interface as page thumbnails. I've attached some screen shots.
    The text is extremely difficult to see, so I don't know whether it is a serious privacy/security risk. I would be curious to know how long they linger.
    I think these support the Windows feature of showing a preview of a window or tab when you float over a taskbar button. (No idea whether there is a similar preview feature on Mac.) This feature is not enabled by default; users need to enable it in about:config. However, add-ons may be able to use the thumbnails because they have privileged access to the cache.
    (Note: This feature was added pursuant to [https://bugzilla.mozilla.org/show_bug.cgi?id=497543 497543 – Provide a thumbnail service]. It "landed" on or about Jan. 28, 2012, so its first appearance in a released version of Firefox might have been Fx12.)

  • Measure Programme Issue

    Dear Experts,
    As per our requirement, we need to change the logic for measure for AST and
    LEQ accounts. Our model is periodic.
    We need our AST and LEQ accounts must behave same as INC and EXP with
    respect to aggregation.
    FOR EX: If we enter values 1000 in first 3 periods for LEQ or AST
    account, then values at Q1 should be 3000 instead of 1000.
    For this we have changed the logic in UJA_MAINTAIN_MEASURE_FORMULA  in
    a test environment, but we are  unable to see any changes in the
    reporting side.We are getting same standard results.
    We have BPC 10  with release 801 and SP-Level  003.
    Are we missing any key activity since we have followed same steps for BPC 7.X version and results are reflected  accordingly.
    Regards,
    SAP BPC

    Hello Nag and Vadim,
    Thanks for valuable your inputs, but  writing script logic won't work at such a crucial period.
    But I am facing very different issue , when I am changing the logic for measure as per my requirement, I am not getting desired results.
    Even, I don't know whether the changes which I am doing are really getting reflecting in the model, as after many changes I am getting the same results as before again and again.
    One thing I observed in on many forums  , when we run the UJA_MAINTAIN_MEASURE_FORMULA , it normally asks for Environment , Model and User  Id,   but in my case it is asking only Environment and Model and not user Id.
    Can you please tell me,  is it patch issue, and if so, can you please tell me what patch level I should apply.
    My current BPC :
    BPC 10 NW with Release 801 and SP-Level  0003
    Thanks in advance.
    Reagards,
    SAP BPC

  • Planning Dimension Issue

    Hi,
    I am new to planning. I have an issue in my design which i am trying to find a solution to.
    We have a dimension named Capital Projects which is C12e01, c12e02 for year 2012 and then in the year 2013 they will be c13e01 etc.
    Now all these projects are of one nature which can be like C12e01=Small building c12e02= temple building etc. and they have to hit a natural account which is Building. and next year c13e01 will be small building and c13e02 will be temple building. All this relation is one to one...
    I am not able to understand that should i create these small builidng, temple in the hierarchy of natural accounts or as attributes or UDA.
    User requirement is to budget across and also see c12e01
    Thanks

    But then i will have to write too many business rules to transfer each and every attribute member value to natural accounts. so all small building and temple etc. have to be directed to one natural account...i.e. buildings.....Users does not know these natural accounts so i cannot expect that from users and on top of that i think we cannot write rules on attributes saying that temple, small attributes goes to buildings natural account

  • Merge dimension issue

    Hi All,
    Need help on this
    Issue:
    The issue is in using the u2018Merge Dimensionsu2019 utility.   After I merge the two results based on the dimension they share in common, I get duplicate rows.
    Background:
    Universe #1 and Universe #2 have a dimension in common u2013 UCS ID.  The user builds a query against Universe #1 and brings back the distinct UCS ID and the UCS Name.  He builds a second query against Universe #2.  The query brings back UCS ID and passenger count. 
    The results of query #1 are:
    UCS ID              UCS NAME
    =====================
    257     Motorola
    5     AON Service Corporation
    6     Altria Client Services Inc
    The results of Query #2 are:
    UCS ID          Passenger Count
    =========================
    257     6892
    5     2767
    6              382
    The user would like to see the results of the merge dimensions utility to show up as one row for each UCS ID, as shown below:
    UCS ID  UCS NAME                 Passenger Count
    257         Motorola                     6892
    5            AON Service Corporation       2767
    6            Altria Client Services               382
    Instead, they get the following (i.e, duplicate row with a null or blank):
    UCS ID  UCS NAME                 Passenger Count
    257         Motorola           
    257                                                         6892
    5            AON Service Corporation    
    5                                                              2767
    6            Altria Client Services            
    6                                                             382
    Environment details:
    BOXIR2,SP2.
    Database :SQL server
    Thnnks in advance,

    Hi Swapna,
    The rules for merged dimesions are that must match exactly i.e Same data type, same syntax etc.
    One can avoid some of these issues if you use a common dimension table in the universe and both queries use this same dimesion.
    To to a test on where you issue is, drag the dimensions in a report one-by-one and see which one is causing a duplicate. Sometimes dimensions can also have spaces i.e when one is of a data type varchar, and the other of char... here you can use the trim function in the report to eliminate any leading or trailing spaces.
    Hope this helps
    Jacques

Maybe you are looking for

  • Drop zone of loop in the film stip template, works in simultor, not burning

    Droping a loop from the film into the drop some in a chapter menu and it shows up on the simulator. when I go to burn or build etc there is just white where the loop should be. everything else is workinng fine just but no loop- any ideas out there? t

  • Content Text using Mail Adapter

    Hi everybody, and happy New Year. I've got this kind of scenario: 2 messages (material and document) and I must use them both to compose the body of an e-mail. Only, the mail adapter just has 1 content field, of type string. My problem is that I have

  • Spooling to Text File - 30 million records - Getting Out of Memory Error

    Hi All, I have an extremely large oracle table that I need to spool to a .txt file. The table has approximately 30 million records. I'm using Toad For Oracle version 10.5 and I'm on Oracle 10g. I've tried running the following spool command a few tim

  • Perform In RFC function Module

    Hi Experts, Can we use perform statement inside the RFC function module. I am working with 4.6b version. I am not sure about the cause of error. Earlier without perform it was working well. Now I have written perform , it is giving me error. What wou

  • Borders

    When printing, how do I remove the invisible border off the edges of the paper?