Essbase Member Name Rename

Hi,
I rename or flip the names of two members of my sparse dimension.
Two Step + 2
     2S Est + (8)
     2S Non Est + (287)
User ask me to flip the names change 2S Est member name to 2S Non Est and 2S Non Est to 2S Est. After doing this total of these members always wrong, I just flip the names and it gives me the total of original members even after change the names.
If I run my calc script of Budget it just double the total of all members.
Please help me on this issue
Thank you,
T.Khan

IF you flip two member names in the outline, Essbase thinks you just moved them to a new location. In order to actually flip them requires a two step process . First rename bothe members to something different. save the outline, then second name them to what you want them to be and save the outline again.
So if you have members Bob and Bill and want to switch them, name Bob bob_1 and Bill Bill_1 save the outline, then name bob_1 to Bill and Bill_1 to Bob and save the outline again

Similar Messages

  • Special Characters usage in member names

    All,
    As we are aware, essbase member names cannot contain special characters. But as per our business requirement we are in need to use special characters in some member names. Can anyone advise me if there are any work-around available to achieve this. Thanks in advance.
    Regards,
    Ramesh

    866969 wrote:
    Thanks a lot for your response Vasavya. Let me describe my problem clearly. We are having planning application and we use ODI to refresh Master data/Meta data in planning application. One attribute dimension member contains special character and its getting rejected everytime since planning will not accept special characters in member names/Alias names. Is anything that we can do from planning side to avoid the rejection?. Thanks in advance.Is the application been created in unicode mode? Are you able to enter characters directly into planning? have you read the restrictions sections - http://docs.oracle.com/cd/E17236_01/epm.1112/hp_admin/frameset.htm?apb.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Renaming Member Names

    I have member names that I need to change in Planning 9.2. I know I can change the member names one by one in Planning, but that would take a long time. I have 350 members that I need to be changed from N1 - N350 to B1 - B350. Does anybody know a way to change the the member names automatically? I haven't found anything in HAL yet. Regards.

    I generally suggest the member names be static codes and the alias be the only thing which changes -- this does affect your code readability however allows you to use HAL and other methods to rename the alias.
    Other folks may have the answer to how to rename using HAL however our method didn't require that.
    Good Luck,
    -John

  • Renaming a member name

    <p>Is there any way to rename a member name using rule file? I amusing Application Manager 6.5.1</p><p>Thanks in Advance.</p>

    h_user:<BR><BR>Unfortunately you can not. members must be renamed using Application Manager.<BR><BR>Sorry.

  • OBIEE and Essbase - Displaying all member names together

    Hi
    I hope you can help.
    When we import our Essbase cubes and add the alias tables and drag the cube to the BMM layer we get a column were we can search the alias for all the member in the hierarchy, independently of the generation (let's say Account - Default where Account is the dimension name and Default is  the name of the alias table).
    This is a very useful feature that I would like to extend to the member name but I cannot figure out how  to do it. All I am getting in the BMM layer is a column per generation but not one for the whole hierarchy.
    My question is: Is there any way of doing what I want and how  could I implement it?
    I am on OBIEE 11.1.6.10
    Thank you very much for your help.
    Juan

    Hypercubes are cubes built for analytical purposes which you can pivot, rotate, slice-n-dice etc anyways you want and each intersection will bring back some value. That makes them super dense and perfectly suited for dashboarding purposes as well since any dynamic change of point-of-view, axis of analysis and the likes will always yield a result and you can better optimize things for performance.

  • Changing a member name in Essbase

    In my ASO cube - I need to change both a level 0 and parent member name in EAS. Is it as easy as edit member properties and typing in the new name? Does the existing data follow? Also, does going from lower case to upper case create a similar change in the outline?
    Thanks,
    Paul

    Hi Paul
    In my ASO cube - I need to change both a level 0 and parent member name in EAS. Is it as easy as edit member properties and typing in the new name? Does the existing data follow? Also, does going from lower case to upper case create a similar change in the outline?you can also use rule file to change the alias name if you are trying to change the alias name in bulk, but if you have to do for few members then goto edit member properties and change the alias it will be an easy process,
    change of alias name doesnot harm your datayes going from Lower Case to Upper Case create similar change to outline
    Thanks,
    Avneet Singh

  • How to increase member name length in essbase studio

    Hi All,
    Currently we have requirement to build a hierarchy which contains member having length more than 80 characters.
    I seen somewhere where the member name limitation is 80.
    Can someone help me out how to build the hierarchy with long member name
    Thanks,
    SatyaB

    You would have a hard time containing your comments into a cube especially because they are so freeform. You said you are using Studio to create your cube. Create a drill through report that when users are at a selected intersection of data, the can execute a drill through report to get additional detail. For instance in addition to the comments column, there might be other information on the table they would want to see. You can select what columns get returned.
    For example, I've jusr drill through in a GL cube to get back to the Journal Entries. It allowed the users to see all sorts of things, like all the JEs for a cost center, who created them, comments, currency conversion done fromn the source system, when they were posted, etc.
    Because they are not in the cube, it makes the cube a lot cleaner.

  • Renaming Existing Member Names

    We are trying to do a long list of outline Member name changes (~200 changes) for Level 0 or Parent Level members and noticed the API function ESBOTLRENAMEMEMBER . It looks like this could be used by others and have seen several Threads in OTN talking about the function, but I haven't seen any posts pointing to a working Excel VBA to do a Find/Replace with this function. Can Anyone point to a working VBA code to do a find/ replace?
    what I am trying to do is have a worksheet with a "Original Names" and a column with "New Names" and have the code to a loop through the list.
    This sounds like a basic task that many folks could use. Does anyone have something similar that they have created?
    Thanks ahead of time!
    Robert

    I was doing exactly this recently with a 9.3.1 ASO cube. The forum will screw up the formatting but you can probably work out what's going on. Note the ???? placeholder for the number of lines and placeholders for APPNAME etc. This is very basic and features no error trapping - it was for a one time deal in a development environment, not regular and / or production use.
    Any use is entirely at your own risk.
    Good luck!
    ============================
    Public Sub UpdateOutline()
    Dim Init As ESB_INIT_T
    Dim ObjDef As ESB_OBJDEF_T
    Dim ProcState As ESB_PROCSTATE_T
    Dim lngCount As Long
    Dim strOldName As String
    Dim strNewName As String
    Dim lngInst As Long
    Dim lngCtx As Long
    Dim lngStatus As Long
    Dim lngOutline As Long
    Dim lngMember As Long
    Dim intItems As Integer
    'Init API
    Init.Version = ESB_API_VERSION
    lngStatus = EsbInit(Init, lngInst)
    'Log in
    lngStatus = EsbLogin(lngInst, "SERVER", "USERNAME", "PASSWORD", intItems, lngCtx)
    'Open the outline
    lngStatus = EsbSetActive(lngCtx, "APPNAME", "DBNAME", intItems)
    With ObjDef
    .AppName = "APPNAME"
    .DbName = "DBNAME"
    .FileName = "DBNAME"
    .hCtx = lngCtx
    .Type = ESB_OBJTYPE_OUTLINE
    End With
    lngStatus = EsbOtlOpenOutline(lngCtx, ObjDef, ESB_YES, ESB_YES, lngOutline)
    'Loop through all members in the sheet
    For lngCount = 1 To ????
    strNewName = ActiveSheet.Cells(lngCount, 1)
    strOldName = ActiveSheet.Cells(lngCount, 2)
    lngStatus = EsbOtlFindMember(lngOutline, strOldName, lngMember)
    lngStatus = EsbOtlRenameMember(lngOutline, lngMember, strNewName)
    Next
    'Write the outline
    lngStatus = EsbOtlWriteOutline(lngOutline, ObjDef)
    'Restructure
    lngStatus = EsbOtlRestructure(lngCtx, ESB_DOR_ALLDATA)
    'Call EsbGetProcessState until completed
    lngStatus = EsbGetProcessState(lngCtx, ProcState)
    While ProcState.State <> ESB_STATE_DONE
         Application.Wait DateAdd("s", 10, Now())
         lngStatus = EsbGetProcessState(lngCtx, ProcState)
    Wend
    'Unlock the outline
    lngStatus = EsbUnlockObject(lngCtx, ESB_OBJTYPE_OUTLINE, "APPNAME", "DBNAME", "DBNAME")
    'Close the outline
    lngStatus = EsbOtlCloseOutline(lngOutline)
    'Log out of server
    lngStatus = EsbLogout(lngCtx)
    'Terminate API instance
    lngStatus = EsbTerm(lngInst)
    End Sub

  • Change member names in Outline

    I have in the outline:Dept dimension with a member Marketing and Account Dimension member name Mkt. When I changed the member name in Dept dimension to Total Marketing and Account Dimenstion to Marketing I lost all the data.Any suggestions to update the outline?Thanks,Jenny

    It's been my observation that Essbase thinks you deleted one member and created another. Data (especially level zero data) is generally tied to member names, not outline position.If you are renaming an upper level member, it may or may not disappear. You can recreate your data by forcing a calc.If you are renaming a level zero member, you have to do it in two steps. First create the new member and save the outline. Second, run a calc that only sets NewMember = OldMember. Third, delete the old member.Good Luck,Tim

  • Essbase member modifications not reflecting in OBIEE after a refresh

    Hi ,
    I am getting the following message in my developed reports , after changing certain member names (adding / removing members also) of ENTITY dimension in essbase .
    [nQSError: 96002] Essbase Error: Unknown Member Total India Entity 1 used in query (HY000)
    After selecting the renamed members only the report is working , i.e from specified ENTITY report filters I had to select , Total India (old name : Total India Entity 1) .
    Reload server metadata or refresh is not helping ... Is there any setup , which will directly reflect these changes in dashboard without repeatedly selecting new members in analysis .
    OBIEE version : 11.1.1.6
    Essbase version : 11.1.2.1
    Thanks
    Sayak

    Hi ,
    thanks for responding .
    Just to clarify my question :
    I have a dimension named ENTITY , it has several generation under it (gen1,gen2,gen3 etc .) .
    for example , gen1 has member total region and no region .
    gen2 has UK and US region .
    gen 3 has manchester , london , new york , manhatton .
    In the report i'm using ENTITY .gen3 = manchester , london , new york , manhatton ..... this filter.
    Now , I am renaming (changing) gen 3 members like liverpool , birmigham , california , washington .
    So , after refreshing dashboard , will these member names automatically gets refreshed or i have to again manullay select them ?

  • List of avaliable MDX properties / Always show member name instead of alias

    Hi all,
    does anyone know if there is a list of ALL available MDX properties which can be used in an MDX query with Essbase?
    There is a very small list in the technical documentation (http://docs.oracle.com/cd/E12825_01/epm.111/esb_techref/mdx_properties.htm), however I know there are a lot more properties.
    E.g. one property which is not documented is ANCESTOR_NAMES:
    WITH MEMBER [Year].[dummy] AS '0', SOLVE_ORDER = 0
    SELECT {[Year].[dummy]} on columns,
    [Account].Members properties ANCESTOR_NAMES on rows
    FROM [App.Db];
    Anyone knows if there is such a list?
    And another question:
    The Query always brings up the alias of the members (e.g. [Account].Members). Is there a way that per default the member name instead of the alias is used? Without using the MEMBER_NAME property?
    Essbase version: 11.1.1.3
    Thanks
    Th

    amaerki wrote:
    For the second question regarding the member name try the following statement in a MaxL session:
    alter session set dml_output alias off;works like a charm, many thanks.
    Anyone an idea on the list of properties?
    Edit: found something related to XMLA: http://docs.oracle.com/cd/E12825_01/epm.111/aps_admin/ch03s03s07.html
    However, e.g. the porperty PARENT_UNIQUE_NAME does not work. Also the Book MDX solutions has a list with it with e.g. PARENT_UNIQUE_NAME specified which does not work...
    Anyone an idea how to get a list of all properties valid with MDX using Essbase?

  • Can we use Aliases instead of member name in Calc Manager

    We migrated business rules to Calc Manager. After migration Calc Managers are not getting validated (stating the member is missing in the database). Later found out that in the script it has alias name instead of member name which was causing this error.
    example
    Member name = C001
    Alias = Texas
    in the script it is mentioned Texas = 5; (this statement throws an error while validating, stating Texas is not present in the outline, even though Texas is present in the Alias table as an alias for C001).
    Once I modify the script to C001 = 5; it gets validated without any issue.
    Does this mean in Calc Manager we cannot use Aliases unlike business rules and Calc Scripts?
    Please advice.

    The 'Defects Fixed' section of the release notes for 11.1.2 includes...
    "Calculation scripts validate inconsistently in Essbase and Calculation Manager (8800397)."
    ...which is pretty broad!
    Can you run the rules OK? If so, I'd just ignore the Calculation Manager validation message.

  • Function to change DataType member names

    I was wondering if (TestStand 4.2) contains the ability to call all referrences to a Data Type member used in a sequence to be changed to the new name if that DataType member is renamed in the MyTypes.ini file?
    Solved!
    Go to Solution.

    The short answer is no, and it's a difficult problem if you are talking about including source files of code modules written in various different programming languages, and still a semi-difficult problem if you are not because of the possibility of lookupstrings appearing in unsual places or being used in unusual ways.
    There are however 2 features that exist in TestStand 4.2 that should help with this.
    1) Find/Replace in files - If the previous name is fairly unique this should be easy, if it's not then perhaps with clever usage of regular expressions in the search string it should still be doable.
    2) Analyzer - this should help you find places that need fixing or that you might have missed doing 1) above.
    Hope this helps,
    -Doug

  • Susbtitution Variables in rules file to replace a member name with another

    Hi everybody,
    Can I use substitution variables to replace a member name with another name in rules file?
    Please let me know if we can use substitution vars.
    Essbase version :11.1.2
    Thanks,
    K.as

    Are you the same guy?
    http://www.network54.com/Forum/58296/thread/1287447433/Susbtitution+Variables+in+rules+file+to+replace+a+member+name+with+another+name
    The answer is still, "No".
    Regards,
    Cameron Lackpour

  • Hyperion Planning Smart View issue with Member Names & Aliases

    Hi,
    Im using Smart View "Essbase" Connection to a Hyperion Planning Application, ver 11.1.1.3, however with the essbase connection i am not able to select at the smart view options to see aliases, members or both. I change the setting ( Duplicate member names allowed =true) directly at the properties of the outline in EAS, and now i am able to see the aliases, however if time I refresh using web planning/workspace this setting is undone. Furthermore i dont thing i should use it with planning. Any comments?
    Kind Regards

    First of all I hope you have not changed the properties of the outline in EAS for a planning application.
    For more information on using aliases in smartview have a read of :- Smartview --- Display options --- to display alias names
    Also you will only be able to view member name or aliases not both at the same time.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • Multiple ID's on one iTunes account?

    Good golly Gee! Why is everything so difficult with apple?!?!?!?!?!!!!!! Ok, I feel a tiny bit better. My sons just bought used iPods and they like all the games I've downloaded, paid and free on my iPhone they've played for a long time. They want to

  • My iPod touch is stuck in recovery mode and won't restore?

    Okay my Ipod Touch is stuck in recovery mode and will not restore because "the ipod software update server cannot be contacted". I have tried to restart my computer, restart my ipod, tried different computers, and re-intalled AND updated my itunes an

  • CR2 files won't open in Photoshop CS2

    I have a Canon Digital Rebel XT and my Photoshop CS2 software won't open these images. CR2 is listed in the Raw file format but selecting Raw doesn't open them. I have downloaded the latest Raw update. I am using windows. Can anyone help me??? Many t

  • Must touch speaker phone to be able to use ipone

    Hello all, My wifes' iphone 4S is driving her crazy.  She uses it as a phone with no headsets, nor bluetooth.  When she answers a call, she cannot hear the calling party until after she hits the speaker phone button.  People cannot hear her answer ei

  • Burned DVDs will no work with PC

    My PC reads all other DVDs fine. My burned DVD I made with iDVD plays fine on my MAC and also plays fine in regular DVD players. However, my PC won't even recognize my iDVD-made disc. I also tried it on a friends PC, same thing, won't even recognize