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.

Similar Messages

  • 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

  • Unable to rename the member name

    Hi,
    We are getting the below error when trying to rename the member.
    Error: The server returned an error processing UpdateLocalProp: Object reference not set to an instance of an object
    Anybody can tell why we are getting this error.
    Thanks
    Kumar

    Hi Kumar,
    Did you upgrade recently from a older version of DRM to 11.1.2? I had faced this issue after the upgrade.
    Thanks,
    Prasad

  • 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

  • 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

  • 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

  • Changing member names

    Hi,I have an existing outline and I want to change some member names. The outline has data in it. I was wondering if it is possible via a script or a rules file to rename some members without it affecting the data.Thanks in advance.

    A load rule will only add new members or add new members removing members it does not recognize (Using remove unspecified), but will not do a rename. You could do it using the API. One word or warning if you have two members A and B and change B to C and A to B what will happen is the data from A will disappear, A will now contain B's data and C will not have any data. You would have to do this in two stepsChange B to C then Save the database then change A to B and save the database. Please let me know if you have any other questionsGlenn [email protected] Solutions Inc.

  • Rename a member in shared library

    and then do deployment, say rename A to B, i suppose data for A will not be lost and B will have them?
    did not see about this in doc, but if rename cause data loss then EPMA would be too bad product,:)

    user12291444 wrote:
    Thanks!
    I used EPMA profile to update the member, if a member name is changed in data source,
    how can i know if the member in shared library is renamed or delete/add by import through profile?If by datasource you mean Essbase, then all changes done in Essbase will be overwritten during the next deployment by the values set in EPMA. But this way, since it will be an overwrite of the member in the outline rather than a renaming, you will probably lost data (not 100% sure though).

  • How to display member name that is a number as text

    Version: 11.1.2.1
    Hi I am trying to rename a member "A111000" to "111000" in Essbase where 'A' is the prefix. However excel doesn't like 111000. Is there a way I can put 111000 into my cube and have excel read it as a text string? I can't seem to change the member properties to do so.
    Thanks

    When typing the name in excel put a single quote in front of it '111000 that will make Excel treat it as text

  • Rename Dimension Member using Maxl Command

    I have a requirement to rename many account dimension members in the outline. Is there a way to do this via MAXL script instead of renaming each account manually via EAS/AAS? If it is doable, please provide an example how I would go about doing this?
    Thanks,
    Francisco

    There is not a way to do it in MaxL. MaxL does not do outline manipulation.
    are you changing the alias or the member names? If you want to change the alias, then you could do it in a load rule. If you want to change the membe names it is more complicated especially if oyu want to retain data. The best way would be to use the api to read members from a table with old and new names, but you would have to write the api sequence.
    There are other ways using alias tables where you have a second cube and reverse the alias and member names. export the data from the original cube and load into the second cube.

  • Validation Rule Error :Invalid Member Name In Lookup ({|0|}) value

    We defined fdm validation rule as follows.
    |Actual, April, 2010, YTD, ENTITY CURRENCY, Mumbai, TotalAssets, [NONE], [NONE], [NONE], [NONE], [NONE]|-|Actual, April, 2010, YTD, ENTITY CURRENCY, Mumbai, TotalLiabilities, [NONE], [NONE], [NONE], [NONE], [NONE]|= 0
    After testing the above rule definition, it gives below error message.
    Err = Invalid Member Name In Lookup ({|0|}) value in ID indicates invalid member)
    Scenario: ACTUAL [1]
    Year: 2010 [2010]
    Period: APRIL [83886080]
    View: YTD [2]
    Entity: MUMBAI [7]
    Parent Entity: MUMBAI [7]
    Value: ENTITY CURRENCY [-1]
    Account: TOTALASSETS [150]
    ICP: [NONE] [-1]
    C1: [MISSING_VALUE] [-1]
    C2: [NONE] [0]
    C3: [NONE] [0]
    C4: [NONE] [0]
    Lookup Error (2)
    Err = Invalid Member Name In Lookup ({|0|}) value in ID indicates invalid member)
    Scenario: ACTUAL [1]
    Year: 2010 [2010]
    Period: APRIL [83886080]
    View: YTD [2]
    Entity: MUMBAI [7]
    Parent Entity: MUMBAI [7]
    Value: ENTITY CURRENCY [-1]
    Account: TOTALLIABILITIES [-1]
    ICP: [NONE] [-1]
    C1: [MISSING_VALUE] [-1]
    C2: [NONE] [0]
    C3: [NONE] [0]
    C4: [NONE] [0]
    Also we could see in the Expression after lookup substitution (scratch pad): we are getting 0-0=0.
    Please provide you inputs.

    I have not looked closely, but C1 is showing as "Missing Value". Have you checked to see if [None] is a valid member for the account you have selected (TotalLiabilities)?

  • How to rename a column name in a table? Thanks first!

    I tried to drop a column age from table student by writing the
    following in the sql plus environment as :
    SQL> alter table student drop column age ;
    but I found the following error
    ORA-00905: &#32570;&#23569;&#20851;&#38190;&#23383; (Lack of Key word)
    I have oracle enterprise edition 8.0.5 installed at windows 2000
    thank you
    And I want to know how to rename a column name in a table?
    thanks

    In Oracle 8i, your syntax would have worked.  However, if I
    recall correctly, in Oracle 8.0, you can't rename or drop a
    column directly.  One way to get around that problem is to
    create another table based on a select statement from your
    original table, providing the new column name as an alias if you
    want to change the column name, or omitting that column from the
    select statement if you just want to drop it.  Then drop the
    original table.  Then re-create the original table based on a
    select statement from the other table.  Then you can drop the
    other table.  Here is an example:
    CREATE TABLE temporary_table_name
    AS
    SELECT age AS new_column_name,
           other_columns
    FROM   student
    DROP TABLE student
    CREATE TABLE student
    AS
    SELECT *
    FROM   temporary_table_name
    DROP TABLE temporary_table_name
    Something that you need to consider before doing this is
    dependencies.  You need to make a list of all your dependecies
    before you do this, so that you can re-create them afterwards. 
    If there are a lot of them, it might be worthwhile to do
    something else, like creating a view with an alias for the
    column or just providing an alias in a select.  It depends on
    what you need the different column name for.

  • Selecting Member Name and also Alias in Web Analysis report

    I have made a web analysis report and now i want to show member names as well as alias of the members which i have selected on row side. How can i do that?
    Thanks in advance.

    in the member properties, you have an option to show alias, member name, or both. Click on both / alias as per the requirement

  • How can I pass value based on member names in a script in 11.1.1.3

    I want to pass a value to only those members of CostCenter dimension which has "5" in their name.
    Eg.
    C12345100
    C34565210
    C34217890
    So in the above case the value should exist only in the above 2 cost centers.
    Can someone guide me in the right direction to accomplish this ?
    Thanks in advance

    Just now I got more clearance on the requirement.
    I want to create blocks only on the selected Cost Centers & Business Unit combination.
    I have the following members in both these dimensions
    Cost Centers
    C12345980
    C12345981
    C12345982
    Business Unit
    BU5980
    BU5981
    BU5555
    Now I want to pass a value to one of the dense dimension members from Measure dimension (member name = CrtBlk) to only those CCs & BUs where the last 4 digit matches.
    So in this case it will be for only the first 2 cost centers.
    Thanks in advance.

  • You do not have sufficient access privileges to rename the iten "name"

    Hi,
    I want to rename my short name in my powerbook and I can't, it shows me You do not have sufficient access privileges to rename the iten "name".
    can somebody help me pls

    You cannot properly change the short name of your account in the Finder; you need to use this application to do it, or change the short name to the desired name in the NetInfo Manager, which is in the /Applications/Utilities/ folder. Your short name is stored in several places in the NetInfo Manager; these are parts of the information for your user account and a few groups.
    If there are no administrator accounts on the machine, use these instructions to add administrator access to one of your accounts.
    (14100)

