Hide/remove column  in adf pivot table

Is it somehow possible to hide or to remove column (I need to hide agregate column, but is it possible for regular data cell) dynamically when some conditions are met? I've tried getDataFormat and getheaderFormat methods to set width of the columns to 0, but it doesn't work. Also I've tried to set rawvalue of data cell to null/"" and width to 0 but without success to hide column. Problem applies to adf pivot table 11g.
Thank You!

HI,
You have the option for the column as to be suppress or repeat
Go to column properties and go to column format second tab select the option Suppress.
Regards,
VG

Similar Messages

  • How to make a layer from the ADF pivot table invisible?

    Hi all,
    ADF pivot table is a useful component which can be used to provide table data rendering. However, I have not found any method to hide one layer from the row edge (or column edge) of the pivot table.
    For example, please have a look on this demo: [http://jdevadf.oracle.com/adf-richclient-demo/faces/components/pivotTable.jspx]
    There are two layers in the row edge of this pivot table, one is Time, one is Product. For product, there are two categories, one is Tents, one is Canoes.
    Is that possible to make the Product layer invisible from user, while still keeping the two rows of product data for that year showing up? how to do it?
    The problem is that pivot table relies on the product layer to separate the two rows of product data, and if I remove the product layer, only the second row of product data for each year can be shown up.
    Please advise how I can make the Product layer invisible.
    Thanks
    Richard
    Edited by: user12847742 on Oct 6, 2010 12:58 AM
    Edited by: user12847742 on Oct 6, 2010 1:04 AM
    Edited by: user12847742 on Oct 6, 2010 1:10 AM

    Hi, Yiannis,
    Thanks for the clarification.
    First, for clarity, I'd like to point out that you and Richard are inquiring about different functionality. Richard wanted to hide a layer that is logically present on the edge, so that there are still separate rows for Tents and Canoes, but without row headers indicating which row is which. As I noted previously, this is currently unsupported.
    By contrast, you're asking about truly removing a layer from the edge. For rowset DataControls, this can be done using the CubicEditor interface. Given the following PivotTable:
    <dvt:pivotTable id="pivotTable1" value="#{bindings.Record.pivotTableModel}"/>the CubicEditor can be retrieved by calling:
    DCBindingContainer bindingContainer = (DCBindingContainer)ADFContext.getCurrent().getRequestScope().get("bindings");
    CubicBinding cubicBinding = (CubicBinding)bindingContainer.findCtrlBinding("Record");
    CubicEditor cubicEditor = cubicBinding.getCubicEditor();You can then add a layer:
    LayerDefinition layerDefinition = new LayerDefinition("Product");
    cubicEditor.addLayer(DataDirector.ROW_EDGE, 1, layerDefinition);and remove a layer:
    cubicEditor.removeLayer(DataDirector.COLUMN_EDGE, 0);At the end, you'll need to PPR the Pivot Table.
    Hope that helps.
    Jim

  • How to update ADF VO object to refresh the data in ADF Pivot table

    I need to know how to update the View object so that the date in pivot table is refreshed/updated/filtered.
    here are the steps I performed to create ADF pivot table application using VO at design time.
    1) created a collection in a Data Control (ViewObject in an ApplicationModule) that provides the values I wanted to use for row and column labels as well the cell values (Used the SQL query)
    2) Dragged this collection to the page in which wanted to create the pivot table
    3) In the pivot table data binding editor specified the characteristics of the rows (which attribute(s) should be displayed in header), the columns (likewise) and the cells.
    Now, I have a requirement to update/filter the data in pivot table on click of check box and my question is how to I update the View object so that the date in pivot table is refreshed/updated/filtered.
    I have got this solution from one of the contact in which a WHERE clause on an underlying VO is updated based upon input from a Slider control. In essence, the value of the control is sent to a backing bean, and then the backing bean uses this input to call the "filterVO" method on the corresponding AppModule:
    but, I'm getting "operationBinding" object as NULL in following code. Please let me know what's wrong.
    here is the code
    Our slider component will look like
    <af:selectBooleanCheckbox label="Unit" value="#{PivotTableBean.dataValue}"
    autoSubmit="true" />
    The setDataValue() method in the backing bean will get a handle to AM and will execute the "filterVO" method in that, which takes the NumberRange as the input parameter.
    public void setDataValue(boolean value) {
    DataValue = value;
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding = (OperationBinding)bindings.getOperationBinding("filterVO");
    Object result = operationBinding.execute();
    The filterVO method in the AMImpl.java will get the true or false and set the where Clause for the VO query to show values.
    public void filterVO(boolean value) {
    if (value != null) {
    ViewObjectImpl ibVO = getVO1();
    ibVO.setWhereClause("PRODUCT_TOTAL_REVENUE(+) where rownum < 10");
    ibVO.executeQuery();
    }

    Did you define a filterVO action in your pagedef.xml file?
    You might want to read on how to access service method from a JSF Web Application in the ADF Developer Guide for 10.1.3 chapter 8.5

  • Hiding a measure column in a pivot table in BI Answers

    Hi,
    I need a report to have a hierachical format such as:
    Top Company
    Middle Company
    Customer Name Customer Id Customer Creation Date
    To achieve this, I apparently need to add a measure column to the Rows data, but I don't want to show it.
    Would anyone know how I can hide a measure column in a pivot table?
    Many thanks,
    - Jenny

    Measure Columns can't be hidden like an attribute. How ever you can use custom style sheet for Value and Header Properties to not show the measure.
    for the "Custom CSS Style Options (HTML Only)" under measure properties of the column set "Use Custom CSS Style" value to 'display:none'.
    Let me know if this worked.
    Regards,
    Jay

  • ADF Pivot table - Custom Pivot

    Hello ADF Experts,
    I would like to pivot to row/column using my custom method than using the default API as ADF pivot table does not support asymmetric pivoting.
    For example I have below as base grid:
    Product
    Geography
    Sales
    Prod1
    US
    100
    Prod2
    IN
    50
    UK
    30
    If I move Geography to columns, it will create invalid layout.
    Product
    Sales/US
    Sales/IN
    Sales/UK
    Prod1
    100
    Prod2
    50
    30
    Now you can observe that Prod1->Sales/IN, Prod1->Sales/UK and Prod2-> Sales/US is empty which is not in sync with my database as there are values 200, 300, 40 respectively.
    To avoid such empty cells, I would like to write my custom method to fetch the new values while pivoting.
    How can I do this?

    Hi Timo,
    Jdev version: 11.1.1.7
    Custom method will be my method which will pivot to columns as well as populate the empty cells(the cells which are created by asymmetric layout).
    Basically I would like get the new grid data after pivoting and refresh the pivot table if its asymmetric with empty cells.
    Unfortunately my data is in PageFlowScope so it doesnt get refreshed.
    Regards,
    Suresh

  • ADF Pivot Table - Render Labels at all times

    Hi,
    (There already exists another post for this issue, but without any answer.)
    In ADF Pivot table the column labels are not static, they are visible only when the mouse is moved over the labels. Is there some way to permanently display labels at all times?
    Thanks,
    Hiten
    http://india-votes.blogspot.com

    I have the same requirement. Were you able to figure out?

  • How do I make a header column in a pivot table a field from the table

    I am trying to reference a field for a header column in a pivot table. for example: 2006 - Cat, 2006-Dog
    I am trying to get the following result:
    2006-Cat     January     February     March     April     May     June     July     August     September     October     November     December     Totals
    Euthanise     159     203     188     252     376     501     393     315     304     276     212     207     3386
    Intake     192     220     234     305     412     538     409     330     329     305     244     241     3759
    Redeem     10     4     4     3     5     3     2     1     2     1     2     5     42
    Rescue     0     0     2     10     0     0     0     1     0     2     0     4     19
    2006-Dog     January     February     March     April     May     June     July     August     September     October     November     December     Totals
    Euthanise     306     375     347     341     458     484     385     441     317     384     325     318     4481
    Intake     455     514     495     465     571     595     486     570     438     511     434     473     6007
    Redeem     65     63     57     34     57     43     58     46     58     67     53     59     660
    Rescue     0     0     0     1     0     0     0     0     3     1     0     0     5
    2007-Cat     January     February     March     April     May     June     July     August     September     October     November     December     Totals
    Euthanise     223     265     229     275     569     508     451     359     310     318     231     225     3963
    Intake     268     286     274     315     594     567     488     397     329     344     279     249     4390
    Redeem     11     7     11     1     5     2     0     2     4     3     16     2     64
    Rescue     7     0     0     1     0     1     2     1     1     0     1     0     14
    2007-Dog     January     February     March     April     May     June     July     August     September     October     November     December     Totals
    Euthanise     436     374     313     343     395     362     422     403     394     350     275     343     4410
    Intake     594     510     480     477     508     520     553     502     509     544     410     480     6087
    Redeem     67     72     77     57     47     51     50     40     41     62     45     45     654
    Rescue     2     3     0     1     0     0     4     0     3     0     1     1     15
    Any help is greatly appreciated.

    <?xml version="1.0" encoding="UTF-8" ?>
    - <ROWSET>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Euthanise</cue>
    <anicnt>159.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Intake</cue>
    <anicnt>192.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Redeem</cue>
    <anicnt>10.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Euthanise</cue>
    <anicnt>203.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Intake</cue>
    <anicnt>220.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Redeem</cue>
    <anicnt>4.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Euthanise</cue>
    <anicnt>188.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Intake</cue>
    <anicnt>234.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Redeem</cue>
    <anicnt>4.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Rescue</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Euthanise</cue>
    <anicnt>252.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Intake</cue>
    <anicnt>305.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Redeem</cue>
    <anicnt>3.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Rescue</cue>
    <anicnt>10.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Euthanise</cue>
    <anicnt>376.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Intake</cue>
    <anicnt>412.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Redeem</cue>
    <anicnt>5.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Euthanise</cue>
    <anicnt>501.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Intake</cue>
    <anicnt>538.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Redeem</cue>
    <anicnt>3.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Euthanise</cue>
    <anicnt>393.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Intake</cue>
    <anicnt>409.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Redeem</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Euthanise</cue>
    <anicnt>315.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Intake</cue>
    <anicnt>330.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Redeem</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Euthanise</cue>
    <anicnt>304.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Intake</cue>
    <anicnt>329.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Redeem</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Euthanise</cue>
    <anicnt>276.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Intake</cue>
    <anicnt>305.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Redeem</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Rescue</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Euthanise</cue>
    <anicnt>212.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Intake</cue>
    <anicnt>244.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Redeem</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Euthanise</cue>
    <anicnt>207.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Intake</cue>
    <anicnt>241.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Redeem</cue>
    <anicnt>5.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - CAT</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Rescue</cue>
    <anicnt>4.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Euthanise</cue>
    <anicnt>306.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Intake</cue>
    <anicnt>455.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Redeem</cue>
    <anicnt>65.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Euthanise</cue>
    <anicnt>375.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Intake</cue>
    <anicnt>514.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Redeem</cue>
    <anicnt>63.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Euthanise</cue>
    <anicnt>347.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Intake</cue>
    <anicnt>495.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Redeem</cue>
    <anicnt>57.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Euthanise</cue>
    <anicnt>341.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Intake</cue>
    <anicnt>465.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Redeem</cue>
    <anicnt>34.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Euthanise</cue>
    <anicnt>458.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Intake</cue>
    <anicnt>571.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Redeem</cue>
    <anicnt>57.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Euthanise</cue>
    <anicnt>484.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Intake</cue>
    <anicnt>595.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Redeem</cue>
    <anicnt>43.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Euthanise</cue>
    <anicnt>385.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Intake</cue>
    <anicnt>486.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Redeem</cue>
    <anicnt>58.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Euthanise</cue>
    <anicnt>441.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Intake</cue>
    <anicnt>570.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Redeem</cue>
    <anicnt>46.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Euthanise</cue>
    <anicnt>317.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Intake</cue>
    <anicnt>438.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Redeem</cue>
    <anicnt>58.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Rescue</cue>
    <anicnt>3.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Euthanise</cue>
    <anicnt>384.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Intake</cue>
    <anicnt>511.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Redeem</cue>
    <anicnt>67.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Euthanise</cue>
    <anicnt>325.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Intake</cue>
    <anicnt>434.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Redeem</cue>
    <anicnt>53.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Euthanise</cue>
    <anicnt>318.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Intake</cue>
    <anicnt>473.0</anicnt>
    </ROW>
    - <ROW>
    <header>2006 - DOG</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Redeem</cue>
    <anicnt>59.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Euthanise</cue>
    <anicnt>223.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Intake</cue>
    <anicnt>268.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Redeem</cue>
    <anicnt>11.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Rescue</cue>
    <anicnt>7.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Euthanise</cue>
    <anicnt>265.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Intake</cue>
    <anicnt>286.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Redeem</cue>
    <anicnt>7.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Euthanise</cue>
    <anicnt>229.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Intake</cue>
    <anicnt>274.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Redeem</cue>
    <anicnt>11.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Euthanise</cue>
    <anicnt>275.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Intake</cue>
    <anicnt>315.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Redeem</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Euthanise</cue>
    <anicnt>569.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Intake</cue>
    <anicnt>594.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Redeem</cue>
    <anicnt>5.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Euthanise</cue>
    <anicnt>508.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Intake</cue>
    <anicnt>567.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Redeem</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Euthanise</cue>
    <anicnt>451.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Intake</cue>
    <anicnt>488.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Rescue</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Euthanise</cue>
    <anicnt>359.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Intake</cue>
    <anicnt>397.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Redeem</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Euthanise</cue>
    <anicnt>310.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Intake</cue>
    <anicnt>329.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Redeem</cue>
    <anicnt>4.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Euthanise</cue>
    <anicnt>318.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Intake</cue>
    <anicnt>344.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Redeem</cue>
    <anicnt>3.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Euthanise</cue>
    <anicnt>231.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Intake</cue>
    <anicnt>279.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Redeem</cue>
    <anicnt>16.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Euthanise</cue>
    <anicnt>225.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Intake</cue>
    <anicnt>249.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - CAT</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Redeem</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Euthanise</cue>
    <anicnt>436.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Intake</cue>
    <anicnt>594.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Redeem</cue>
    <anicnt>67.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>January</MNTH>
    <imonth>1</imonth>
    <cue>Rescue</cue>
    <anicnt>2.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Euthanise</cue>
    <anicnt>374.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Intake</cue>
    <anicnt>510.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Redeem</cue>
    <anicnt>72.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>February</MNTH>
    <imonth>2</imonth>
    <cue>Rescue</cue>
    <anicnt>3.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Euthanise</cue>
    <anicnt>313.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Intake</cue>
    <anicnt>480.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>March</MNTH>
    <imonth>3</imonth>
    <cue>Redeem</cue>
    <anicnt>77.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Euthanise</cue>
    <anicnt>343.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Intake</cue>
    <anicnt>477.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Redeem</cue>
    <anicnt>57.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>April</MNTH>
    <imonth>4</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Euthanise</cue>
    <anicnt>395.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Intake</cue>
    <anicnt>508.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>May</MNTH>
    <imonth>5</imonth>
    <cue>Redeem</cue>
    <anicnt>47.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Euthanise</cue>
    <anicnt>362.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Intake</cue>
    <anicnt>520.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>June</MNTH>
    <imonth>6</imonth>
    <cue>Redeem</cue>
    <anicnt>51.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Euthanise</cue>
    <anicnt>422.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Intake</cue>
    <anicnt>553.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Redeem</cue>
    <anicnt>50.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>July</MNTH>
    <imonth>7</imonth>
    <cue>Rescue</cue>
    <anicnt>4.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Euthanise</cue>
    <anicnt>403.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Intake</cue>
    <anicnt>502.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>August</MNTH>
    <imonth>8</imonth>
    <cue>Redeem</cue>
    <anicnt>40.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Euthanise</cue>
    <anicnt>394.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Intake</cue>
    <anicnt>509.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Redeem</cue>
    <anicnt>41.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>September</MNTH>
    <imonth>9</imonth>
    <cue>Rescue</cue>
    <anicnt>3.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Euthanise</cue>
    <anicnt>350.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Intake</cue>
    <anicnt>544.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>October</MNTH>
    <imonth>10</imonth>
    <cue>Redeem</cue>
    <anicnt>62.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Euthanise</cue>
    <anicnt>275.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Intake</cue>
    <anicnt>410.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Redeem</cue>
    <anicnt>45.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>November</MNTH>
    <imonth>11</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Euthanise</cue>
    <anicnt>343.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Intake</cue>
    <anicnt>480.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Redeem</cue>
    <anicnt>45.0</anicnt>
    </ROW>
    - <ROW>
    <header>2007 - DOG</header>
    <MNTH>December</MNTH>
    <imonth>12</imonth>
    <cue>Rescue</cue>
    <anicnt>1.0</anicnt>
    </ROW>
    </ROWSET>

  • Resizing Column Width in Pivot Tables

    Hi,
    Can anyone help with adjusting the size of columns in a pivot table. I have 3 measure across 12 months on a page:
    Total Volume Total Margin (%) Total Contribution
    Market Jan 2010 Feb 2010 Mar 2010 Apr 2010 May 2010 Jun 2010 Jul 2010 Jan 2010 Feb 2010 Mar 2010 Apr 2010 May 2010 Jun 2010 Jul 2010 Jan 2010 Feb 2010 Mar 2010 Apr 2010 May 2010 Jun 2010 Jul 2010
    The months on some measures are rolling up and the others are on one line, can the width of the column be wrapped or adjusted?
    Thanks

    Hi,
    Yes,it can be.Click on a column and Go to Format Values>Additional Formatting Options>width.Try putting 50%,60% if you want them to expand.
    Similiarly Format heading will work for heading size.
    You have to play around with this to suit your requirements.
    Thanks
    Sandeep

  • How to re-arrange the columns present in pivot table view in obiee 10?

    Can you please tell me How to re-arrange the columns present in pivot table view in obiee 10?

    I have columns as 1,2,3,4,6,7, in pivot table view.
    I have calculated item (column 5 as summation of 1,2,3,4) and caluclated itme (column 9 as summation of 6,7)...now if i arrange ascending then calculated columns 5,9 don't get affected.
    I need the order as 1,2,3,4,5,6,7,9

  • Does ADF pivot table in JDeveloper 11.1.1.2.0 have a maximum number of rows

    Does ADF pivot table in JDeveloper 11.1.1.2.0 have a maximum number of rows that can be fetched from the database?

    mmurmeli,
    Seems then that you've identified how to allow more rows (increase the heap space) ;)
    Hard physical limits aside, there is a practical limit to how much information a single human mind can absorb.
    John

  • Expand and Collpase nodes in ADF Pivot table

    Hi,
    I am looking for a code to Expand and Collapse all drilldown programmatically in adf pivot table.
    I have only one level of drill down that display sub total.

    I have the same doubt. I need expand and collapse all nodes in ADF Pivot table. anybody Here?

  • How to make a layer from the ADF pivot table invisible , show-hide column-row-data

    Hello all ,
    I need to create a pivottable with ADF 12c for reporting purposes.
    I have a table or view with 10 items of type VARCHAR2 , C1,C2,C3,C4,C5,C6,C7,C8,C9,C10  and   10 items of type NUMBER N1,N2,N3,N4,N5,N6,N7,N8,N9,N10
    The items of type VARCHAR2 are for Column and Row areas and the items NUMBER are for Data Areas
    I want to create a jsf page with one empty pivottable and in code Show or Hide the items in the Column area , Row area , Data area
    Con you send me a small sample ?
    I test with this code that i find in oracle OTN but not work.
    <dvt:pivotTable id="pt2" value="#{bindings.WebPivotDataView1.pivotTableModel}" var="cellData"
    varStatus="cellStatus" splitMode="enabled"
    binding="#{backingBeanScope.CmfPivotBean.pivotTable}"
    >
    <dvt:headerCell>
    <af:switcher facetName="#{cellData.layerName}" defaultFacet="Default" id="s1">
    <f:facet name="DataLayer">
    <af:outputText value="#{cellData.label}" id="ot1"/>
    </f:facet>
    <f:facet name="C01">
    <af:outputText value="#{cellData.dataValue}" id="ot2"/>
    </f:facet>
    <f:facet name="Default">
    <af:outputText value="#{cellData.dataValue}" id="ot3"/>
    </f:facet>
    </af:switcher>
    </dvt:headerCell>
    <dvt:dataCell>
    <af:switcher facetName="#{cellStatus.members.DataLayer.value}" defaultFacet="Default" id="s2">
    <f:facet name="N01">
    <af:outputText value="#{cellData.dataValue}" id="ot4">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.WebPivotDataView1.hints.N01.format}"/>
    </af:outputText>
    </f:facet>
    <f:facet name="Default">
    <af:outputText value="#{cellData.dataValue}" id="ot5"/>
    </f:facet>
    </af:switcher>
    </dvt:dataCell>
    </dvt:pivotTable>
    DCBindingContainer bindingContainer = (DCBindingContainer)ADFContext.getCurrent().getRequestScope().get("bindings");
    CubicBinding cubicBinding = (CubicBinding)bindingContainer.findCtrlBinding("WebPivotDataView1");
    CubicEditor cubicEditor = cubicBinding.getCubicEditor();
    cubicEditor.removeLayer(DataDirector.ROW_EDGE, 0); //remove 1st row edge
    cubicEditor.removeLayer(DataDirector.COLUMN_EDGE, 0); // remove 1st column edge
    cubicEditor.removeDataItem(0);
    CubicDefinition def;
    def = cubicBinding.getProjection();
    LayerDefinition layerDefinition = new LayerDefinition("C3");
    cubicEditor.addLayer(DataDirector.ROW_EDGE, 0, layerDefinition);    
    LayerDefinition layerDefinition2 = new LayerDefinition("C4");
    cubicEditor.addLayer(DataDirector.COLUMN_EDGE, 0, layerDefinition2);
    DataItemDefinition def3 = new DataItemDefinition("N1");
    cubicEditor.addDataItem(def3);
    AdfFacesContext.getCurrentInstance().addPartialTarget(pivotTable);
    Can you help me if is possible to create a pivottable binding to a one ViewObject and in code show/hide or compose the layout of the pivottable ??
    I search in google and OTN oracle and not find any code.
    Only find the code of the samples that is very complex for me , the code of the samples create the PivotTableModel from one Array , and i want to binding from one ADB BC ViewObject.
    Thanks in advance

    The solution I presented for your use case an DOAG 2013 was to create a pivot table binding out of user defined attributes from the table. For the defined attributes a VO is dynamically created as well as the pivot binding. The pivot binding is then exchanged at runtime together with the activation of the dynamic VO needed to only get the data needed for the particularly pivot table.
    Your solution using the CubicEditor is hard to implement due to the missing documentation. This was the reason I did not follow this approach, However it's not impossible (done it on a very small scale).
    None of the solution are what I call simple. They are complicated, complex and in part not supported solution (exchanging the pivot table binding at runtime need to use internal classes, which is not supported).
    I can't give you a working sample as it's too complex. I can make the slides available, however they are in German.
    Timo

  • Need to Add and Remove Columns of ADF Read Only table from Backing bean

    I have a scenario where I am trying to Populate TransientVO which is shown has a ADF Read Only Table in page.
    I have couple of Check Boxes Based on their selection I am trying to render and hide certain Columns.
    But the Issue which I am facing is only the Column Header seems to change where as the Rows and Values doesnt..
    even If I apply the expression language rendering condition on the outputText inside those columns.. ..
    So I am thinking to add and remove VO Attribute columns to the table from backing bean.
    Need some sample code snippet or a better design to achieve this. Its kind of urgent too...having an aggressive deadline :(
    Please chip in People..
    Thanks in Advance .
    TK

    Table Code..
    <af:table value="#{bindings.InventoryGridTrans.collectionModel}"
                                    var="row"
                                    rows="#{bindings.InventoryGridTrans.rangeSize}"
                                    emptyText="#{bindings.InventoryGridTrans.viewable ? 'No data to display.' : 'Access Denied.'}"
                                    fetchSize="#{bindings.InventoryGridTrans.rangeSize}"
                                    rowBandingInterval="0" id="t4"
                                    partialTriggers="::sbcSales ::sbcUsage ::cb1">
                            <af:column sortProperty="Period" sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Period.label}"
                                       id="c38">
                              <af:outputText value="#{row.Period}" id="ot33"/>
                            </af:column>
                            <af:column sortProperty="Past12SalesCount"
                                       sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Past12SalesCount.label}"
                                       id="c29"
                                       rendered="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}">
                              <af:outputText value="#{row.Past12SalesCount}"
                                             id="ot40"
                                             rendered="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}"
                                             visible="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.InventoryGridTrans.hints.Past12SalesCount.format}"/>
                              </af:outputText>
                            </af:column>
                            <af:column sortProperty="Past12UsageCount"
                                       sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Past12UsageCount.label}"
                                       id="c40"
                                       rendered="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}"
                                       visible="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}">
                              <af:outputText value="#{row.Past12UsageCount}"
                                             id="ot47"
                                             rendered="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}"
                                             visible="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.InventoryGridTrans.hints.Past12UsageCount.format}"/>
                              </af:outputText>
                            </af:column>
                            </af:column>
                    </af:table>

  • ADF pivot table aggregate column

    HI,
    Is it possible to create an average column in the dvt:pivotTable that contains the average of all the columns regardless of the category the columns are in ?
    i tried to add a "Data Aggregation" in the binding of the pivot table but unfortunately it didn't show
    Thanks for you support 

    did u saw this
    https://blogs.oracle.com/shay/entry/changing_the_aggregation_of_an

  • Dynamically reordering columns in ADF Faces Table

    The Rich UI components (see ADF Faces Rich Client Components - Marrying JSF and AJAX together) that the ADF Faces library will contain with the JDeveloper 11g release - and hopefully before that moment - will allow end-users to do all sorts of manipulations with Tables. They will be able to resize columns an drag & drop columns to change the order - much like you can do in Spreadsheet applications like Excel. However, those components are not yet available to us. Yesterday my customer asked me if he could have offer the option to re-order columns in a table to his end users. That means that in any table component, the user can decide which column should be displayed first, which one second and which one last. It happened to be the same customer who was after the feature to show/hide columns at run-time, a challenge easily resolved in a previous article: Having the end-user hide and display columns in a JSF Table Component (http://technology.amis.nl/blog/?p=1331).
    I have written an article that shows how we can implement this feature: have the end-user specify the order of the columns in the table. I have used ADF Faces for this demonstration, but any JSF implementation will do. See: http://technology.amis.nl/blog/?p=1334 for the article.
    best regards,
    Lucas

    Well issue is that
    I have a list of values that can be chnaged any time during application execution sya its list of Fav Fruits..
    and in an other page i need a data table having these fruits as coulmns and their details as rows...
    how to achieve this..
    we can not guess the number of columns before time.. so can make the estimate and hide them.

Maybe you are looking for