display the hierarchical member alias names

How to display the alias names of the hierarchical member instead of the names of members of contour in shapes of lines and columns?
Thanks in advance.

Hello

Click the dimension properties icon right next to the drop-down list of dimension (to the left of the input box where you put the name of the Member in) in the form of row/column design.
It will have a property for "alias member.

Ok?

See you soon

John
http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • Display the first and last name of userdetails welcome message

    Hi I am a newbie to php in dreamweaver CS5 and I did many tutorials with David Gassner and tutorials seen with David Powers.So my works perfectly login page it takes my my login page, but I want to display the full name of the users on the page, but I can't make it work I even bought a tutorial of SDS tutorials on this subject , but not working, can anyone help.

    If (! isset {})

    session_start();

    }

    It's my recordset.

    $colname_getUserDetails = "-1";

    If (isset($_SESSION['MM_userName'])) {}

    $colname_getUserDetails = $_SESSION ['MM_userName"];

    }

    @mysql_select_db ($database_datexdatabase, $datexdatabase);

    $query_getUserDetails = sprintf ("SELECT firstName, lastName FROM users WHERE userName = %s", GetSQLValueString ($colname_getUserDetails, "text") ");

    $getUserDetails = mysql_query ($query_getUserDetails, $datexdatabase) or die (mysql_error ());

    $row_getUserDetails = mysql_fetch_assoc ($getUserDetails);

    $totalRows_getUserDetails = mysql_num_rows ($getUserDetails);

    not sure of the echo

    concerning

    Stephen

    Access.php page, change-

    $totalRows_rsUserDetails = mysql_num_rows ($rsUserDetails);

    on this subject.

    $totalRows_rsUserDetails = mysql_num_rows ($rsUserDetails);

    ECHO '.

    "; Exit(print_r($row_rsUserDetails)) ;

    Enregistrer et télécharger. Ensuite, allez à la page de connexion et se connecter.  Que voyez-vous sur la page d’accès ?

  • Get the dynamic query alias name

    Hi all

    I have a plsql function using a dynamic query.
    And the function takes an entire sql query as a parameter.

    The main problem is that the function must get what aliases or columns were interviewed.

    For example,.
    FUNCTION_GET_QUERY_ALIAS ('SELECT 1 AS col1, col2 FROM DUAL 2 AS')
    Inside the function, he must find the alias name COL1 and COL2.

    I would be grateful for any help.

    I modified print_table as fact and function to meet your needs.

    SQL> CREATE OR REPLACE TYPE my_column_object AS OBJECT(ruw_number integer, column_name VARCHAR2(1000), column_val VARCHAR2(1000))
      2  /
    
    Type created.
    
    SQL> CREATE OR REPLACE TYPE my_table_type AS TABLE OF my_column_object
      2  /
    
    Type created.
    
    SQL> CREATE OR REPLACE FUNCTION print_table( p_query in varchar2 ) RETURN my_table_type PIPELINED
      2  AS
      3      l_theCursor     INTEGER DEFAULT DBMS_SQL.OPEN_CURSOR;
      4      l_columnValue   VARCHAR2(4000);
      5      l_status        INTEGER;
      6      l_descTbl       DBMS_SQL.DESC_TAB;
      7      l_colCnt        NUMBER;
      8      l_rcount           INTEGER := 0;
      9  BEGIN
     10      DBMS_SQL.PARSE(  l_theCursor,  p_query, dbms_sql.native );
     11
     12      DBMS_SQL.DESCRIBE_COLUMNS( l_theCursor, l_colCnt, l_descTbl );
     13
     14      FOR i IN 1 .. l_colCnt
     15      LOOP
     16          DBMS_SQL.DEFINE_COLUMN(l_theCursor, i, l_columnValue, 4000);
     17      end loop;
     18
     19      l_status := DBMS_SQL.EXECUTE(l_theCursor);
     20
     21      WHILE ( DBMS_SQL.FETCH_ROWS(l_theCursor) > 0 )
     22      LOOP
     23             l_rcount := l_rcount + 1;
     24          FOR i IN 1 .. l_colCnt
     25          LOOP
     26              DBMS_SQL.COLUMN_VALUE( l_theCursor, i, l_columnValue );
     27
     28              PIPE ROW(my_column_object(l_rcount,l_descTbl(i).col_name,l_columnValue));
     29          END LOOP;
     30      END LOOP;
     31
     32     RETURN;
     33  end;
     34  /
    
    Function created.
    
    SQL> select * from table(print_table('select * from emp'))
      2  /
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
             1 EMPNO                7369
             1 ENAME                SMITH
             1 JOB                  CLERK
             1 MGR                  7902
             1 HIREDATE             17-DEC-80
             1 SAL                  800
             1 COMM
             1 DEPTNO               20
             1 DIV                  10
             2 EMPNO                7499
             2 ENAME                ALLEN
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
             2 JOB                  SALESMAN
             2 MGR                  7698
             2 HIREDATE             20-FEB-81
             2 SAL                  1600
             2 COMM                 300
             2 DEPTNO               30
             2 DIV                  10
             3 EMPNO                7521
             3 ENAME                WARD
             3 JOB                  SALESMAN
             3 MGR                  7698
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
             3 HIREDATE             22-FEB-81
             3 SAL                  1250
             3 COMM                 500
             3 DEPTNO               30
             3 DIV                  10
             4 EMPNO                7566
             4 ENAME                JONES
             4 JOB                  MANAGER
             4 MGR                  7839
             4 HIREDATE             02-APR-81
             4 SAL                  2975
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
             4 COMM
             4 DEPTNO               20
             4 DIV                  10
             5 EMPNO                7654
             5 ENAME                MARTIN
             5 JOB                  SALESMAN
             5 MGR                  7698
             5 HIREDATE             28-SEP-81
             5 SAL                  1250
             5 COMM                 1400
             5 DEPTNO               30
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
             5 DIV                  10
             6 EMPNO                7698
             6 ENAME                BLAKE
             6 JOB                  MANAGER
             6 MGR                  7839
             6 HIREDATE             01-MAY-81
             6 SAL                  2850
             6 COMM
             6 DEPTNO               30
             6 DIV                  10
             7 EMPNO                7782
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
             7 ENAME                CLARK
             7 JOB                  MANAGER
             7 MGR                  7839
             7 HIREDATE             09-JUN-81
             7 SAL                  2450
             7 COMM
             7 DEPTNO               10
             7 DIV                  10
             8 EMPNO                7788
             8 ENAME                SCOTT
             8 JOB                  ANALYST
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
             8 MGR                  7566
             8 HIREDATE             19-APR-87
             8 SAL                  3000
             8 COMM
             8 DEPTNO               20
             8 DIV                  10
             9 EMPNO                7839
             9 ENAME                KING
             9 JOB                  PRESIDENT
             9 MGR
             9 HIREDATE             17-NOV-81
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
             9 SAL                  5000
             9 COMM
             9 DEPTNO               10
             9 DIV                  10
            10 EMPNO                7844
            10 ENAME                TURNER
            10 JOB                  SALESMAN
            10 MGR                  7698
            10 HIREDATE             08-SEP-81
            10 SAL                  1500
            10 COMM                 0
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
            10 DEPTNO               30
            10 DIV                  10
            11 EMPNO                7876
            11 ENAME                ADAMS
            11 JOB                  CLERK
            11 MGR                  7788
            11 HIREDATE             23-MAY-87
            11 SAL                  1100
            11 COMM
            11 DEPTNO               20
            11 DIV                  10
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
            12 EMPNO                7900
            12 ENAME                JAMES
            12 JOB                  CLERK
            12 MGR                  7698
            12 HIREDATE             03-DEC-81
            12 SAL                  950
            12 COMM
            12 DEPTNO               30
            12 DIV                  10
            13 EMPNO                7902
            13 ENAME                FORD
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
            13 JOB                  ANALYST
            13 MGR                  7566
            13 HIREDATE             03-DEC-81
            13 SAL                  3000
            13 COMM
            13 DEPTNO               20
            13 DIV                  10
            14 EMPNO                7934
            14 ENAME                MILLER
            14 JOB                  CLERK
            14 MGR                  7782
    
    RUW_NUMBER COLUMN_NAME          COLUMN_VAL
    ---------- -------------------- --------------------
            14 HIREDATE             23-JAN-82
            14 SAL                  1300
            14 COMM
            14 DEPTNO               10
            14 DIV                  10
    
    126 rows selected.
    
    SQL>
    

    Thank you
    Knani.

    Published by: Karthick_Arp on September 23, 2008 12:11 AM

  • notification of iMessage on Mac displaying the phone number, not name

    Only, I imported my contacts from my phone to my Macbook Air, but whenever I get a notification of text at the top right of my screen, it shows the phone number, not the name of the contact. Once I go into iMessage, the name is displayed. That's all just annoying that I don't know who texted me until I actually open iMessage. iCloud is enabled for my Mac and my iPhone.

    Check system preferences > Notifications > view Message

  • Duplicate the hierarchical member - Dimension Build Question

    I'm building a dimension (the client) in a sketch of duplicate members. I use a rule of responsible for generation of parent/child dimension. I know that I need to have the full name of parents in this file. My question is this - full parent member name exceed 80 characters - and reviews are rejected.

    Question - is the name of the complete parent member must include all ancestors, or just enough to uniquely identifiable Member? I'm trying to find a way to make the names of members of less than 80 characters.

    Thank you!
    -Jake

    It is not necessary to include all the ancestors for a full qualified parent. You can add the id or the name of the immediate superior level (ie., its name from single parent) to make it unique.

  • strange alias name change in hierarchical planning after loaded ODI

    I have this name strange alias change in the scheme of planning.
    We did a load of member using ODI and it worked very well. A few days later, it seems one of alias names have disappeared, and I don't know how it happened.
    All users who have access say they has not changed anything in the outline.
    the only process I can think is the load of oDI. But according to our ODI, implemented may not remove all Member/alias names existing (at least I think he can't remove)
    We now have this alias among more than one name and we ran the same ODI work successfully many times previously.
    In the ODI source file, there is no alias name, but in the web of planning, we alias name manually updated a long time back.
    So if run us task ODI, we used to have the alias name, as ODI will remove all existing names (don't replace if there is a change)...
    users thought that there might be a space or something for the existing name may have been replaced by space...
    So I took the same copied file on test and ODI work ran and it has not changed the existing alias name. So now I'm really confused about the change of the alias name.
    Is there a way to track changes in the structure of planning, as in DRM where we can see the transaction history?
    Please advice.

    Thank you in advance.

    Unfortunately, you probably won't be able to find out now, you will need to make sure that you enable auditing for you back in the future.
    ODI will be just able to show the SQL and the number of records that have been loaded, if you use a transit area and do not delete the table from the staging area might there could be information loaded in it.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Not able to see the new Member shared alternative hierarchy on Smart view

    Hello

    I had to make changes on the replacement as a hierarchy below:

    1 created shared member on the new roll upward with Member Shared Property (replacing Hierarchy).

    2 removed the former member under the other roll upward.

    3 refreshed the Hyperion, planning of database.

    4 could see the new Member roll up on the alternative hierarchy after refresh.

    Now, when I try to extract data from the new hierarchy of alternative, I'm not able to get the data that I get the error message like "Invalid Grid - size XXXX member is located at the wrong location".

    I choose the option 'selection of members' members, but the grid is not valid when I try to extract data on smartview.

    Have I missed any step to make changes on the planning? I checked from myside to display the shared member on Essbase after updating of the planning application.

    Can you please help me in fixing the issue?

    Thank you.

    VERP.

    Thanks Dan.

    Tried to build the new sheet, and I was able to run successfully. Members have been placed wrongly and could fix it.

  • How to display the member name and/or Alias according to generation in Studio EN?

    I have a report that contains relatives in lines that are set to stretch and show Member aliases. During the expansion under the parent I would like to display the member name and Member Alias. I tried conditional formatting to replace the Alias members using a text function, but replace only accepts text, not functions. Does anyone know how to do this?

    I use 11.1.2.3

    Do you need to in the same column? If this isn't the case, you could pull in another column of the alias and use conditional formatting to hide either or depending on the generation.

  • Display the member name and the alias in Smart view

    Hi gurus,

    I have a request from ASO (version 11.1.2.1) where the dimensions of the customer and the provider have names and alias names. Member name field contains the customer number (vendor number) and alias contains the full name. Now, I created a query using the query designer where I selected the "Member name and description" option in the Option Member Smart View menu in Excel. But, while I fetch data from the query, the system only returns the alias name and alias name + not a member name.

    Can you please how can I get both? The Smart View User guide says that "Member name and description" displays the full qualified names and descriptions (alias).

    Thank you.

    If you want to view the Member and the alias, then this is a new feature in 11.1.2.1.102

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • SmartView version 11.1 - member of display & Alias name?

    Is it possible to display the member name and alias (description) in the same query. This is possible with the addition of Essbase, but I do not see the option in SmartView... one or the other... ideas?

    Hi JFo

    Unfortunately, this is normal even though I wish they would change it as it is one of the most common things I ask myself when trying to convert the Excel add-in customers to SmartView!

    There are only certain types of SmartView connection supporting showing two members name & alias together. I don't remember exactly what you can and can not use but I pretty sure this planning and Essbase support not show both either version 9 or 11.1

    Fingers crossed it gets added soon!
    Concerning
    Stuart

  • SMV 11.1.1.2.00 build 122 - 'options display the member name' - all greyed out

    Hello

    Has anyone seen this? I'm confused as to why the options are grayed out - I am connected to the APS and the connection is recognized on the worksheet. Its a special type of connection. Stuff very basic - I was wondering what is happening here.

    Using office 2003 on vista OS.

    Hello.

    Using Smartview 9.x, I asked the Support of Oracle on why I can't use this option (all grayed out) and they told me the following:

    ****
    This is the expected behavior. The only way to select the aliases table is to use 'change alias table' in which case all the smartview pass alias mode.

    Description is used by HFM where there might be some additional description available for a label.
    ****

    I don't know if this applies to you.

    Julio.

  • Can show us some Alias names instead of names of Member on a data form?

    I created a data form with accounts on the rows axis dimension members. 10 members, instead of the full member names, I want to display names alias to 4 members. Is this feasible? If so, how?
    Please let me know... It's urgent...

    Thank you

    Hello

    Between boxes of Dimension and member you can fins of a small icon (this is Dimension Properties). Click on that, you can select the alias of Member for your members.

    It may be useful

    Hari

  • Why only a Yahoo Group displays the column group name?

    I belong to several Yahoo groups and get individual emails from 3 of them. They all worked well until May 8, 2014, when the Freex news group began to display only "[email protected]" in the column. It's always like that. I can't be sure it's a Yahoo problem, like the other groups I am a member of display the senders display name and e-mail address.
    The attachment is a snip of the CT showing how it was and how it has changed.
    Please tell us how to get back to the display names and addresses.

    locate this address in your address book, and then delete.

  • Can Lightroom displays the name of the file in a slide show

    As part of a photography club, my role is to display images on a projector for the monthly contest which is held.  As part of this process, I need to be able to display the name of the file during the slide show so that others know who the photograph belongs to which is displayed.  I can't find a way to do this via a custom slide show.

    Now 'Openness' does that very well, but later "Aperture" will die a slow and painful death as revisions of the progress of OS X in the future.  for example, Apple is no longer supports Aperture.

    If there isn't a way to do that currently in Lightroom so I hope that Adobe developers reading this and might consider adding this to a future revision.  I doubt that I would be the only member of a photography club all over the world who seek this facility in Lightroom.  The fundamental role of photography clubs is to encourage members to put to the challenge and by holding competitions to achieve this effect.  The I am involved in the club is the newest and most dynamic in our State of Western Australia and which is due to the incredible power of the founder of the club (a professional photographer of Rockingham) which constantly inspires us all.

    Hi Chrispy104,

    46 years of experience club here, ask here!

    Easy when you know how!

    In the slideshow module.

    Place a check/tick in the 'Text Overlay' Control Panel-

    Click on ABC to allow text on the screen-(cela peut être fait plus d'une fois pour avoir plusieurs zones de texte!)

    You can move, resize, make set, set the opacity, or delete text boxes when they are 'active' and surrounded by the resizing border.

    Click on the drop down Menu to a choice-

    You can simply choose "Filename" or...

    If you choose 'change... '. "you enter in the text template editor, and design you everything WHAT you want to see the.

    If you click the menu drop-down at the end of the [Preset] box in the editor, you can save the preset for future use!

  • the problem display of hierarchical data on table tree of ADF 11 g

    We try to display hierarchical data tree ADF tabletop.
    our table a (id, parant_id, name) columns and an open relationship between id and id columns adorning it.
    We create module OT, vo and app. Jdev automatically creates connection object and Association.
    In the editor view, drag us and drop our table as a tree of ADF table.
    In table tree aditor rool we add a rool Association name.
    When we launch the application data display incorrectley. For example if the data as

    1 aaa 0
    2 1 BBB
    3 ccc 2
    4 2 ddd

    We want to display the structure of the tree as

    1
    -> 2
    -> 3
    -> 4

    but it shows the possibilities of something like (lines "BOLD" incorrectly) added.


    1
    -> 2
    -> 3
    -> 4
    * 2 *
    -> 3
    -> 4
    * 3 *
    * 4 *


    (We have 10g. But in the table tree 11g have a different configuration. )

    Thank you...

    I think that if you want to limit the list of records shown at the first level of the tree to those without a father - you'll need create a VO that this query - and then add a viewlink to the full list.
    For example by using the employees table in the HR schema, which would be something like a VO with 'where manager_id is null' for the first level, as well as a link from there to the VO used to get other levels.

Maybe you are looking for