Hide the results of the column in the total row large pivot

Hello

Do you know if it is possible to hide the result of a particular column in a total row large pivot?
I have several columns that makes sense to use a total of lines (as in money), but others (like average) is not logical in view of the customer to business rules.

Any help on this is much appreciated :)

Thanks in advance,
J marks

Have you tried to move this column of lines measure?

Tags: Business Intelligence

Similar Questions

  • Hide the first row of a table

    Hi all

    Can only hide the first row of a table (no matter what that data as there are)

    Thanks in advance,
    Imtiaz.

    Use

  • Display the values only in the total row

    It is possible to not show the column values in the rows of a table, but only in the total row?

    That is to say. I have a table like this:

    | * col1 * | * col2 * | * col3 * |
    | Val.a | 3 | 1 |
    | Val.b | 3 | 1 |
    | Val.c | 3 | 1 |
    | * tot * | * 3 (avg) * | * 3 (sum) * |

    I want to show this:

    | * col1 * | * col2 * | * col3 * |
    | Val.a | | 1.
    | Val.b | | 1.
    | Val.c | | 1.
    | * tot * | * 3 (avg) * | * 3 (sum) * |

    the reason is that the col2 values are not significant at the level of the line, but only at the total level.

    There is a way to do this in a table of Obiee or PivotTable?

    Thank you

    Luca

    Yes.
    There is code breaking too ;)

    Sigma sigin on PivotTable-> Format values-> text-decoration: none;
    For the column using the style css: color:rgb (242,245,249); or use display: none;

    Pls correct brand

  • How to hide the table row after deleting logical

    Hello.
    I use Jdeveloper 11.1.1.3.0, ADF BC and ADF Faces.
    I would like to implement the logic delete in my application.
    In my entity object I have deleted attribute and I replace the remove() method in my EntityImpl class.
        @Override
        public void remove()
        {
           setDeleted("Y");
        }
    and I added this condition in my view object
    WHERE NVL(Deleted,'N') <> 'Y'
    on my page, I have a table. This table has a column to remove each line. I dragged and drop action the data control RemoveRowWithKey
    and the value of the parameter * #{row.rowKeyStr} *.
    I have what I need is the following:
    When the user click on the delete button I want to hide the ROE of the table. I tried to rerun the query after deleting, but the line is still on the page. Why run query does not hide the line of the screen.
    Here's the code I used to remove and run queries
        public String deleteLogically()
        {
            BindingContainer bindings = getBindings();
            OperationBinding operationBinding = bindings.getOperationBinding("removeRowWithKey");
            Object result = operationBinding.execute();
            DCBindingContainer dc=(DCBindingContainer) bindings;
            DCIteratorBinding iter=dc.findIteratorBinding("TakenMaterialsView4Iterator");
            iter.getCurrentRow().setAttribute("Deleted", "Y");
            //iter.getViewObject().executeQuery();
            iter.executeQuery();
            return null;
        }
    as you can see I used two methods () iter.getViewObject () .executeQuery; and iter.executeQuery (); but the result is the same.

    I built a sample for you - http://jobinesh.blogspot.com/2011/05/soft-deletion-of-rows.html. Please see if it meets your requirement.

  • hide the total time in TOC

    Hello

    How do hide you the total time that appears in the table of contents next to the search option?

    Thank you!

    Hello

    Unfortunately, you can not.

    Perhaps by exporting to Flash, but that is about the only way that I can not understand.

    You can submit a feature request (like formula) to ask for it in a future version.

    See you soon... Rick

    Useful and practical links

    Captivate wish form/Bug report form

    Certified Adobe Captivate training

    SorcerStone blog

    Captivate eBooks

  • Check box to hide the table row

    I have the table and the box.
    I need when is checked then unhidde of certain lines and when is not checked to be hidden?

    Thank you

    I did it in my form. What I did do the subform, and then place all the objects that I wanted to be hidden and then visible inside. I then used this code on the button:

    If (this.rawValue == '1') {}

    oTargetField = this.resolveNode ("subform name here");

    oTargetField.presence = "hidden".

    }

    If (this.rawValue == '0') {}

    oTargetField = this.resolveNode ("subform name here");

    oTargetField.presence = "visible".

  • Table 2D-table 1 d without knowing the total row.

    Hi all

    The forum can fill in with my original question in the future [just kidding ]

    Since I am really new to LabView, there are tons of questions to ask - no doubt one that can't be solved.

    Currently, I have a 2D array that I want to convert to 1 d.

    I managed to do it using the table to index, as shown in the attached example (simple).

    My question is, without knowing the line total of the 2D table, is able to extract each line as table 1 d to display us goal?

    Any suggestion guyz so that i can move forward?

    Please advise and million thanks in advance ~

    Kind regards

    Roziela
    Dave


  • Show only the total values for column?

    I have a pivot table where, for one of the columns I want to not show that total values without showing the values of the detail for each line

    In the example below (where each parent totals are shown in first - above), for the last 4 columns, I only want to show values in the total row.

    Setting conditional formatting will help you.

    For these columns measures go to the columns of no matter what you do not have a group of conditional as format below.

    Main area is not null "define 0 as the font size.

    Thank you

    AJ

  • Hide/no equla to the last row of records

    Hello

    I mentioned below records in Mount so each time I have select any mount it should now show the last line of this mount i.e. test No-3
    all records of Assembly that will not display the last rank of the number of test

    Mount day test_No and org2 to org3 org4 org1
    299,00 1 0 1 1 0 7186
    299,00 1 0 2 1 0 7186
    299,00 0 3 3 0 7186
    298,00 0 4 1 0 7186
    298,00 1 0 2 1 0 7186
    298,00 1 1 3 1 0 7186

    You want to show or hide the last row?

    If you want to display only last row, use the following query...

    select mount, day, org1, test_no, org2, org3, org4
    from
    (
      select mount, day, org1, test_no, org2, org3, org4,
               row_number()
                    over (partition by mount order by test_no desc) rn
      from your_table t
      --"Use the below filter if you need"
      --where mount = &your_value
    )
    where rn = 1;
    

    If you want to hide only last row, use the following query...

    select mount, day, org1, test_no, org2, org3, org4
    from
    (
      select mount, day, org1, test_no, org2, org3, org4,
               row_number()
                    over (partition by mount order by test_no desc) rn
      from your_table t
      --"Use the below filter if you need"
      --where mount = &your_value
    )
    where rn != 1;
    

    Published by: JAC on 7 February 2013 15:58

  • hide the buttons outside of the loop for

    Hello

    I'm trying to hide listbuttons on mode full-screen. But only the last cache.

    How to hide the total buttons on mode full-screen.

    function playlistLoaded(e:Event):void {
    
              xmlPlaylist = new XML(urlLoader.data);
              //trace(xmlPlaylist.vid[0].@src);
    
        for (var i:int=0;i<xmlPlaylist.vid.length();i++) {
                                  var listbutton:Button = new Button();
                                  listbutton.x = 482;
                                  listbutton.y = i * 19 + 1;
                                  listbutton.width = 197;
                                  listbutton.height = 20;
                                  listbutton.label = xmlPlaylist.vid[i].attribute("desc");
                                  listbutton.name = xmlPlaylist.vid[i].@src+"__"+i;
                                  listbutton.addEventListener(MouseEvent.CLICK, playVidlist);
                                  addChild(listbutton);
              }
    }
    
    //==================FullScreen SetUp ========================
    //===========================================================
    
    controlBar.fullscreen_btn.addEventListener(MouseEvent.CLICK, fullscreenOnClicked);
    controlBar.normal_btn.addEventListener(MouseEvent.CLICK, fullscreenOffClicked);
    stage.addEventListener(FullScreenEvent.FULL_SCREEN, onFullscreen);
    
    function fullscreenOnClicked(e:MouseEvent):void
    {
         stage.displayState = StageDisplayState.FULL_SCREEN;
    }
    
    function fullscreenOffClicked(e:MouseEvent):void
    {
         stage.displayState = StageDisplayState.NORMAL;
    }
    
    function onFullscreen(e:FullScreenEvent):void
    {
         if (e.fullScreen)
         {
             controlBar.fullscreen_btn.visible = false;
             controlBar.normal_btn.visible = true;
             //listbutton.visible = false;
             removeChild(listbutton);
    
             controlBar.x = (Capabilities.screenResolutionX - 480) / 2;
             controlBar.y = (Capabilities.screenResolutionY - 116);
             vidDisplay.height = (Capabilities.screenResolutionY);
             vidDisplay.width = vidDisplay.height * 4 / 3;
             vidDisplay.x= (Capabilities.screenResolutionX - vidDisplay.width) / 2;
         }
         else
         {
             controlBar.fullscreen_btn.visible = true;
             controlBar.normal_btn.visible = false;
             //listbutton.visible = true;
              addChild(listbutton);
    
             controlBar.x = 0;
             controlBar.y = 244;
             vidDisplay.width = 480;
             vidDisplay.height = 360;
         }
    
    

    One way to do it would be to place all the objects button inside an object (MovieClip or Sprite) container and then make the visible/invisible container with a single line of code.

    Otherwise, just as you have used a loop to create the buttons, you need a loop to hide each of them.  If you store each button in a table that you create, then you can use this array to loop through them all and make them visible/invisible individually.

  • 10g - how to get the total overall totals

    I need to generate a report of sales of products and companies with 3 columns of running totals. The columns are the amounts of gross sales,
    the commissions earned and net premiums (gross sales - commissions earned). As each item in the purchase order, a record (transaction.transaction_id) is created and also
    inserted into the table transaction_link as FK (transaction_link.trans_settle_id). When transaction_link has all the elements necessary to complete the order, the seller receives
    his commission and totals to add to the report.
    screwdrivers
              gross premium     commission     net premium(gross - commission)
    philips               1000     300          700
    sears               500     200          300
                   ===     ===          ===
    screwdriver      ttl     1500     500          1000
    
    power drills
    dewalt               1000     300          700
    makita               600     200          400
                   ===     ===          ===
    power drill      ttl     1600     500          1100
    
    grand total          3100     1000          1100
    Here are the tables
    provider - prov_id (pk)
    PRODUCT_TYPE - prod_type_id (pk)
    transaction-transaction_id (pk), amount, dealer_commission
    transaction_link - trans_settle_id, trans_trade_id, trans_type


    I'm using the With clause, if I understand correctly it is very effective, but all the other tips are welcome:
    WITH getSettlementTransaction AS
      (SELECT transaction_id
      FROM transaction trans
      WHERE trans.trans_type_id = 9
      AND trans.PROV_ID         = 25
      AND trans.TRADE_DATE BETWEEN '1-SEP-05' AND TRUNC(SYSDATE)+1
      ),
      getWireTransaction AS
      (SELECT trans_trade_id,
        trans_settle_id,
        trans.prov_id,
        prov.prov_name,
        trans.amount,
        trans.dealer_commission,
        trans.prod_type,
        prod.product_type
      FROM transaction_link,
        transaction trans,
        provider prov,
        product_type prod
      WHERE trans_link_type_id = 3
      AND trans.transaction_id = transaction_link.trans_trade_id
      AND prov.PROV_ID         = trans.PROV_ID
      AND trans.prod_type      = prod.product_type_id
      AND trans.TRADE_DATE BETWEEN '1-SEP-05' AND TRUNC(SYSDATE)+1
      )
    SELECT prov_name,
      product_type,
      SUM(amount) gross_premium,
      SUM(dealer_commission) commission_earned ,
      SUM(amount) - SUM(dealer_commission)
    FROM getWireTransaction,
      getSettlementTransaction
    WHERE trans_settle_id = transaction_id
    GROUP BY prov_name,
      product_type;
    net premium of the gross premium commission (gross-commission)
    Philips 1000 700 300
    Sears 500 200 300

    But it doesn't give me the total for each vendor and does not include totals as I need.
    Any guidance would be appreciated. Thank you.

    Hello

    Achtung wrote:
    It's great! Is it possible to format?

    DEPTNO:10
              ENAME               SAL
          ---------------      ----------
    CLARK                 2450
    KING                  5000
    MILLER                1300
    Dept. Total         8750
    DEPTNO:20
    ADAMS                 1100
    FORD                  3000
    JONES                 2975
    SCOTT                 3000
    SMITH                  800
    Dept. Total        10875
    DEPTNO:30
    ALLEN                 1600
    BLAKE                 2850
    JAMES                  950
    MARTIN                1250
    TURNER                1500
    WARD                  1250
    Dept. Total         9400
    
    Grand Total        29025
    

    I don't know how to make a line like "DEPTNO:10" before the header. It was maybe just a typo.

    GROUP OF ROLLUP (or GROUP BY GROUPING SETS) will produce an great aggregate (such as 'Dept 9400 Total') line for each distinct value of the column rolled up. It looks like you want two of these lines: one at the beginning of each Department ("DEPTNO:30") and the other at the end ("min. Total 9400'). I don't know if you can get in a single subquery with GROUP BY. You can get it without a doubt with the UNION.

    WITH     union_results     AS
    (
    --     This branch of the UNION produces the header row for each department
    --     (and also the blank row before the grand total)
    --
         SELECT       deptno     AS raw_deptno
         ,       CASE
                   WHEN  GROUPING (deptno) = 0
                   THEN  'DEPTNO: ' || deptno
                END          AS display_deptno
         ,       NULL          AS ename
         ,       NULL          AS sal
         ,       1          AS group_num
         FROM       scott.emp
         GROUP BY  ROLLUP (deptno)
              --
         UNION ALL
              --
    --     This branch of the UNION produces the rows for each employee, and the "Total" rows
    --
         SELECT       deptno     AS raw_deptno
         ,       NULL          AS display_deptno
         ,       CASE
                   WHEN  GROUPING (deptno) = 1     THEN   '  Grand Total'
                   WHEN  GROUPING (ename)  = 1     THEN   '  Dept. Total'
                                             ELSE   ename
                END          AS ename
         ,       SUM (sal)     AS sal
         ,       CASE
                   WHEN  GROUPING (ename) = 0
                   THEN  2
                   ELSE  3
                END          AS group_num
         FROM       scott.emp
         GROUP BY  ROLLUP (deptno, ename)
    )
    SELECT       display_deptno     AS deptno
    ,       ename
    ,       sal
    --,       group_num
    FROM       union_results
    ORDER BY  raw_deptno
    ,       groUp_num
    ,       ename
    ;
    

    Results:

    DEPTNO       ENAME                  SAL
    ------------ --------------- ----------
    DEPTNO: 10
                 CLARK                 2450
                 KING                  5000
                 MILLER                1300
                   Dept. Total         8750
    DEPTNO: 20
                 ADAMS                 1100
                 FORD                  3000
                 JONES                 2975
                 SCOTT                 3000
                 SMITH                  800
                   Dept. Total        10875
    DEPTNO: 30
                 ALLEN                 1600
                 BLAKE                 2850
                 JAMES                  950
                 MARTIN                1250
                 TURNER                1500
                 WARD                  1250
                   Dept. Total         9400
    
                   Grand Total        29025
    

    The subquery is needed only to hide a part of the ORDER BY columns.
    You can comment the group_num column in the SELECT clause, to see how it works.

  • Hide the values of the columns in the tables of the af

    Hi all

    I have a page with a table created using a basic VO EO af.

    I have a requirement where I need to hide the values in a particular column (see the empty value) for the given line when the value is greater than 100

    I tried the two expressions following groovy with failures. Can anyone suggest the phrase please correct groovy to achieve this

    Groovy expression Results
    #{row.bindings.JointAcNo.inputValue lt '100'}This hides values such as 2,3 as well (similar to a chain Treaty)
    #{row.bindings.JointAcNo.inputValue lt 100}

    crashes with the following error message

    Cannot convert the type oracle.jbo.domain.Number of class 0 class java.lang.Long

    ADF_FACES-60097: for more information, see the error log of the server for an entry beginning with: ADF_FACES - Exception during the PPR, #2 60096:Server



    JDev version - Studio Edition Version 11.1.2.0.0

    Hello

    The problem here is that the number 100 is java.lang.Long type and you compare it to #{row.bindings.JointAcNo.inputValue}, which returns the value of type oracle.jbo.number.

    To remedy this, you must convert 100 type oracle.jbo.Number. You can do this by writing a method in your bean managed as:

    oracle.jbo.domain.Number public getNumber() {}

    return new oracle.jbo.domain.Number (100);

    }

    Now, you can put your attribute visible/rendered as #{row.bindings.JointAcNo.inputValue lt yourscope.beanreference.number}

    The numer attriute in the beanreference automatically calls this value bean method and return of type oracle.jbo.Numer.

    Hope this helps,

    Assani

  • icons not showing in the notification area. a disable the UnP and SSD without result. on the Properties tab to hide the icons inactive icon is grayed out

    My icons in the notification area continued to show. I disabled the UnP and SSDP nothing helps. The box to Hide inactive icons on the Properties tab is grayed out so I can't hide the first icon.  Any ideas?

    first of all, what is the brand and model of the pc?

    current antivirus?

    Operating system and service pack?

    Make sure that your system is clean:

    Download, install, update and scan with these full free malware detection programs:

    Malwarebytes (MMFA): http://www.malwarebytes.org/products/malwarebytes_free

    SUPERAntiSpyware: (SAS): http://www.superantispyware.com/

    http://WindowsXP.MVPs.org/TrayNotify.htm

    Read more top

    Finally, after back with the results of the analyses and the answers to the above questions, please.

  • Hide the PivotTable columns

    Hello

    I'm trying to hide the columns of the pivot table DYNAMIC.

    I want to show specific to the table columns.

    The values(ABC,PQR,XYZ) come from the unique column.

    acb.JPG

    For 2015, I want to show the PQR for 2014, I want to just show ABCand ABC and XYZ.

    Thank you

    Mayur_A

    Check your filter logic. Take a look at the above example on SampleApp406: ' Stockplus Inc. ' and 'Tescare Ltd' for 2010 were given, but because of the filter in 2010 only "Genmind Corp" is returned from the database and therefore the pivot see the value of this single column for 2010.

  • How to hide the column in a table in the adf.

    I created the table of the ADF and surround it in the collection of panels, the data in the table from the bean to support variable. Depending on the State, there are a few columns that must hide with the user. I used visible = "false", where the false value will come from backing bean. However the user to the table always have the ability to display the column. Is there any one to hide the column with the user at all times. Fixing the code example:

    < af:column sortable = "false" headerText = "column1" id = "c13" visible = "false" >

    "" < af:outputText value = "{row.columns1} ' id ="ot13"/ >

    < / af:column >

    Hello

    Use the rendered property?

    Concerning

Maybe you are looking for