Member Alias

Hello,
I am trying to build ASO/BSO hierarchies across 11 cubes using rules file and there is this first child member of Entity dimension whose alias is not getting loaded. All other member aliases are getting loaded.
Any pointers here please?
Thanks!

Don't want to flog a dead horse, but are the aliases definitely set the same for the 'original' instance and the 'shared' instances in your data source?
Essbase will let you set a different alias for shared instances of the same member (the name itself has to be the same, obviously) so if your 'original' instance's alias is a duplicate and your shared instances' aliases are not then the results could be as you describe.

Similar Messages

  • How to distinguish the specific member alias in HP outline?

    Because they use different calculation scripts, I need to recognize the member alias with two
    different suffix:"-new" and "-old" in the same dimension. However, the @MATCH function could not meet
    my requirement, because I need substitute ANY NUMBER of characters at the BEGINNING of the pattern.
    Could any other function satisfy my requirement?
    ps: here is the syntax of @MATCH which couldn't match my need.
    @MATCH (mbrName|genName|levName, "pattern")
    "pattern"
    The character pattern to search for, including a wildcard character (* or ?).
    ? substitutes one occurrence of any character. You can use ? anywhere in the pattern.
    * substitutes any number of characters. You can use * only at the end of the pattern.
    To include spaces in the character pattern, enclose the pattern in double quotation marks ("").

    UDA is the solution we are considering.
    we also considered about using Share member to construct a virtual hierarchy.
    Is there any function which could directly slove this problem?
    Edited by: DerekX on 2010-7-1 上午4:43

  • Smartview Member & alias display issue

    Hi All,
    i am having trouble i have 3 environments and when i pull ad hoc report from each environment in two i can see both Member name option as well as member & alias name option but in my Dev environment i am not seeing member & alias option, can some one please help me with this?
    really appericiate any suggestions.
    Thanks,

    In order to see the meber name and alias, APS and Essbase have to be patched to at least 11.1.2.1.102 and should be patched to the same level that your production system is at. If they are not at least at the level, you will not be able to see the member name and alias as an option

  • Show member alias of a attribute members on FR

    Hi,
    On FR, if I am using essbase connection, how can I show the member alias of a member alias on a text filed? by using the text function "MemberProperty", I can only get the member name of the attribute but not the alias.
    Thanks in advance.

    I think in the earlier version that was a preference setting which allows alias in member selection. (not in 11.1.2.2, i checked that)
    Regards
    Celvin
    http://www.orahyplabs.com

  • Member Alias versus Member names

    Hi I have a form in 9.2 for which in the Page Section, I have 4 dimensions selected. The properties for the 4 dimensions is set to display alias names. One of the dimensions does not have an alias name and it displays the member name instead.
    After migrating the form to 9.3.1, I have not changed the member properties for the forms and this time the dimension-wihout-the-alias-name displays 'Null' since there isnt an alias name for the member.
    Is this a feature change in 9.3.1? or is it a setting I have forgotten to modify?
    Thanks and Regards
    Kunal

    Hi,
    9.3.1 does have the same functionality. If there is no alias available you should be seeing member names on forms.
    There might have been something wrong during migration. Though, even if so, it is still strange you seeing "null" on forms.
    Have you tried changing the property to show names, save and re-set back to alias and save again?
    Also, you better make sure that you've applied the latest patches for all 9.3.1 modules.
    Cheers,
    Alp

  • How to set Essbase member alias as level label for hierarchy

    Experts,
    * I have imported my Essbase cube metadata and see my Essbase Member Aliases as Dimension Properties in the physical layer.
    * when I view members of the levels in the physical layer I see them - as I expect - represented by the human readable alias names of the members.
    * now drag&drop of the model into BMM layer - I notice the aliases (Dimension Properties in physical layer) are here represented as any other Logical Columns.
    * drag&drop into the Presentation Layer and I can build my reports
    Problem: in reports my hierarchies display using keys (from Essbase outline) and NOT the member aliases as would make sense.
    When I drop the alias column next to the hierarchy column on the report, it does display the alias of the member in the current line - but how can I switch the hierarchy display itself to the alias???
    thanks
    Edited by: 846780 on May 23, 2011 8:41 AM
    Edited by: 846780 on May 23, 2011 8:42 AM

    1. When you post code, post a minimal example. Did we have to scroll through
    all those bloody labels.
    2. Can't say much for the quality of code NetBeans generates.
    3. To answer your question (sorry, I don't have an autographed copy of the photo):
    import java.awt.*;
    import java.net.*;
    import javax.swing.*;
    public class Example {
        public static void main(String[] args) throws MalformedURLException {
            final JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            Container cp = f.getContentPane();
            cp.setBackground(new Color(0xff, 0xff, 0xee));
            cp.add(new JLabel("set the color on the content pane, not the frame"), BorderLayout.SOUTH);
            URL url = new URL("http://today.java.net/jag/bio/JagHeadshot-small.jpg");
            cp.add(new JLabel(new ImageIcon(url)));
            f.pack();
            SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • Hiding a member + Alias

    How do I insert a member in a row yet hide both name AND alias? I basicly want a row of empty cells beneath the other members, yet I want them to aggregate properly. Basicly
    a member to exist with no alias or member.
    I've tried the following: Untick the display "Member Name." box and ticking only alias. This didn't work because with the lack of any alias, Hyperion immediately gives out its original name.
    I've also tried creating a different alias table aside from the default one.

    Hey Anthony!
    I believe you misunderstood, though maybe I'm not good at describing the situation! :P
    Ok. Let me try again. See, Anthony, on the excel sheet that I'm trying to sort of replicate, I have accounts(if you will) that aggregate to a total, yes?
    So for example, if I have say, pens, pencils,erasers and pencil sharpeners, they traditionally total up under a member we'd call stationary. Instead of that, I want them to total up
    in cells below them where you do not see the member name. You get it?
    Please tell me if you do not, because I might be able to post a screenshot of the excel sheet.

  • Get Member Alias using JAPI

    <p>[1] Is there a way to get the Alias for a given member if youquery the outline using openMemberSelection()? (I can get themember's Alias using openOutline(), but that takes about 45 secondseach time I call it, because our outlines are so big!).<br><br>[2] Can anyone supply some example code for theexecuteQuery(fldSelection, mbrSelection) method, showing how toretrieve the desired member info? The MetaData.java sample usesthis call, but then doesn't try to access the member info!</p>

    Thanks for the reply John.
    I am not getting any error message. From  hs_account_hierarchy table i can import in to my epm application. Parent and child values are loaded successfully. But the child description ( Alias ) not loading in to application.
    Example:
    HS_ACCOUNT_HIERARCHY
    Parent Child "Alias=Default"
    1000     1001     College B
    In EPM Application its loaded only Parent and Child values.
    Parent Child "Alias=Default"
    1000     1001    
    I will setup my application in to debug mode and i will upload the logs.
    Thanks Again,
    GTS.

  • Truncate member names in Finanial Reporting / Using Member Alias in HFR

    Hello,
    We have a financial Reporting where the Member names look like the following:
    A_MemberName, P_MemberName, MemberName_C, etc.
    We want to remove the '_' and the prefix such as A, P, C, etc.
    Also, we want to remove the suffix '_C' where they occur.
    How can we do this in Financial Reporting?
    Turns out that the description/alias of the Member removes the prefix as the alias is: MemberName. However, the MemberAlias funciton is not working for some reason. Is it because the autocalculation is set? Either way, is there a way to do this in Financial Reporting? O
    We allso want a generic way to make sure that the Alias shows and not the member name (auto-calculation is set to true). Any help is much appreciated. Thanks.
    -- Adi

    As far as I know, there is no easy way to fix this issue on FR itself. I believe there was a similar post on the forums about a month ago. I think Iain recommended what I will recommend now. (Iain: Feel free to correct me)
    Depending on your database connection, for example in an Essbase database, you can create an alternate alias table, which wouldn't have the prefix or suffix. FR lets you use different alias tables, so you could use this new alternate alias table instead of your current one.
    Let me know it this doesn't make sense.
    Cheers,
    Mehmet
    p.s. My bad, I thought this was the Reporting Forum. If you like to search your issue in the reporting forum, here is the link: Hyperion Query and Reporting
    Edited by: Mehmet Sevinc on Apr 4, 2012 1:09 PM

  • Show member alias in a business rule RTP instead of member names

    Hello,
    Is there a way that by default in an RTP the user gets to see Aliases instead of member names? This is not very user friendly.
    Regards,

    I think in the earlier version that was a preference setting which allows alias in member selection. (not in 11.1.2.2, i checked that)
    Regards
    Celvin
    http://www.orahyplabs.com

  • Export file with member alias

    Hi,
    I am exporting the data via DataExport command. I need the export file to contain the alias
    of the members from all dimensions along with the exported data.
    Currently the file contains the members names.
    Is it possible what I need?
    Thanks,
    CM

    CM,
    I don't think you can export aliases using a Dataexport command. You can consider following as an alternative:
    1. Export the Alias table using the following:
    query database 'Sample'.'Basic' list alias_names in alias_table 'default';
    2. Write a report script that outputs all the members (either all or level zero). With a report script you can use OUTALTNAMES to output alias names and OUTALTSELECT to specify which alias table you want to use.
    Hope it helps...
    KosuruS

  • Shared Member Alias Add

    Hi,
    How can i add alias to shared members ?
    Cube Type : ASO
    Thanks

    It works for sure in BSO.
    Have you tried to do it in ASO?
    Regards,
    Cameron Lackpour

  • Create share point in dock as an alias

    Currently, when I try to add an alias of a share point to the dock in Workgroup Manager it behaves like a folder in the user's dock. Specifically it behaves as a stack. I want it to behave like an alias does when it is added locally to a user's dock which is to open the share point as a window in the finder. How do I do this?
    - Snow Leopard Server 10.6 on a core 2 duo mac mini

    See table 256 in the Database Administrator's Guide: http://docs.oracle.com/cd/E17236_01/epm.1112/esb_dbag/esb_restricted_names.html#esb_restricted_names1063037
    There is a list of characters that can not be the first character in a member alias, and "-" is one of them. So you can't set an alias to "-70.20, -80.4". A possible workaround is to add some constant prefix - for example "Map -70.20, -80.4" would be an acceptable alias - then trim it off for use in your Widget.

  • Using data values for member selection

    Hello everybody:
    I know there are functions to operate with members, strings, member names, ... so that you are able to convert from a string to a member (@MEMBER) and conversely.
    But, is there any way to use a member value to select another member?. For example, if in the account dimension I have a member "parent" with value '100'. Could I save in the member '100' a value, using the '100' saved value in "parent" to select that member. So if its value is '200', I should save in member '200'.
    Thank you
    Regards,
    Javier

    Hello CM:
    I apologize for the description :(.
    There are three indicators: "InitDate", "EndDate" and "Parent". There is another dimension with three members: "1", "2" and "3" with these data:
    "Parent" "InitDate" "EndDate"
    "1" "Missing" 20120101 20120301
    "2" "Missing" 20120201 20120228
    "3" 1 "Missing" "Missing"
    My intention is that "InitDate" and "EndDate" for "3" were values taken from member "1" based on "Parent" value for "3".
    So my question was related to create this formula:
    "ID" (
    IF ("Parent" <> #Missing)
    "InitDate" (current member) = "InitDate"->@??????("Parent");
    "EndDate" (current member) = "EndDate"->@??????("Parent");
    ENDIF;
    That is, being able to recover value "1" in "Parent"->"3" to create cross-dimension "InitDate"->"1" and "EndDAte"->"1".
    The problem is that I do not know how to recover a cell value (data) and use it for creating a member name. I think that functions like @NAME, @MEMBER, @ALIAS ... are based on using atributtes, strings, @CURRMBR functions and others, but not for values stored in that members.
    I hope this helps you to understand better what I mean.
    Thank you
    Regards,
    Javier
    Edited by: Javi M on 25-May-2012 02:17

  • Expected type [STRING] found [MEMBER] ([Average]) in function [@ISACCTYPE]

    Hi
    We've upgraded from 11.1.1.0 to 11.1.2.1.
    The following member formula worked previously:
    if(@ismbr(YearTotal));
    +     Jun;+
    ELSEIF(@ISACCTYPE(Average));
    +     @AVGRANGE(SKIPNONE,@CurrMbr(Measures)->Month,@ILSIBLINGS(@CurrMbr(Period)));+
    ELSE
    +     @ACCUM(Month,Jul:Jun);+
    Endif;
    Now get the following error:
    +Error(1200354) - Error compiling formula for [YTD] (line 3): expected type [STRING] found [MEMBER] ([Average]) in function [@ISACCTYPE]+
    There is no member or member alias called 'Average' (I did a search).
    I refered to this forum item, but no solution was provided: @ISACCTYPE formula error
    Your assistance is appreciated.
    Cheers

    Hold on!
    I thought to query the SQL repository and got some help from this dodgy blog:
    http://camerons-blog-for-essbase-hackers.blogspot.com.au/2011/07/stupid-planning-queries-3-accounts.html
    For reference purposes, here's what I ran:
    select               
                   hspo.object_name
    from               hsp_object     hspo
    INNER JOIN          HSP_ACCOUNT     hspa     on hspo.object_id = hspa.ACCOUNT_ID
    where               1=1
    and               hspo.OBJECT_TYPE = '32' --Account dimension
    and               hspa.TIME_BALANCE = 3 --Time Balance = Average
    TIME_BALANCE
    WHEN 0 THEN 'None'
    WHEN 1 THEN 'First'
    WHEN 2 THEN 'Last'
    WHEN 3 THEN 'Average'
    ELSE ''
    Edited by: user964802 on Jan 17, 2013 11:19 AM
    Edited by: user964802 on Jan 17, 2013 12:07 PM

Maybe you are looking for

  • Log in problem

    i cannot open photosphop. error message:"photoshop services are currently unavailable. please try again later or check your network connections. ERROR 400."

  • Using encrypdb utility

    Hello All Can any one give me an example of using the encrypdb. I have a problem accessing the lite database after the encryption. From the documentation is not very clear on how to supply the encryption password in the connection string to the datab

  • Don't know which version of Photoshop to get, I need the oil paint filter.

    I'm a new designer and on class I did some really cool stuff with the oils paint filter and I LOVE IT, it will be a great part of the style I want to develop but I'm on a CC trial and it is not there! I've done my homework and have found out that app

  • Ethernet has completely stopped working

    Here is what happened: This morning, my ethernet port was working just fine. I could and did connect to the internet. I was working on my Windows side (recently installed Windows 7 from Windows XP Service Pack 3 on Boot Camp. Installed both the drive

  • Adobe flash player 13 r0 has stopped working

    Just keeps popping up with this when I open Mozilla. 'Adobe flash player 13 r0 has stopped working' Haven't backtracked if it happens with Chrome or other browsers. Here's the Problem signature:   Problem Event Name: BEX   Application Name: FlashPlay