OBIEE-ODI Lineage:Hiding or disabling lineage column

Hi,
I am working on OBIEE-ODI lineage implementation. When I click on the lineage icon its going to next level. For eg when I click on lineage icon the report is showing OBIEE logical table and logical column details ....In turn when I click on lineage icon in this report its showing the OBIEE physical table and column details...in turn when I click on lineage icon in this report its displaying the ODI target details and on next click the underlying ODI source details....once we reached the ultimate ODI source I want the lineage icon to be disabled or the column showing the lineage icon to be hidden. Any pointers on this would be of great help.
Regards,
Rajesh

Hi,
If you are on ODI 11g remove the odiRef.getObjectName("BI_OBJ_ID.NEXTVAL") function call and just give the sequence BI_OBJ_ID.NEXTVAL where ever its being used.
Regards,
Rajesh

Similar Messages

  • OBI-ODI lineage:Unable to unarchive odi_catalog_archive.cat

    Hi,
    Our requirement is to implement OBI-ODI lineage. I followed the link: http://www.oracle.com/technology/obe/fusion_middleware/ODI/OBI-ODI_Lineage/OBI-ODI_Lineage.htm. The problem we are facing is at the step of unarchiving the odi_catalog_archive.cat file. We are using OBIEE 10.1.3.4. Whenever we are trying to unarchive the file using Catalog manager,it gives the following error: Compression - inflate Error -3. Can anyone please shed some light as to how this problem can be overcome? As per the information available in the link, OBIEE should be of version 10.1.3.0 and above. So,I think that OBIEE 10.1.3.4 should be compatible and its not a version issue. Any light into this is highly appreciated.
    Thanks and regards,
    Debarati.

    I think it's a version issue, can you try opening it with Catalog Manager v10.1.3.4.1?

  • OBI-ODI Lineage:Unable to unarchive the odi_catalog_archive.cat

    Hi,
    Our requirement is to implement OBI-ODI lineage. I followed the link: http://www.oracle.com/technology/obe/fusion_middleware/ODI/OBI-ODI_Lineage/OBI-ODI_Lineage.htm. The problem we are facing is at the step of unarchiving the odi_catalog_archive.cat file. We are using OBIEE 10.1.3.4. Whenever we are trying to unarchive the file using Catalog manager,it gives the following error: Compression - inflate Error -3. Can anyone please shed some light as to how this problem can be overcome? As per the information available in the link, OBIEE should be of version 10.1.3.0 and above. So,I think that OBIEE 10.1.3.4 should be compatible and its not a version issue.
    Thanks and regards,
    Meenakshi

    Our requirement is to implement OBI-ODI lineage.I followed the link: http://www.oracle.com/technology/obe/fusion_middleware/ODI/OBI-ODI_Lineage/OBI-ODI_Lineage.But we didn't find the OBI_ODI_LINAGE.zip file to download as mentioned in the document .Please let us know from where and how to down load this file.
    Thanks in advance.
    Regards
    Pavan

  • How to disable certain columns of a Table?

    hi all,
    I wish to fill a pattern of 8 digital signals (only 1's & 0's) in a Table.
    Is there any way to restrict the user from typing char or num other than a 1 or a 0?
    Since the table is a string, I'm having confusion how to do this.
    Secondly, the table would have by default 12 columns visible on the Front Panel, excluding both the headers.
    But the No. of Columns is based on a parameter called Duration that ranges between 4 & 256.
    What I want the user to do is to key in 1's & 0's for the Duration chosen.
    Since it'll be tedious to key in for large values of Duration, I've given the option of Set Row(s) & Reset Row(s),
    that will fill with either 1 or 0 respectively for the chosen Row Value.
    Is there any way to disable the remaining columns of the Table, ie, those unfilled columns,
    when the user scrolls horizontally? I don't know how to achieve this.
    I went thro' the Properties of the Table, I don't understand some of their functionalities,
    like SelStart, SelSize etc.
    I wonder why a Property like Disable Array Elements for Arrays is not provided for a Table
    to Disable the columns we want to do so, or is it my gross ignorance, I don't know.
    Experts pls clarify me & help me out.
    Regards,
    Partha.
    - Partha
    LabVIEW - Wires that catch bugs!
    Attachments:
    Set Eventframe1.vi ‏409 KB

    Another option is to do this:
    Slightly more elegant, but also more potential for bugs (e.g. the users can tab into the column).
    craigdobis wrote:
    You can lower your overhead by using these "professional" looking indicators and controls. They are limited in functions and properties, thereby causing a smaller VI in file size.
    Nice. I didn't think about that. Looks like a VI with a single system boolean takes ~20% less space than one with a standard boolean.
    P.S. In general, I would say there are considerably better arguments for using system controls than memory issues.
    Try to take over the world!
    Attachments:
    Disabled Column.png ‏5 KB

  • OBIEE 11g How to Exclude/Include Multiple columns on BI Report at Run Time

    OBIEE 11g How to Exclude/Include Multiple columns on BI Report at Run Time

    Exclude:
    you Can exclude columns in either Table view or pivot table view by placing those columns in Excluded section but you will notice that it will appear in bi server parsed sql query.
    Not sure you were asking about runtime??
    would you please explain your question!!
    Thanks
    NK
    Edited by: DNK on May 8, 2013 9:48 PM

  • Disable some columns in table control?

    Hi
    How to disable some columns in table control.
    For Ex: Table contains 8 columns.
    In first row i want to disable first 4 columns.
    in second row i want to disable last 4 columns.
    In third row i want to disable first 2 and last 2 columns.  How can we achieve this?
    Cheers,
    Venkys.

    HI
    Create three attribute in the node which is bound to the table as data source.
    say pro1, pro2, and pro3 of type wdy_boolean.
    now bind the enabled property of first four column editors to pro1, last 4 to pro2, and pro3 to first 2 and last 2.
    then go to the eventhandler of the dropdown 's on select event and write the code to update the values of these attribute
    according to the selected value.
    here is the sample code.
    DATA lo_nd TYPE REF TO if_wd_context_node.
        DATA lo_el TYPE REF TO if_wd_context_element.
            DATA lv_VAL LIKE ls_dealer1-name.
        lo_nd = wd_context->get_child_node( name = 'DEALER1').
      lo_el = lo_nd->get_element(  ).
        lo_el->get_attribute(
          EXPORTING
            name =  `NAME`
          IMPORTING
            value = lv_VAL ).
         DATA PR1 TYPE WDY_BOOLEAN.
         DATA PR2 TYPE WDY_BOOLEAN.
         DATA PR3 TYPE WDY_BOOLEAN.
      PR1 = ABAP_TRUE.
    PR2 = ABAP_TRUE.
    PR3 = ABAP_TRUE.
    IF LV_VAL EQ 'A'.
    PR1 = ABAP_FALSE.
    PR2 = ABAP_TRUE.
    PR3 = ABAP_TRUE.
       ELSEIF LV_VAL EQ 'B'.
    PR1 = ABAP_TRUE.
    PR2 = ABAP_FALSE.
    PR3 = ABAP_TRUE.
    ELSEIF LV_VAL EQ 'C'.
      PR1 = ABAP_TRUE.
    PR2 = ABAP_TRUE.
    PR3 = ABAP_FALSE.
      ENDIF.
       LO_EL->SET_ATTRIBUTE(
       NAME = 'PRO1'
       VALUE = PR1
       LO_EL->SET_ATTRIBUTE(
       NAME = 'PRO2'
       VALUE = PR2
       LO_EL->SET_ATTRIBUTE(
       NAME = 'PRO3'
       VALUE = PR3
    thanks
    sarbjeet singh

  • How to disable a column in matrix

    Hi All,
                How to make a column in matrix disable in runtime...this is the coding iam using...but iam unable to find to disable that column.
    Dim objWasType As EditText
    objMatDet = objForm.Items.Item("MatDet").Specific
    objWasType = objMatDet.Columns.Item("col_3").Cells.Item(pVal.Row).Specific
    <--i want like this option,but it doesn't have that property-->
    ''objWasType.Disable =true
    <--i want like this option,but it doesn't have that property--> 
    Regards,
    shangai.

    hi petr,
               i don't want to disable the matrix....only i want to disable a particular column in matrix on the selection of one combobox event.....
    Ex:-In a combobox '2' selections are there & in matrix ''2'' columns are there...if 1st selection(in combobox) is selected then in the matrix second column should be disabled & if 2nd selection(in combobox) is selected then in the matrix first column should be disabled.
    i have tried this line...
    objMatDet.Columns.Item("col_1").Editable= False
    but after this change it work fine....thenagain next time when i stop the debug mode of my project & again when i run my project the '2' columns are ALWAYS UNEDITABLE....(i,e the change occured has became constant)...is there any solution ot make the fields uneditable only on the selection event....
    regards,
    shangai

  • How to disable a column in Advance Table

    Hi All,
    I have an advance table, for which one of the column is MessageTextInput I want to disable this column programatically on certain condition for a particular row, is this should be implemented by switcher else is there a better way.
    Thanks in advance

    switcher is the best way to implement this problem.
    You can also use SPEL expression, which is very easy to implement.
    Eg,
    Set the SPEL expression for readOnly property as ${ReadOnlyFlag} // where readOnlyflag is a boolean attribute in the VO of respective region.
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • JTable - Disable some columns

    How should I disable some columns in a JTable so that they cannot be edited at all? The methods provided do this but double clicking the column enables it.

    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;
    else
    return 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

  • Disable first Column in jTable

    Hello people my problem is I use jTable and in the table I need to disable first column so that the user is not able to change edit the values that are listed in this column. Please help me with some code samples if possible. Thanks in advance.

    A custom table model makes this simple. You just override the isCellEditable method and return false when the column index is 0.

  • How to disable a Column for a particular row in Advanced Tables

    Hi All,
    We are using an Advanced Table for search criteria. Our requirement demands to disable a column (we are using messagechoice item in that column) for only first row. We use standard Add Another Row functionality to add the rows.For the remaining rows it (message choice) should be enabled. Can anyone help me to solve.
    Regards,
    Sundeep

    You can either use a Switcher or OADataBoundVariables for this.
    Please see the section OADataBoundVariable in the dev guide. Based on certain View Attribute value, you can set the specific column in the table as Read Only.
    Switcher can be very similar too. Decide an Attribute for the Switcher and make sure the first row (which you want to disable) has some specific value. All other rows should have some other value. Decode can help you here. Then you would need to create two cases. Under the specific to first row, have a read only item. For the other case, have an enterable item. A little read through of the Switcher chapter in the Dev guide would clarify the doubts if any.
    Regards
    Sumit

  • Disable table column

    Hi all,
    i have a table in my WD View.
    i want to disable certain columns of the table on runtime.
    how do i do that.
    please replly soon.
    Thanks & Regards,
    Ritwik.

    Hi Ritwik,
    Each table colums has a 'Cell editor' which identifies the type of the column. i.e. text view or input field or cheeck box ect.
    If you want to enable/disable a table column, then in the table column, click on its cell editor and go to its propertys tab.Here we have
    Properties (TextView)     
    ID     TBL_FLIGHTS_AIRLINEID_EDITOR
    design     standard
    enabled     1
    hAlign     auto
    layout     native
    semanticColor     standard
    text     SEARCH_VIEW.FLIGHT_LIST.AIRLINEID
    textDirection     inherit
    tooltip     
    visible     Visible
    wrapping     0
    These properties can be set statically or can also be maintained dynamically by binding these properties to a context attribute and change the value at based on the conditions.
    To do this create a context node say 'UI_PROPERTIES', Create an attribute in it say 'ENABLED' of tye wdy_boolean (X, ' ').
    Go to the table column cell editor click on the button against the enabled button, from the F4, navigate to the context node 'UI_PROPERTIES' --> 'ENABLED'  Attribute. Select it and OK.
    A green icon is displayed on the button indicating that binding is maintained.
    Now if you want to enable/disable the table column then do a set_attribute of 'ENABLED' field as X, Space for enabled, disabled respectively.
    If you want to make few columns invisible at runtime then this can be achieved as mentioned above. Create another attribute say VISIBILITY type WDUI_VISIBILITY.
    Bind this attribute to the visibility property of the TABLE COLUMN. (Go to properties tab of Table Column).
    Set 01, 02 for Invisible, Visible respectively.
    Hope this helps.
    Regards,
    Sravan Varagani

  • OBIEE Data Lineage

    Hi all,
    I have implemented data lineage.
    Now I am looking to add the data lineage link to my dashboards using the following HTML.
    <!-- <p><font class=Nav onclick="JavaScript:GoNavEx(event, '<Location of Lineage Report>','','Table','Col','<Location of prompted report>','table',*'PROMPTED VALUE'*,'');"><img src="<image source>" alt="View Data Lineage"> Data Lineage</font> -->
    My question is:
    Say for instance I need to click through and prompt my lineage report by more than 1 PROMPTED VALUE I.e. I have 3 separate elements in one report that I want to show lineage for e.g. 3 different KPIs on one report and I want to see lineage for all of them. How would I manipulate the code to ensure that it passes more than one value through to the report?
    If this is not possible would I be able to add the lineage link to the end of the table and have a new column with a lineage link in it for EACH kpi?
    Thanks.

    If my understaing is correct, you need to pass mulutiple values to a report
    check these links
    http://docs.oracle.com/cd/E21043_01/bi.1111/e16364/apiwebintegrate.htm
    or
    http://docs.oracle.com/cd/E12096_01/books/AnyWebAdm/AnyWebAdm_APIWebIntegrate6.html
    Let me know updates
    If helps pls mark

  • OBIEE 11.1.1.5 disable sorting

    Hi,
    I am finding some issue when sorting the columns by ascending most of the time. The records are getting removed from the report. By default, now 11.1.15 introduced sorting on all columns including the measure columns as well and there is no way to disable them by column or remove this feature from the report as well. Did any one find any alternative way to disable this sorting in this version of OBIEE. Let me know the solution.
    Regards
    VM

    Yes, definitely there is a problem the way OBIEE 11.1.1.5 has made this a default behavior including all the dimension columns as well fact measure columns also available for sorting and it acts wierd for pivot table issue but doesnt throw any error for table view.
    Will be taken up by oracle support as a bug and might get fixed in its later version may be.
    Regards
    VM

  • Drill down report is showing popup even though it's disable in column properties

    Hello,
    I am facing an functionality issue where I have crated Summary to drill down report. Summary is chart and drill down is table view and I am using OBIEE Action link  here.
    Now I have disabled the Popup in column properties so when user click the bar on the graph they will directly navigate to detail report. But strangely after disabling the Popup, when i click on bar the drilldown report is coming as popup link.
    does anyone has any idea how to handle this issue??

    It would seem to be a issue with either the hardware of the printer or the replacement cartridge. If it is the cartridge, it should be covered under warranty (if it is HP genuine) since you just purchased it. At this time I think that your best move would be to contact HP's Technical Support to see about further options for you.
    The only other option would be to try another new replacement cartridge to rule in or out the cartridge being at fault.
    If you are calling within North America, the number is 1-800-474-6836 and for all other regions, click here.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

Maybe you are looking for

  • Is there a way to create guides within ruler guides or aligned to ruler guides?

    So I was wondering for my own sake if there was a way to create guides within ruler guides or have it align to ruler guides? I am working on this magazine where the layout has a ruler guides. Which is inside the margins. I'm guessing this is to ensur

  • B510 - screen too bright ?

    I'm having a strange problem with my B510. It seems to me that the screen is way to bright, even with the brightness level at its lowest. I use this system mainly for work. When I work with eg. my stock charts, which are plotted on black background t

  • Can Aperture use Iweb pages?

    Greetings All: I've got several site that have been created using Iweb. But would like to generate the photo type pages using Aperture and then melt the two together. Is it possible to import my Iweb template into Aperture so the photo pages will loo

  • Change Background and font style in Web Page Composer ?

    Hi, someone knows how change the background and font style/size of the web page composer ? or how to control  font size style and background of WPC page using CSS ??? point will  rwrd

  • More than four images in a row?

    I have it set up to display four images in a row. Does anyone know how to display more than that using Apex? Thanks, E.