Lable only member display data in ASO

Hello

I have marked the 'Measures' dimension on the outline as "Lable" only and also define the grouping property of all members of the measures dimension to "Ignore (~)' in an application of ASO. But when I retrieve the data in this cube in SmartView, I am able to see data at the level of the dimensions also, that is to say, to level 'Measures' and these data is the same as the data in the first member of the measures in the outline dimension. Please let me know how this can be corrected.

Kind regards
Krishna

Hello Krishna,

Please mark the dimension Measures "never action."

Greetings
OHS...

Tags: Business Intelligence

Similar Questions

  • Display Date only - per year

    It's simple, no doubt, but I can't find a solution...

    Maybe not in the right place brain...

    I have several dates... IE data entry on different dates.

    And to find these entries... And display only the year...

    That is to say... Data entered in 2011 and 2012...

    You want to display the output of "2012" and "2011" to drop the dates...

    cfquery name = "staty" datasource = "BFP" >

    Select * from inspid

    where inspectorid = #session.inspuser_id #.

    inspdate desc order

    cfquery >

    Output - only - years several dates...

    Sounds simple - but I can't get it in my head...

    THX

    Thanks for the sarcasim...

    Yes, I consider google my book...

    Answer here...

    Select distinct year (inspdate) AS yydate of inspid

    where inspectorid = #session.inspuser_id #.

    #yydate #.

    Coding was fuzzy in my head...

  • Palm Desktop 6.2.2 on Win8.1 synchronization but only showing no data

    I'm so happy to have found this forum.  I didn't know there was so much love for the old Palm devices.  I started with a Palm V and worked my way up to a Tungsten T & palm Desktop 4.1.4 on WInXP and everything was so good that I resisted to move away from Palm Desktop, as it is just what I need.  But I just bought a new Win8.1 PC and am having a few problems that I hope someone here can help with.

    I have been through help here on the installation of Palm Desktop 6.2.2 and win8 driver and installation has been very good and I couldn't hotsync via USB without apparent problems, except that Palm Desktop does not display any of my palm data!

    When I ran hotsync (from cradle palm button) it asks a user name.  My Tungsten T was already used on my XP PC and was full of data.  If I entered the username of tungsten and hotsync continued.  It took a few minutes or so (as would be expected) and once finished he said that everything was ok.  I checked the logand Hotsync, it was confirmed that everything was synced properly - but when I open Palm Desktop there is no displayed data.

    I then checked the data files in ...documents\Palm OS Desktop\... and addresses and calendar files are present and full of my data.  I've even opened in Notepad and could easily see loads of text ascii among all of the "junk" characters, so it seems that the synchronization process has worked correctly, but none of my Tungsten is displayed in Palm Desktop.

    I then added an event on the agenda in Palm Desktop and another event the same day in tungsten.  I then did an another hotsync.  It was reported as a success, but the event of tungsten is not in the office, although the same office appeared on the tungsten.  If the synchronization process seems to work only one way!

    I have had it before and would appreciate any help.

    OK, try to use the "Palm Hotsync Setup" program found on this page.

    Since you're using an old T | T, maybe that's the answer.

    There is a guide available on this site for the migration of data from Palm OS Android, if you are interested.  I made this jump years ago when webOS was finished.  You can find it on their homepage.

    WyreNut

  • Display data from another web application

    Hello

    I hope than to display data from my application 'team' on my 'articles' approx. basically display image of the author, email etc., which comes from the app TEAM. I know that this is possible.  I use the data of the src field extract the name of the authors, but of course this provides only a link. Are there tutorials - what can anyone tell me? Thank you.

    So does that mean as a concrete response by using the system of normal with BC, is tag that you insert this code for your team web app {module_webapps, 123456, i, {tag_author_id}} on your layout displayed products app page.  ID tag of the author is a field set up in the articles web app and a field of the data source to connect to your team application.

  • query to display data in table with several detail table

    Hi all

    I have a few cases with a table header that have more than 3 table of detail, and I have to generate the query to show all the data horizontally.

    tblHdr have column A (PK)

    tblDtl1 have column A (FK), B (PK)

    tblDtl2 have column A (FK), C (PK)

    tblDtl3 have column A (FK), D (PK)

    and I need a query to display data like this:

    AB1C3D1
    AB2C4D2
    AC5D3
    AC6

    all the Details of the table should display data based on the relationship of tblHdr (A).

    tblDtl1 have only 2 rows of data for the FK A

    tblDtl2 just for FK 4 lines of data

    tblDtl3 only 3 lines of data for the FK A

    Another example:

    AB1C1D1
    AB2C2
    A

    B3

    tblDtl1 only 3 lines of data for the FK A

    tblDtl2 have only 2 rows of data for the FK A

    tblDtl3 have only 1 rows of data for the FK A

    Please shed some light. for the record, I'll use this query in ADF, so I'll put using PLSQL in second priority.  I prefer to do it in the SQL query.

    Thank you

    Here are 3 ways. First test of data:

    drop table ta purge;
    create table ta as
    SELECT 'A' AS A FROM dual
    union all
    select 'B' from dual;
    
    drop table tb purge;
    create table tb as
    SELECT 'A' AS A, 'B1' AS B FROM dual
    UNION ALL
    SELECT 'A', 'B2' FROM dual ;
    
    drop table tc purge;
    create table tc as
    SELECT 'A' AS A, 'C1' AS C FROM dual
    UNION ALL
    SELECT 'A', 'C2' FROM dual
    UNION ALL
    SELECT 'A', 'C3' FROM dual
    UNION ALL
    SELECT 'A', 'C4' FROM dual ;
    
    drop table td purge;
    create table td as
    SELECT 'A' AS A, 'D1' AS D FROM dual
    UNION ALL
    SELECT 'A', 'D2' FROM dual
    UNION ALL
    SELECT 'A', 'D3' FROM dual;
    

    Now 3 solutions: full join, group by and pivot:

    with b as (
      select a, b,
      row_number() over(partition by a order by b) rn
      from tb
    )
    , c as (
      select a, c,
      row_number() over(partition by a order by c) rn
      from tc
    )
    , d as (
      select a, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    select a, b, c, d
    from ta left join b using(a)
    full join c using(a, rn)
    full join d using(a, rn)
    order by a, rn;
    
    select a, max(b) b, max(c) c, max(d) d
    from (
      select a, null b, null c, null d, 1 rn
      from ta
      union all
      select a, b, null, null,
      row_number() over(partition by a order by b) rn
      from tb
      union all
      select a, null, c, null,
      row_number() over(partition by a order by c) rn
      from tc
      union all
      select a, null, null, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    group by a, rn
    order by a, rn;
    
    select A,B,C,D from (
      select 'A' tab, a, null val, 1 rn from ta
      union all
      select 'B' tab, a, b,
      row_number() over(partition by a order by b) rn
      from tb
      union all
      select 'C' tab, a, c,
      row_number() over(partition by a order by c) rn
      from tc
      union all
      select 'D' tab, a, d,
      row_number() over(partition by a order by d) rn
      from td
    )
    pivot(max(val) for tab in('B' B, 'C' C, 'D' D))
    order by a, rn;
    
    A B C D
    A B1 C1 D1
    A B2 C2 D2
    A C3 D3
    A C4
    B

    Personally, I would prefer to view the data by using a 'join the union', in order to avoid the impression that the different detail records are related somehow.

    select ta.a, b, c, d
    from tb full join tc on 1=0
    full join td on 1=0
    right join ta on ta.a in (tb.a, tc.a, td.a);
    
    A B C D
    A B1
    A B2
    A C1
    A C2
    A C3
    A C4
    A D1
    A D2
    A D3
    B
  • Display data from the database in a table

    Hello

    How to display data from my database in an ADF table using a backing bean? I created an arraylist in the bean, but only the last row of my query is displayed in the table...

    Thank you...

    Hello

    Create a simple Java class that implements Serializable. Create attributes that represent each column in your table. This class represents on the row of your table. A list of these objects, and you can fill your af:table.

    Visit this link below for an example.
    Re: Is it possible to create a static array of ADF and the tree?

    Kind regards
    Amélie Chan

  • How to display date / time in the browser console?

    How to display date / time in the browser console?

    You can set through the Options (gear icon) page in the Web Console (Firefox/tools > Web Developer).
    This applies to the browser console and the Web console.

  • My Apple Watch displays date yesterday instead of today's date. How can I fix it?

    My Apple Watch displays date yesterday instead of today's date. How can I fix it?

    Hi Steven

    It can help to restart your iPhone and your watch. Turn on both devices off the power together first, and then restart your iPhone before restarting your watch:

    -To switch off your watch: press and hold the button side until you see the cursor off the power; slide it to turn off;

    -To switch on: press and hold the side button until you see the Apple logo.

  • How to display data series changed after each step in labview gui, that is to say after the match point fantasy, after substring etc.

    Hi, I have a labview GUI that receives data serially through VISA and basically chops to the strings and realize games until I have values that I'm looking for. I have then convert Ascii string in decimal and feed the new values to a waveform. However, I discovered that some of the output values are incorrect. I checked this by pulling data through Realterm.

    Is it possible that I can see the modified data after each step in the user interface so that I can find where the problem is? I created indicators after each step, but they do not display data, I guess that its because the data is moving too quickly.

    I am very new to labview and struggled through every bit of this GUI, as none of you regular posters know. If you can suggest a solution, please know that I will probably ask more fundamental questions in order to implement your solution.

    I enclose my GUI with a screenshot of the same data through the Realterm. Basically any where you see xxxx TR TR or W xxxxW, know that it is the data between them is to say xxxx that corresponds to the data of interest. Everything else is ignored.

    I suspect that the problem lies in the string to decimal conversion and where 3 digit values increase to 4-digit values. That is, all values of less than 850 are correct but it is the maximum value is reached. My values are expected to reach 2500. Any help would be greatly appreciated.

    You have other debugging tools available to you.  You can use the run culminating to slow down the code and show you the data flowing from each wire.

    You can create a Subvi, which takes the data of each wire and written to a log file if you can review it later.

    You give not the screenshots to your message.

  • How to display date information in a data log table

    Hello

    I want to display data during the data acquisition process. How can I add the time stamp as one of the column in the Table of 'results' located bottom left of the sample code?

    Thank you

    Ryan

    Here is an example of the use of ordinary table instead of the express. You will need to convert your dynamic data to a scalar with the dynamic data conversion function.

  • STROKE (Application Visibilty Control) on WLC 5508 7.5 do not display data

    Dear all

    My WLC has problem...

    the STROKE is not display data (graphic or otherwise)

    I have already set up two Wlan id with the visibility control, but two of them do not display data...

    Here is my setup place WLC 5508...

    My WLC running on OS 7.5

    pack 1.0 protocol version

    NBAR engine 13.0

    AUS 6.0.182.0

    Cisco controller) > see the version of the Protocol-pack stroke

     

    Protocol STROKE Pack name: Protocol Advanced Pack

    Protocol STROKE Pack Version: 1.0

     

    (Cisco Controller) > show stroke engine version

     

    Version of the engine STROKE: 13

     

    (Cisco Controller) > show sysinfo

     

    Name of the manufacturer... Cisco Systems Inc..

    Product name... Cisco controller

    Version of the product... 7.5.102.0

    Bootloader Version... 1.0.1

    Retrieving Image Version field... 6.0.182.0

    Firmware version... Console USB 1.3, 1.6 Env FPGA, 1.27

    even from CLI still do not display data

    (Cisco Controller) >Show stroke statistics upstream applications top

     

    Perspective of the STROKE is 0 for all applications.

    MISTLETOE on attachment configuration capture

    Need your advice is there any configuration that I miss... ??

     

    As long as you go to the STROKE centre should work in Flexconnect. You can check the AP mode under wireless > click on any access point.

    http://www.Cisco.com/c/en/us/support/docs/wireless/5500-Series-Wireless-...

  • display data in a tabular format

    Dear Sir

    I followed the example on

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800508/...

    which really helped me to solve the problem of New York.

    now my data shows but its display twice.

    Here is my code to display data.

    for (int count = 0; count)< 4;="">
    {
    ranks [count] = new VerticalFieldManager(VerticalFieldManager.NO_HORIZONTAL_SCROLL |)
    VerticalFieldManager.NO_VERTICAL_SCROLL);
                
    Add 21 rows of data in the column
    displayData = this.split (data, ' |');
    for (rowCount int = 0; rowCount)< displaydata.length="" ;="">
    {
                
    SB. Delete (0, sb.length ());
    SB. Append ("data");
    SB. Append (Count);
    SB. Append (",");
    SB. Append (RowCount);
    SB. Append("");
    SB = String (displayData [RowCount]);
    displayData [rowCount] = sb.toString ();
                  
                    
    SB. Append (displayData [RowCount]); ((/ /, 0, rowCount); //displayData [rowCount]);
    SB. Append("|");
                  
    ranks [count] .add (LabelField (sb.toString (new), LabelField.FOCUSABLE));
    }
    Add the line to the rowHolder.
    rowHolder.add (rows [count]);
    }
            
    dataScroller.add (rowHolder);
    Add (dataScroller);

    Help, please

    Rgds

    Nadir

    I think that you find wil this code gives you better results:

    How - to create a presentation of the rich UI at TableLayoutManager
    Article number: DB-00783
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800508/...

    There is also a blog about this handler:

    http://supportforums.BlackBerry.com/T5/BlackBerry-Developer-s-blog/how-to-use-table-view-layout/BA-p...

  • Query to display data with total

    Hi team,

    I have the whee requirement I need to display data with total and the total general.

    Examples of data include:

    with t as 
    (select 'chris' nm , 10 no ,'FT' Emplmt, 'PF' ProFund , 'Reg' Status ,to_Date ('05/02/2014','mm/dd/yyyy') dt , 2456 sal, 10 days , 50 intrst ,55 intrs1 ,60 intrs2 from dual
    union all
    select 'chris' nm , 10 no ,'FT' Emplmt, 'PF' ProFund , 'Reg' Status ,to_Date ('06/10/2014','mm/dd/yyyy') dt , 1000 sal, 30 days , 50 intrst ,55 intrs1 ,60 intrs2 from dual
    union all
    select 'chris' nm , 10 no ,'FT' Emplmt, 'PF' ProFund , 'NonReg' Status ,to_Date ('06/10/2014','mm/dd/yyyy') dt , 20 sal, -5 days , 1 intrst ,1 intrs1 ,1 intrs2 from dual
    union all
    select 'john' nm , 11 no ,'PT' Emplmt, 'PF' ProFund , 'Reg' Status ,to_Date ('05/02/2014','mm/dd/yyyy') dt , 1153 sal, 10 days , 50 intrst ,55 intrs1 ,60 intrs2 from dual
    union all
    select 'john' nm , 11 no ,'PT' Emplmt, 'PF' ProFund , 'Reg' Status ,to_Date ('05/16/2014','mm/dd/yyyy') dt , 1000 sal, 8 days , 40 intrst ,45 intrs1 ,50 intrs2 from dual
    )
    select * from t 
    

    Need the output like below format

    Chris FT 10 PF Reg 02/05/2014 2456 10 50 55 60

    Chris FT 10 Reg 10/06/2014 1000 PF 30 50 55 60

    Chris 10 FT PF NonReg 10/06/2014 20 - 5 1 1 1

    5456 35 101 111 121 subtotal

    John PT PF Reg 02/05/2014 1153 11 10 50 55 60

    John PT Reg 16/05/2014 1000 PF 11 8 40 45 50

    2153 18 90 100 110 subtotal

    7609 total 53 191 211 231

    Could you please give some thought to get the result as above.

    Thank you!

    something like this:

    with t as (select "chris" nm, 10 no, "Pi" Emplmt, "PF" ProFund "Reg" Status, to_Date (May 2, 2014 "," mm/dd/yyyy") dt, 2456 sal, 10 days, 50 intrst, intrs1 55 intrs2 60 double)

    Union of all the

    Select "chris" nm, 10 no, "Pi" Emplmt, "PF" ProFund "Reg" Status, to_Date (June 10, 2014 "," mm/dd/yyyy") dt, intrst 50, intrs1 55, 1000 sal, 30 days, 60 intrs2 of the double

    Union of all the

    Select "chris" nm, 10 no, "Pi" Emplmt, ProFund "PF", "NonReg" State, to_Date (June 10, 2014 "," mm/dd/yyyy") dt, 20 sal,-5 days, 1 intrst, 1 intrs1, 1 intrs2 of the double

    Union of all the

    Select "Jean" nm, 11 no, "PT" Emplmt, "PF" ProFund "Reg" Status, to_Date (May 2, 2014 "," mm/dd/yyyy") dt, 1153 sal, 10 days, 50 intrst, intrs1 55 intrs2 60 double

    Union of all the

    Select "Jean" nm, 11 no, "PT" Emplmt, "PF" ProFund "Reg" Status, to_Date (16 may 2014 "," mm/dd/yyyy") dt, 1000 sal, 8 days, intrst 40, 45 intrs1, 50 intrs2 of the double

    )

    SELECT decode (REUNION (nm), 1, 'Total', decode (grouping (State), 1, "partial": nm, nm)) nm

    , no, emplmt, profund, status, dt, sum (sal), sum (days), sum (intrst), sum (intrs1), sum (intrs2)

    T

    Rollup Group (nm, (no, emplmt, profund, status, dt));

    HTH

  • I downloaded creative cloud with CC Photoshop, Premiere Pro CS6 and DC Acrobat install however Premiere Pro does not open. When open the button is on the other app, the first Pro app said only "up-to-date". If I click this, nothing happens?

    I downloaded creative cloud with CC Photoshop, Premiere Pro CS6 and DC Acrobat install however Premiere Pro does not open. When open the button is on the other app, the first Pro app said only "up-to-date". If I click this, nothing happens?Capture.PNG

    check your directory program files adobe > first pro cs6 > first pro.exe file.

    (restart the cc app will probably also work.)

  • Why is there not an option to print only the form data in Adobe XI?

    I created a form in Adobe Acrobat Pro XI and saved.  So I want to open it in Adobe Reader, fill it in and then print only the data from the form, but it is not an option to print only the form data in Adobe Reader XI.  I don't know if it's in the way I created the form or something else.  Any help will be greatly appreciated.  Thank you!

    Adobe is a software company, unless you are a builder.

    Player cannot directly print the form data.

    The ability to print the form data only exist in Acrobat Professional and Acrobat Standard. To purchase the full product provides more bang for the buck.

Maybe you are looking for

  • Guaranteed fund

    Hello Recently I bought a HP Pavilion 500 - 35 d desktop PC. He is a 3 year parts and 3 year on site warranty. I was quite confused by what 2 separate dealers told me about the warranty for this type of PC. A dealer told me that if a customer wanted

  • Satellite Pro L10: Search for replacement screen

    I'm looking for a replacement screen for a Pro L10. does anyone know of anywhere I can get my hands on the other, that the standard ringing tone until toshiba & asking a, caus it will be too expensive.

  • Help me with a problem

    HI, I have a problem on my App Store because every time I try to get on it the screen remains white while on the App Store and that he can't do anything... How can I fix?

  • My 2842DVA SL410 does not detect the card top debit Mobile and WiMAX

    I bought the SL410 2842DVA and I installed windows XP Professional SP3 32 Bit. and it is always smooth. After I install all the driver and make sure that in Device Manager, there was no sign of yellow. I turned off my thinkpad and I turned my back, I

  • Full administrator privileges

    I recently bought a new computer with Windows 7 Ultimate on it, and so far I hate the new version of windows! I use iTunes and now windows 7 says I can't move my files in the Explorer in the way that I like them so I went to appropriate files via the