Maybe you are looking for

  • Remove EDIT button from FPM ToolBar

    Hi All, I am new to FPM, and I am working on SRM 7.0. In the Monitor Shopping cart WD application, after search event, a list of Shopping Carts are displayed, when we click on one of the SC number, the SC screen opens as a new Pop-up. Here we have an

  • Using single version DPS for college class

    Hi, I teach media design at a four-year university and we'd like to develop an iPad app for a special topics class using the single version DPS. We want to make sure this is workable BEFORE we spend the $400 for the app. I've created several test fol

  • 802.1x on Alcatel Lucent IPtouch 2048 with Cisco 2960X

    HI All, I got stuck in the middle of the solution where we need to connect Alcatel lucent IPtouch 2048 phone to cisco switch port and from phone PC is connected. We are trying to bypass authentication for IP phones, we dont want to do MAB/Dot1x/WEB a

  • Spotlight not doing so well with .pdfs

    I scan a lot of documents that come across my desk, using Acrobat Pro 8.1. But I'm finding that Spotlight isn't doing a very good job of recognizing text within those documents. I'll enter a search string from that document and it won't show up in Sp

  • Photoshop CS6 Install Fails

    When I install Photoshop through Creative Cloud AAM it downloads and then I get the follow error. Please close the following applications to continue: - ShellExtLoader I've looked and can't find this open anywhere. I am in installing on an older Macb