[Help] Gauge as master table in master-detail links

I am working on master-detail links POC these days. Found most of views work as a master view or a detail view. But found Gauge only works for a detail view. Never succeed to make it work as a master view.
Checked the Oracle documents. They do say Gauge can be. So anybody has the success experience and could share how to make that?
I built one Bar char, one Pivot Table and one Gauge as the master views and one normal table as the detail view in one analysis. All work well but Gauge. It's a bug?
OBIEE Version: 11.1.6.8 and 11.1.7.0
Edited by: AlexHu~ on May 14, 2013 2:15 AM
Edited by: AlexHu~ on May 14, 2013 2:16 AM

Anyone encountered same issue as me?

Similar Messages

  • How to create 1-1 relation in Master Detail link?

    How to create 1-1 relation in Master Detail link?
    I've attached the screen shot in the link below (a Microsoft powerpoint file)
    http://us.f1f.yahoofs.com/bc/6a8130cf/bc/My+Documents/dataerror.ppt?bf2WKfABbW_fzjVn

    Hi,
    I can't reach the file at the link you gave (bcvrf.yahoo.com not found) so I can't tell quite what you're trying to do. Can you provide a bit more detail? Are you using the ER modeler or the schema diagram? If you're modeling tables in the schema diagram then the answer is you can't - there must be a foreign key at one end and that is always represented as a 'many'. To enforce a 1:1 relationship you must add code (probably in the server), for example, db triggers.
    I hope this is helpful,
    Keith.

  • Implementing master-detail link

    Hi experts,
    I am trying to set up a master-detail link between 2 pivot tables. I have defined a master column and a detail view and a channel. However, the link does not work.
    When I right-click on the cell that should link to the detail view, I get 'Send master detail event', but nothing happens, and the cell is not clickable with a hyperlink.
    What did I do wrong?
    Thanks Gurus

    https://docs.google.com/file/d/0ByRcrSFfteJQZDBweVY2VHIwQjA/edit?usp=sharing
    https://docs.google.com/file/d/0ByRcrSFfteJQNGo3dlJKU3E3dEU/edit?usp=sharing
    https://docs.google.com/file/d/0ByRcrSFfteJQZkNmbzJvNkdIRkU/edit?usp=sharing
    https://docs.google.com/file/d/0ByRcrSFfteJQTzBFXzhJX3RpcVU/edit?usp=sharing
    Here are some new screenshots. The master column is called 'Identifiant externe du contact'.
    Hope this helps!

  • Master-Detail Linking and column selectors

    Does anyone know if it's possible (in 11.1.1.7) to create a master-detail link on a column that's part of a column selector?
    There's a master "roll-up" table using a column that's part of a column selector group. For one of the columns in the group, I've set the interaction to "Send Master-Detail Event".
    There's a detail table that uses that same column, and listens on the correct channel.
    However, when clicking on the column output in the master roll-up table, the detail doesn't change.
    I should mention I'm using the latest Firefox on PC, if that matters.
    Thanks!
    John

    I'm facing the same issue.Has anyone worked on it?

  • Master Detail Linking between Views

    Hi All,
    I have checked that Master Detail linking works between an Analysis and a Graph etc. But is it possible to have a Master Detail Linking between a Gauge and a Graph such that when I drill down on a Gauge my Graph should reflect the same results.
    Thanks.

    I'm facing the same issue.Has anyone worked on it?

  • Master-Details Link

    Hi,
    I have done master details in obiee 11g,since when i am trying with dimension column its working fine,where my requirement is how to achieve master details link in hirerchial column,in 1st report i have kept product hirerchial cloumn with 1 measure and 2nd report same product hirerchial colum nand 1 measure when i given link master -details link its not working.can anyone suggest how to achieve that.
    Appreciate your earlier response.

    You a right,
    the problem is not in fetching of detaisl VO - when I using table region to show rows of detaisl VO it fetches and dispays data normally, but if I use messagecomponentLayout with 3 messagestyledtext items on it - those items display data when I select different rows in master table, but display nothing when there is singe row in the master table....Should I somehow refresh the messagecomponentLayout region?

  • Help needed in Master Detail Form - 2 level of details

    Hi,
    I have a form with 2 levels of Master Detail and a Find window
    The Datablocks are
    - Batch
    - Headers
    - Lines
    - Manual datablock for Find Wndow
    I have created relation between Bacthes and Headers with Batch Id
    I have created relation between Headers and Lines using HeaderId.
    The issue is that,
    If I search with '%' in Batch block, by default it will show results in 'Headers' and 'Lines' block.but if i navigate to the next record in batch block , only Headers block shows results but Lines block does not show result.
    If I search from Find window also, only Batch and Headers block shows results but Lines block will be empty.
    In the 'Batch' block if I search with specific data , the screen shows results in 'Headers' and 'Lines' block.
    Can you please help me solve it.
    I have written a PRE-QUERY on Batches block to set where clause from Find window.
    I have written a PRE-QUERY in Headers block to set where clause from Find window
    Thanks,
    Kamath.
    Thanks,
    Gowtam

    Hi,
    When you execute normal not by searching through ENTER_QUERY mode. Then data is coming in all blocks
    - Yes. Once I go to the Form if I search using '%' in batch block or search for a particlaur record i Batch block, the results shows up in Headers and Lines block.
    Ex: say there are 2 records in Batch block(A and B) and I search by %, by default i get 1 batth record (A) and corresponsding headers and lines
    now when i use down arrow key in the batch block, second record(B) will be showed in batch block. relevant Headers block records will be shown but Lines block does not get queried.
    Similarly if coem to the Form from search window then also, Batch and Header blcoks wil be shown but not Lines block
    PREQUERY at Batch Level_*
    V_WHERE := 'WHERE 1 = 1';
    IF :XXYH_ICAN_CALC_WB_FIND.PERIOD IS NOT NULL THEN
         V_WHERE :=      V_WHERE || ' AND PERIOD = '''||:XXYH_ICAN_CALC_WB_FIND.PERIOD||'''';
    END IF;               
    IF :XXYH_ICAN_CALC_WB_FIND.BATCH_ID IS NOT NULL THEN
         V_WHERE :=      V_WHERE || ' AND BATCH_ID = '''||:XXYH_ICAN_CALC_WB_FIND.BATCH_ID||'''';
    END IF;
    IF      V_WHERE IS NOT NULL THEN
         set_block_property('XXYH_ICAN_WB_BATCHES',DEFAULT_WHERE,V_WHERE );                          
    END IF;     
    PRE-QUERY at Header Level_
    IF :XXYH_ICAN_CALC_WB_FIND.BATCH_ID IS NOT NULL THEN
         V_WHERE :=      V_WHERE || ' AND BATCH_ID = '''||:XXYH_ICAN_CALC_WB_FIND.BATCH_ID||'''';
    END IF;
    IF      V_WHERE IS NOT NULL THEN
    set_block_property('XXYH_ICAN_WB_TRX_HEADERS',DEFAULT_WHERE,V_WHERE );
    END IF;     
    Thanks,
    kamath.

  • Help with a master/detail

    hi there,
    i have two entity based view objects that i have created a link between using the application modules data model form. when i run the module and the veiws in the testing applet everything works fine...
    but when i attempt to use the top level part of the new data control for a read only table and the child part of the data control for an updateable form then i can't seem to get any active coordination between the two.
    the child form does provide the correct details when reloading the page but when selecting items in the master table then the data does not change to reflect the current record in the child form.
    how does one go about determining what such a problem would be?
    thanks in advance.

    Hi,
    I have converted a master/detail view from 10.1.3.4 to 11.1.1.1. It works fine in 10.1.3.4. However, the detail page does not refresh in 11.1.1.1.
    The ID of the master page is masterDetail1 as default. The ID of the detail page is detailSheet, as I set it in source file.
    When I set partialTriggers to masterDetail1 on the detail page property, I got a warning:
    13/10/2009 3:46:58 PM org.apache.myfaces.trinidadinternal.context.RequestContextImpl addPartialTriggerListeners
    WARNING: Could not find partial trigger masterDetail1 from CoreTable[org.apache.myfaces.trinidad.component.UIXTable$RowKeyFacesBeanWrapper@4c0047, id=detailSheet] with the supported partialTriggers syntax. The partial trigger was found with the deprecated syntax. Please use the supported syntax.
    When I set partialTriggers to detailSheet on the detail page property, I did not get any error message.
    However, in both cases, the detail page does not refresh when I click to select a master record OR click next/previous/page_list on the master page.
    But, the detail page DOES refresh SLOWLY when I click to select a master record AND next/previous/page_list.
    Please advise how I can fix this issue.
    Thanks,
    Regards,
    Michael

  • Help needed: modeling master-detail relationship using Object types

    I would like to use object types to model a master-detail relationship. For e.g.
    create or replace type detail_t as object
    (id number,
    name varchar2(20)
    create or replace type details_t as
    table of detail_t
    create or replace type master_t as object
    (id number,
    name varchar2(20),
    details details_t
    If I don't use database object-tables, how can I return multiple master rows of the type above from a PL/SQL procedure? Can I return a cursor of some sort?
    I'm using Oracle 8.1.7.
    Thanks,
    Niranja

    Niranjan,
    After the object types are defined, your data would come from either object tables or object views. In your case, to get multiple master rows, simply query the object view.
    Regards,
    Geoff

  • Please Help, Data Set Master/Detail with mySQL DB

    Hi...
    I installed the Data Set Master/Detail Sample (states and
    citys autopopulate) getting values from a XML file...
    when a user adds a listing in my site, it works great.. i use
    the XML file values for the states/citys and then everything is
    stored in a DB... BUT i need to do this..
    when he comes back to edit his listing, i want the Data Set
    Master/Detail to show hes values (from de DB) with the option to
    edit them, not the first XML file values.
    Thanks

    Thank you kinblas!!!!!
    I saw another post with the solution!!!
    Here it is
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=602&threadid =1308016&highlight_key=y&keyword1=SetDefaultState
    Thanks again!

  • Master Detail Link Between Hierarchy column and graph

    Hi all,
    I have created report using hierarchy columns of project dimension.
    Project total -> Project Group -> Project subgroup ->Project Name
    When I click Project Group of hierarchy column , Graph has to change with respect to that column.
    Help me as soon as possible.
    Thanks in advance,
    Haree.
    Edited by: Haree on Mar 21, 2012 6:57 PM

    Hi,
    Check if you are using the following types of views for the detail views:
    -Graph
    -Funnel graph
    -Gauge
    -Table
    -Pivot table
    A detail view:
    -Can listen for master-detail events from multiple master views
    -Can be in the same analysis as the master view or in a different analysis
    -Cannot act as a master to another view
    NOTE: Please mention if this resolved your problem/still facing and close the thread to assist others with similar problems.
    Regards,
    MuRam

  • A litle Help in the Master-Detail Pages

    Hello everybody how can i have more than recordset in the detail page because im stuck

    Okey here is my Databases tables :
    Manga :
    1
    title
    varchar(250)
    latin1_swedish_ci
    No
    Change
    Drop
    More
    2
    episode
    varchar(250)
    latin1_swedish_ci
    No
    None
    Change
    Drop
    More
    3
    language
    varchar(250)
    latin1_swedish_ci
    No
    None
    Change
    Drop
    More
    4
    link
    varchar(250)
    latin1_swedish_ci
    No
    None
    Change
    Drop
    More
    5
    id
    int(11)
    No
    None
    AUTO_INCREMENT
    Change
    Drop
    More
    Language Table :
    1
    lang_id
    int(11)
    No
    None
    AUTO_INCREMENT
    Change
    Drop
    More
    2
    code
    varchar(200)
    latin1_swedish_ci
    No
    None
    Change
    Drop
    More
    it contain 2 lign :
    + Options
    Edit
    Inline Edit
    Copy
    Delete
    1
    VostFR
    Edit
    Inline Edit
    Copy
    Delete
    2
    VoiceFR
    Manga_list :
    1
    id
    int(11)
    No
    None
    AUTO_INCREMENT
    Change
    Drop
    More
    2
    list
    varchar(250)
    latin1_swedish_ci
    No
    None
    Change
    Drop
    More
    Check All / Uncheck All With selected: Browse Change Drop Primary Unique
    the lign of this table:
    + Options
    Edit
    Inline Edit
    Copy
    Delete
    1
    One-piece
    Edit
    Inline Edit
    Copy
    Delete
    2
    Naruto
    Edit
    Inline Edit
    Copy
    Delete
    3
    Death-note
    Edit
    Inline Edit
    Copy
    Delete
    4
    Bleach
    I didn't understand what the "drills" mean's, but i will explain more sorry i'm not english , the master page is listing the "Title/Episode/language"
    For the site it's not online i test in the localhost,  here is how i want to my pages look's like and thank's
    http://www.dpstream.net/manga-3-episode-535%20[VOST%20FR].html
    PS: if im doing anything wrong in the database you can help me and thank's
    (do you have anything to keep in touche like (Facebook,MSN...), or anything like that f you do PM it to me ? and thank's a lot for helping me

  • Hierarchies and Master Detail Linking

    I have a hierarchy field that I would like to use as my "Master" source to drive my report detail. I'm having trouble and am wondering if this is even possible given that in the table/graph prompt I can only set it up to listen for one channel.
    Very new to OBIEE, so I appreciate your help!!
    Katy

    I'm facing the same issue.Has anyone worked on it?

  • Master & Detail Pages

    Hello all,
    I am asking for help on creating Master - Detail pages. I am using Wamp version 2. Database name "TestingCo" with 3 tables:
    Users:      user_id                int(4)           Primary_Key
                   user_fname          varchar(30)
                   user_lname          varchar(30)
                   user_license_id    int(4)
                   user_pix_id          int(4)
    Licenses: license_id           int(4)             Primary_Key
                   license_no          varchar(10)
    Pictures:  pix_id                 int(4)             Primary_Key
                   pix_url                varchar(50)
    1. I create a recordset called: rsMasterDetail:
         * with all fields from all 3 tables.
         * Where users.user_pix_id = pictures.pix_id AND users.user_license_id = licenses.license_id
         * Order By users.urser_fname
    2. On Master page, I insert Master Detail Page Set:
         * Master page fields: All fields from rsMasterDetail recordset.
         * Link to Detail from: user_id          / later I tried: user_fname         
         * Pass unique key:   user_id          / later I tried: one by one from each field of Users table.
         * Show: All records
         * Detail page name:     Detailpage.php
         * Detail page fields:     All from rsMasterDetail recordset.
    3. Result: (I always get the same result as below).
         * Masterpage.php - perfect - All correct display between 3 relational tables
         (*) Detailpage.php - when I click on any link from the Masterpage.php:
              - All the fields from Users table are displayed correctly depending on which link I clicked on Masterpage.php
              (+) The fields from table Licenses are displayed the first row only (1st record of the table.)???????????????
              (+) The fields from tabel Pictures are displayed the first row only???????????????
    A. When I built the rsMasterDetail recordset, I test it and the result is good.
    B. The masterpage.php shows all fields in perfect order.
    There must be something wrong when the information passes from Master page to Detail page!??!!???
    Please help me!
    Thank you

    Hi Lon,
    When I test it, the tables relationship is perfect since all three tables line up correctly on the masterpage.php. If there is problem with tables relationship, I should also have such problem with the masterpage.php.
    I, once tried to build another recordset called: rsTest. This time I had only 2 tables: Users and Licenses. The result was the same; only the first row of the licenses table would show on the detailpage.php; while the masterpage.php the rows on both tables line up correctly.
    I have tried many ways to find solutions unsuccessfully. What I get so far is:
    * The recordset is display correctly every single time when I click the "Test" button, as well as on the masterpage.php (I meant the tables relationship).
    * When the link on the masterpage.php is clicked, the detailpage.php supposes come up and display all rows of 3 tables of the linked record. However, all rows of the 1st table are correctly displayed, and the other table(s) only show its first row regardless which link on the Masterpage.php was clicked.
    I hope you and others gurus can help me out.
    I appreciate your help.

  • Make detail items in master/detail form read only

    I want to make detail items in master/detail form read only for certain conditions (master STATUS = Closed). I see how to do this on the master record items but not on detail items.

    Take a look at this thread: Re: Conditionally make a tabular form uneditable
    You will need to modify the code, but it should help since a master detail is just a standard form with a tabular form attached to it..
    Thank you,
    Tony Miller
    Webster, TX
    Time flies like the wind, but fruit flies like bananas.

Maybe you are looking for

  • Performance issue on Date filter

    In my where condition I wanted a date filter on sale date.  I want all sales after 9/1/2014.    CASE1 If I explicitly use date filter like  SaleDate > '2014-09-01 00:00:00:000' I am getting the result in 2 seconds. CASE2 Since I may need to use this

  • Conversion of a .jar OR a .class file into a .exe  file

    Can anyone tell me as how to convert a .jar OR a .class file into a .exe file I need to know as soon as possible.

  • ALV Print dump

    Hi I am getting ABAP dump when i printing alv report using PRINT button. Error is Field symbol has not yet been assigned CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'     EXPORTING       I_CALLBACK_PROGRAM      = G_REPID       I_CALLBACK_USER_COMMAND = G_US

  • IN function in OBIEE

    Hi All, In Business Objects , we have a function called "IN". What is the equivalent function of "IN" in OBIEE? Can anyone help me with this? Thanks all

  • Resolution of Transparency

    Hi I would like to know how the resolution of a transparent object is determined when exporting to a 1.6 PDF where the transparency is not flattened. Does it use the settings in the transparency flattener Preset? Or is it related to the resolution of