How to disable drilling of a hierarchical columns

Hi ,
I have a Product dimension defined as Dept -> Class-> Subclass -> Item. In one if the reports that uses this dimensions, I want to disable the drilling to lower levels of hierarchy. Can you please suggest the best way to achieve this?
Thanks

Just click on the properties of your column and find the tab where you can set the interaction behaviour for the header and the values of the column. You can there set the property to "No Interaction".
Cheers
Nico

Similar Messages

  • How to disable drill option for one column in the WebI Report

    Hi,
    How to disable drill option in a column in WebI?
    When the Drill option is enabled by default all the column in the report will have that enabled,
    I ahve added Hierarchy in the Custom hierarhcy list in Universe.
    I am using BOXI3.1 WebI Reports.
    But I wanted only the hierarchy column to have that drill option enabled, rest all column should display text data.
    PLease let me know if you have any idea.
    Thanks in advance.
    Regards

    Cretae the variable at the report level (may be with the same definiton) and then use that variable in the table
    to disable the drill. It will be displayed as normal text object.
    Drill functionality is enabled only on the objetcs coming from the universe.
    Regards,
    Rohit
    Edited by: rohit12 on Mar 11, 2010 10:12 AM

  • How to use drill down hierarchy in column chart of BO OLAP edition tool?

    I had created hierarchy table in olap tool where i can drill down Zonewise then Regionwise then Customerwise but this technique is not possible in Graph of Olap tool ,so my question is how can aaply drill down method in graph?

    Hello Raul
    This is odd. Have a look at the screen shots below. I start at the top level "WORLD".
    I right-click on "WORLD" and choose "Expand". This gives me the second screen shot.
    I then right-click on "NORTH AMERICA" and choose "Expand". This gives me the third screenshot.
    As you can see, levels are expanded one-at-a-time. The only thing I can think of is that the BW query has been set up to drill down automatically to a particular level.
    Regards

  • JTable - how to disable the drag / move  for column

    hi there, please give me a hand with this problem,
    i am trying to disable drag / move column in JTable.
    ie.
    ===============================================================
    JTable mainTable = new JTable();
    tableModel recordTable; //this extand AbstractTableModel
    this.mainTable.setModel(this.recordTable);
    ie.
    Product size quantity price
    Shoe 8 200 $120
    Shirt 9 100 $100
    Dress 12 50 $60
    the position of column Product,size,quantity,price, however, if i click on price and drag, i will be able to move the whole lot and place to different position ie. Product,price,size,quantity.
    =======================================================================
    please let me know how can i stop this happening....

    Try something like this:
    mainTable.getTableHeader().setReorderingAllowed(false);

  • How to disable selective cells in a column of a table?

    Hi
    I have a Table UI element having 5 columns. 4 of this are non-editable and only one is editable i.e. having input field . The data is picked from the backend. The 5th column also gets default data from the backend, which the user can later on change.
    But there is a condition, that only the input fields from that row onwards should remain enabled whose month field matches the current month. Rest all should become disabled or invisible.
    I worte the code in the wdModifyView() which picks the current date, and then in a loop it checks all the rows for the condition. If it matches the condition, it comes out of the loop, else it sets the enable property of input field to false.
    But when i run this application, all the cells become disabled, not selective cells.
    Is there a way in which I can sort this problem, any API using which i can access each cell by its row number and column number and then disable it.
    If anybody could please help, it is urgent.
    Thanks & regards,
    Anupreet

    Anupreet,
    Create a subnode with cardinality 1..1 and boolean attribute IsEnabled right under your data node. Write a supply function for this subnode, and set boolean attribute value depending on month in parentElement (parameter of supply function). Then bind InputField "enabled" property to this boolean attribute.
    VS

  • How to get AdvancedDataGrid ItemRenderer for hierarchal column to work

    I have an advanced datagrid with 5 columns one of which is a
    hierarchal (tree). This datagrid is populated by the following:
    MyAdvancedDataGrid.dataProvider = new
    HierarchicalData(MyXMLListCollection);
    The first column is the tree and im trying to do a item
    renderer on it in actionscript... I have the following code:
    MyTreeColumn.itemRenderer = new ClassFactory(MyRenderer);
    In order to get the icon and label to show up i need to
    extend AdvancedDataGridGroupItemRenderer as such:
    MyRenderer extends AdvancedDataGridGroupItemRenderer
    This has one problem... the updateDisplayList function only
    gets fired for the children not the root rows... So if you set the
    this.icon.visible = false... the icon will show up on the root rows
    but the most bottom children rows the icon will become invisible...
    Now ... if i extend the class with
    AdvancedDataGridItemRenderer then the tree functionality gets
    overwritten and it doesn't function the way that I need it to..
    Ultimately I'm trying to shift the default label over so I can add
    another icon to the right of the the default icon so the user can
    click on it... Any help from anyone would be greatly
    appreciated...

    var column:AdvancedDataGridColumn;
    column = new AdvancedDataGridColumn("HeaderName");
    column.width = 10;
    column.dataField = "@label";
    column.itemRenderer = new ClassFactory(MyItemRenderer);
    MyAdvancedDataGrid.columns = [column];
    code for MyItemRenderer:
    package {
    import mx.controls.dataGridClasses.DataGridListData;
    import mx.controls.listClasses.BaseListData;
    import mx.controls.listClasses.IDropInListItemRenderer;
    import mx.controls.listClasses.IListItemRenderer;
    import mx.core.UIComponent;
    public class MyItemRenderer extends UIComponent implements
    IDropInListItemRenderer, IListItemRenderer {
    //class variables
    private var _ListData:DataGridListData = null;
    private var _data:Object = null;
    public function PE_BaseRenderer() {
    super();
    public function get listData():BaseListData {
    return _ListData;
    public function set listData(value:BaseListData):void {
    _ListData = value as DataGridListData;
    public function get data():Object {
    return _data;
    public function set data(value:Object):void {
    _data = value;
    invalidateProperties ();
    override protected function createChildren():void {
    super.createChildren();
    //create you children here
    } //end of class declaration
    } //end of package declaration
    Within this renderer you can create whatever type of children
    you want for the datagrid column

  • How to disable columns while displaying

    Hi,
    How to disable columns from the page which we don't want to show to the users.For example Users will search by "Invoice No" but they don't want to see again Invoice No on the results page.
    Appreciate your quick response.
    Thks.

    Check out Dev Guide
    Chapter 4: Implementing Specific UI Features -> Search -> Declarative Implementation: Auto Customization Criteria
    With this Query Bean option you can separate the Search region from the results table. You map the items in the search region to the items in the result region. You can mark the item in the result table as Rendered=No. OAF will run the query against this item even though it's not displayed.

  • How to disable/enable the cells for editing column wise in JTable in java?

    Hi All,
    Can any one tell me how to disable the cells for editing by column wise in JTable?
    Here depending upon the radio button selected, I need 2 disable some columns for editing
    and enable some columns for editing?
    how can I do tat using JAVA?
    Any sample code is of great help to me.
    Thanks in Advance

    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
    ~

  • How to disable table header column reordering

    Does anyone know how to disable reordering of some but not all columns in tableview ? For that matter how to disable reordering for all columns?
    Thanks in advance !

    The following code will disable sorting in all columns
    public static <S> void disableSort(TableView<S> table){
    Iterator<TableColumn<S,?>> columns = table.getColumns().iterator();
    while(columns.hasNext())
    columns.next().sortableProperty().set(false);
    }

  • How to disable JTable column?

    Hi! this is archana. Pls suggest me how to disable columns of a table except one, so that no other one can modify its cell values.
    Help me.

    Hi
    i dont know whether u r using TableModel or not.
    if ur using a customTableModel for ur entries ..
    u can implement the following method of
    Table Model Interface.
    public boolean isCellEditable(int rowIndex,                              int columnIndex)then implement in such a way that ..
    compare always with ur column number and return false.
    as follows.
    public boolean isCellEditable(int rowIndex,                              int columnIndex){if (columnIndex ==4 )return false;elsereturn true;}above code makes all cells in the col=4 uneditable.
    even u rearrange the cols in table it works as per documentation.
    test this .. and let me know whether u succeeded r not.
    note: i think The implementation of this method in AbstractTableModel or defaultTableModel
    returns true always.
    thanks

  • Hierarchical columns drill path in 11g

    Guys,
    I am working on a simple graph with one dim attribute column, another dim hierachy column(Parent-Child Hierarchy) and few measures.
    Attribute column is on slider and hierarchical colum is the BAR that makes up the measures.. so far good
    Since the graph bar is made up of this parent child hierarchical column, users will drill down to children level if that bar has childer (and It works fine)
    Now my question is when drilling hierarchical columns in Graphs, Is there a way to see the path of the Hiearchical column traversed??
    Also once it reaches bottom, there is no way to go back in the graph (Even back space doesnt seem to work)
    any ideas guys?
    Edited by: Prash11 on Jul 19, 2012 10:08 PM

    Hi,
    You try to make the changes in the hierarchy as per required,and clear the cache then reload the rpd and then restart the services.
    its just a try, and reward me if it correct.
    Thanks,
    tinku

  • How set disable select matrix column header

    How set disable select matrix column header same Inventory-->Pick List Form
    Thanks Advance.

    Hi ,
    do u mean Price List Form Header...
    If Yes Means Try the Following,
    select case pVal.FormType
    case "155"
    Select Case pVal.Before_Action
    case True
    select case pval.ItemUid
    case "3"
    Select Case pVal.EventType
    Case SAPbouiCOM.BoEventTypes.et_CLICK
    if pval.row = 0  Then BubbleEvent = False : Exit Sub
    End Select
    End Select
    End Select
    Regards,
    Ganesh k

  • How to disable right click option re-size on table column header?

    Hi All,
    Please let us know how to disable right click option re-size on table column header.
    The issue is that when I right click on the column header, the column is selected and the context menu with options like Sort, Columns, Resize Columns, etc.. is popping. we want to disable column  re-size option.
    We are binding the table values programatically (not using Bc4J) and the Jdeveloper version is 11.1.2.2
    Thanks in advance,
    - Vignesh S.

    Hi Gawish,
    Thanks for the reply.
    This will make the particular column frozen and only work for that particular column.
    My use case is that to remove the resize columns option from the context menu or to disable the right click option.
    Making column selection as none will disable the right click option but we need column selection for sorting.
    Is there any other way to achieve this?
    Thanks in advance,
    -Vignesh S.

  • How to reset drill-down column-chart based on map-chart?

    Hi guys,
    I'm facing pritty common issue while designing one of my dashboards.  Let me describe a little bit  more:
    1. I have some data extracted from BW using Query as WebService into my Xcelsius spreadsheet.
    2. I have map-chart - regions for some country.
    3. I have a drill-down column-chart, which displays data for a selected region.
    At the beginning column-chart displays results for entire country (which, in fact, is not exactly drill-down). The issue I'm fasing is, that in case I select any region and the data is drilled-down into my column-chart, I have no option to show data for the entire county in the column-chart anymore (the only one way is to restart the report).
    Are there any possible way to do this, or am I doing a design error while displaying data, which is not drilled-down, into a chart which is intended to display drill-down data only?
    Any help would be highly appreciated.
    Thanks in advance.
    Ivaylo Mutafchiev
    Varna Business Services
    Project Manager BOBJ

    Ivaylo Mutafchiev,
    I understand your problem now. So your column chart data which is coming from the QAAWS query should be having a prompt which is bound to some cell in excel. and your map might be passing the values for prompt isn't it? in your case the map might be passing a region.
    All you need to do is put the prompt in the web service for region as a optional prompt. Now pull in a check box or a Push button(name it as reset or something.). while binding the data to the check box or push button (source data) bind it to a blank cell. when user clicks on it , it passes a blank vlaue to the region(this is ur input for region) which will inturn makes the prompt optional for the region web service. which should pull all the data for all the region.
    The whole idea lies in somehow passing a blank cell to your  web service whose region prompt is optional.
    Thanks,
    Karthik

  • How to disable moving Columns in JTable

    Hi,
    How can I make sure that the columns in my JTable cannot be moved?
    Any ideas?
    thanks

    How about:myTable.getTableHeader().setReorderingAllowed(false);

Maybe you are looking for

  • Port Forwarding to two computers.

    I want to open ports for an application that I use on two different computers. I have been able to forward the port to on (static) ip and everything works fine. But when I use the application on another computer the port is closed. On my previous rou

  • Distortion in Audition 3.0.1 and Win7 64 bit

    On board audio on my mobo took a dump, I don't like on board anyway. I added a Diamond PCI 7.1 (I am not spending $200 on a big time card, this one meets my needs). I have 2 hard drives with OS. One is XP sp3, the other Win7 sp1. I can't get ASIO wor

  • Can not do google or yahoo search

    Can not do google or yahoo searches. IExplorer has the same problem. I have run Malwarebytes and AVG nothing fixes it. You sure must get a lot of question since there is so many hoops to jump through to write a message. This is to bad. Future or pres

  • How to eliminate login screen

    I would like to just open my laptop and start using it without having to loging everytime I open it if it's still running. I have it started up, but I'll close it during the day, not turn it off just close the machine. But everytime I open it, it pro

  • Internal Order error in GRN of subcontract PO

    Dear All i have created subcontracting PO without any account assignment category. While doing GRN of Finished good the following error occurs Internal Order entered  in not Correct. Please check. Message no. /ISDFPS/FDPDAHHM019 i am wondering that I