Populating dashboard filters using drill functionality...is it possible?

I am pretty sure that I already know the answer to my question and even a possible work around, but I figure that I would ask the experts on the forums just in case.
We have a requirement to allow users to drill into specific fields, such a organization hierarchy, time, etc. All of the hierarchies are present at the top of the report as dashboard prompts. There are multiple tabs of reports, and being such, the users would like to be able to drill down on a report and have the item that they drilled on populate the dashboard prompts at the time. This would allow them to drill down in a report and then click on another tab on the dashboard, bringing their drill with them.
I have a feeling the answer to this is to use navigation and pass the values, but they really don't want to go that route as the sheer number of navigates that would have to be built makes for a messy report.
Does anyone know how to do this, or as an alternative, can you create a drop down list of navigates?
Thanks!
Michael

You could always do it but would need to put a fix limit on the number of menu items.
For example you could create a set of menu items at design time with the visible property set to False.
While reading the database, you then set them to True while setting the label to whatever you require.
But it all depends also on what you want your menu items to do when selected.

Similar Messages

  • Dashboard filtering using Variable prompts

    Hi,
    I am having a dashboard with 2 pages(Monthly and Quarterly). My requirement is:
    Create a variable prompts(Monthly,Weekly) in separate page.
    When i select radio button 'Monthly' only the sections related to monthly should be displayed and "Quarterly" sections to be hidden also vice versa.
    I need both of them in a single page and allow me to display based on selection.
    I am new to OBIEE 11g and this is my first enhancement. Plz help me.
    Thanks in Advance
    Regards,
    Avinash

    Hi,
    you can create a section filter which will display the value based on selection.
    for section filter, create two seperate reports which will have only one column and give the filter as 'Month', 'Week' in each report.
    when you are creating the section filter then use these two reports as condition ie. rowcount>0. so whenever month and week gets selected it will display the result.

  • Automatically populating the form using a function

    I'd like to create a form for clubs to register their members. In this form I want it to include the payment they will owe to Provincial, National and International levels. Is there a way to create the form so that the person filling it out can select which Province they belong to which will then automatically populate the areas with numbers (cost) pertaining to their province?
    Thanks,
    Rebecca

    I am sorry but Formscentral doesn't support any conditional or contextual filling.
    Andrew

  • Can we use Evaluate Function in Dashboard Prompt

    Hi
    Can anybody tell me
    Can we use Evaluate Function in Dashboard Prompt.
    If yes...How
    Thanks in Adv

    Yes ! You Can!
    while creating the dashboard prompt, under "Show" pick SQL results and you write the SQL statement and include the EVALUATE function.
    I have several such examples. Most of of dashboard pages are parameter driven.
    1. 1st paratmeter - users specify the dates
    2. 2nd parameter - constrains the results for the period specified in 1st paramter and my SQL for 2nd paramter looks like this -
    SELECT table1.column1
    FROM table, datedim1, table1,table2
    WHERE datedim1.date BETWEEN EVALUATE( 'TO_DATE(%1,%2)','@{presentation variable1}','dd/mm/yyyy') AND EVALUATE('TO_DATE(%1,%2)', '@{presentation variable 2}','dd/mm/yyyy')
    HTH
    Mahesh

  • Creating Report using EPM Functions with Dynamic Filters

    Hi All,
    I am new to BPC, In BPC 7.5 i seen like we can generate EPM report using EVDRE function very quickly and easy too. Is the same feature is existing in BPC 10.0 ? if no how can we create EPM reports using EPM Functions with Dynamic Filters on the Members of the dimension like in BPC 7.5.
    And i searched in SDN, there is no suitable blogs or documents which are related to generation of Reports using EPM Functions. All are described just in simple syntax way. It is not going to be understand for the beginners.
    Would you please specify in detail step by step.
    Thanks in Advance.
    Siva Nagaraju

    Siva,
    These functions are not used to create reports per se but rather assist in building reports. For ex, you want to make use of certain property to derive any of the dimension members in one of your axes, you will use EPMMemberProperty. Similary, if you want to override members in any axis, you will make use of EPMDimensionOverride.
    Also, EvDRE is not replacement of EPM functions. Rather, you simply create reports using report editor (drag and drop) and then make use of EPM functions to build your report. Forget EvDRE for now.
    You can protect your report to not allow users to have that Edit Report enabled for them.
    As Vadim rightly pointed out, start building some reports and then ask specific questions.
    Hope it clears your doubts.

  • Using substring function in the dashboard prompt

    Hi,
    I want to use a function in the dashboard prompt.
    Example: Subject Area:Paint --> Products --> Color
    I want to take second letter of color, describe a label for it and use this label in prompt. The formula is below;
    CASE WHEN (SUBSTRING(Products.Color FROM 2 FOR 1) = 'a') THEN 'AAA' ELSE 'BBB' END
    Dashboard prompt should list 3 choices; All choices, AAA, BBB.
    When selecting AAA in the prompt, these colors should be listed in the request; Carriage House Red, Dante, Manchester Red.
    I created a dashboard prompt (add a function) and a request. When selecting AAA in the prompt, it sends "AAA" as prompt, not sends "a". So I couldn't reach the result.
    Is it possible? Could anyone help me ASAP?
    Thanks & Best Regards,

    Create a column in the logical layer using the same formula that you described. Then use the new column in the prompt. Then add the new column to the report as 'is prompted'.

  • How to use drill-through functionality of EIS in HFR.

    I am trying to use drill-through functionality of EIS in HFR but that functionality is not coming in HFR.
    Can we use drill-through in HFR?

    We ended up building a solution that used a related content link in HFR that called an IR report which performed the drillthrough. It's a bit complicated to setup, but possible.

  • How to use filters in AggregateAware(,) function

    Post Author: masha43
    CA Forum: Semantic Layer and Data Connectivity
    Good afternoon, everybody!
    I would appreciate any help from you.
    Does somebody know how is it possible to specify a filter on an object that is specified with the help of @Aggregate_Aware() function?
    I have an object (REVENUE in Rubles) that is specified as @Aggregate_Aware(sum(F_FACE_TOTALS.CLEAR_REVENUE_RUR),sum(F_PRIMARY_TOTALS.CLEAR_REVENUE_RUR))
    I want to get something like this @Aggregate_Aware(( sum(F_FACE_TOTALS.CLEAR_REVENUE_RUR) ) where F_FACE_TOTALS.TRAFFIC_MIN>0,( sum(F_PRIMARY_TOTALS.CLEAR_REVENUE_RUR) ) where F_PRIMARY_TOTALS.TRAFFIC_MIN>0).
    But it shows a mistake.What is the right way to use WHERE and where and how I can use WHERE? Is it possible to do it?

    Post Author: masha43
    CA Forum: Semantic Layer and Data Connectivity
    it works!
    @Aggregate_Aware(sum(case when F_FACE_TOTALS.TRAFFIC_MIN>0 then F_FACE_TOTALS.CLEAR_REVENUE_RUR end),sum(case when F_PRIMARY_TOTALS.TRAFFIC_MIN>0 then F_PRIMARY_TOTALS.CLEAR_REVENUE_RUR end))

  • Webi Report : Drill Functionality not working properly

    Hello Guru's,
    I am working on Webintelligence Rich Client XI 3.1 FP 3.5.
    I have created a hierarchy Country -> Region -> Location -> Customer  and Sales Amount in my universe. I exported it to CMC and Created a Webi Report. I selected Country and Sales Amount only into the output screen and clicked on DRILL button in Webi Report and it showed me a line below Country which represents the drilldown is ON now.
    When i clicked on Country, it drills to Region and when i select any region, it drills to location and then to customer. The objects which is drilled that we can see in the Report filter (in the toolbar). Now, if i want to change Country or Region or Location directly (rather then click on Up, Up and Up). So, i clicked on the objects available in the report filter (in the toolbar), it doesn't show me the other contries or Region or Location while i see the same functionality in the standard Webi report (Formatted Report for Drill) given by SAP. If i drill any dimension then it comes in the Report Filter tool bar then i can see all the values for that dimension in the Report Filter and i can change it any time.
    What is the difference in that filters ? Do i have to make any settings ?
    Please do the needful and let me know.
    Regards,
    Komik Shah

    Hi,
    Can anyone help us on below requirement:-
    We are trying to build a BW hierarchy based  webi report. Trying to use drill features on charts.
    Then using this document link in our website ,which is used on Mobiles.
    The problem here is - I cannot drill up on an hierarchy using on mobile without right click.Is there any way to do do this?
    Regards,
    Vidhi

  • Turkish Character Problem using GO function

    Hi,
    We have a requirement of opening new dashboard page as a new page when a link is followed in an analytical request. We are using GO function and we are passing parameters also.
    Our formula for the column producing the link is like following (I have to drop html tags as they are not rendered on the forum page):
    saw.dll?Go&_scid=WAP*ginmv-g&Path=/shared/ASGBOARD/KRN_ISL/DENEME_ISL&Action=Navigate&P0=1&P1=eq&P2=ISLETME_DIM.SUBEKODU&P3=1+"@"&Done=Close
    The parameters are coming from primary request columns. However, if those parameters contain turkish characters like ş ç ö ü etc. the parameters are not passed correctly to the target dashboard page, instead of those characters, an empty box is rendered and the data on the page is not filtered correctly.
    Any idea on this?
    Thanks

    Hi,
    I am also not sure whether this is somehow because of OC4J settings or Oracle BI settings.
    Thanks

  • Problem using MDX functions in Answers Filter

    I'm using OBIEE 10.1.3.2.
    I'm using an Essbase cube as my datasource (aggregate storage).
    My level 0 members in my Date dimension are of the format yyyy-mm-dd (e.g., 2011-08-13)
    I have a dashboard prompt selecting the date from a calendar which returns the date and time (yyyy-mm-dd hh:mm:ss). So naturally I can't do just a straight equals between the prompt value and the member value.
    What I've written in the filter sql in Answers is: Date.Days = Evaluate('SUBSTRING(%1,1,10)','@{varStartDate}')
    The log shows the following:
    -------------------- SQL Request:
    SELECT Date.Days saw_0, main.total_completed_orders saw_1 FROM SIKAgg2 WHERE Date.Days = Evaluate('SUBSTRING(%1,1,10)','2011-08-09 00:00:00') ORDER BY saw_0
    -------------------- Sending query to database named mezen (id: <<9648>>):
    With
    set [Date4] as 'Filter([Date].Generations(4).members, (([Date].CurrentMember.MEMBER_ALIAS = "2011-08-09 00:00:00" OR [Date].CurrentMember.MEMBER_Name = "2011-08-09 00:00:00")))'
    select
    { [Measures].[total_completed_orders]
    } on columns,
    NON EMPTY {SUBSTRING(,1,10)SUBSTRING(,1,10)SUBSTRING(,1,10){[Date4]}} properties ANCESTOR_NAMES, GEN_NUMBER on rows
    from [SIKAgg2.main]
    So with all that being said it doesn't appear that the MDX function SUBSTRING is actually doing anything.
    1) Am I using the function incorrectly?
    2) Is there a better way to do this? I really just need to get rid of the time portion of the variable from the date prompt.
    Any help/guidance would be greatly appreciated. Spending too much time with trial and error approach.
    Thanks,
    Brad

    Brad,
    Try this way..In OBIEE RPD - Physical Layer for level 0 members in my Date dimension. Double click this member and check its type. Change the type to 'DATE' from 'DATETIME'. Delete the Date Dimension in BMM layer & Presentation Layer for again drag and drop from Physical Layer after changing the Type in physical layer.
    Normal way of building the RPD using Essbase
    Something similar to this http://www.rittmanmead.com/2009/03/dates-timestamp-and-oracle-bi-answers-filters/
    This shud solve your timestamp problem everywhere. This is one of the most common problem for Oracle sources. I have essbase as a source but unfortunately I can't replicate it as this is not having time level.
    Let me know if this solves your problem...
    In case the type is DATE only in RPD then I'll try to provide a diff soln here.
    Hope this helps

  • Can we use Evaluate function in Prompt

    Hi all
    Can we use Evaluate Function in Dashboard Prompt?
    I need some exposure on how to use it.
    I am working on a HRMS-OLTP Source where I need to work with Oracle Functions from OBIEE.
    IF somebody can tell me that, It will be a favour for me....
    ThanQ
    Anand V

    Hi All,
    Here's an example of how to use evaluate. This use calls the Oracle TO_DATE function: EVALUATE('TO_DATE(%1,%2)' as DATE, '03/03/2009', 'MM/DD/YYYY')
    Here's how it works: EVALUATE( '<FUNC>' AS <DATATYPE>, VALUE1,VALUE2,etc)
    FUNC) Is the syntax for the function you are calling. Any parameters have to be replaced by %<number>, where number refers to the order in which you specify your parameters.
    DATATYPE) The datatype that the function will evaluate to. In this case, DATE.
    VALUE1) The latter part of the formula is a comma separated list of all the parameters used in the function. In this case, it's the date I want to cast
    VALUE2) This is the second parameter. You need as many as you referenced in your function. In this case, it's the date format.
    Good luck and if you found this post useful, please award points!
    Best regards,
    -Joe

  • How can i use reuse_alv_fieldcatalog_merge function module

    I am using below steps for populating the final internal table.How can I use reuse_alv_fieldcatalog_merge function module in the place of declaring all these fields.How canI put title of the report in reuse_alv_fieldcatalog_merge function module.
    FORM BUILD_FIELDCATALOG .
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'KUNNR'.
      FIELDCAT-SELTEXT_M = 'Customer Name'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VBELN'.
      FIELDCAT-SELTEXT_M = 'Invoice Reference'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VKBUR'.
      FIELDCAT-SELTEXT_M = 'Sales Office'.
      FIELDCAT-JUST      = 'L'.
    FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VKGRP'.
      FIELDCAT-SELTEXT_M = 'Sales Person'.
      FIELDCAT-JUST      = 'L'.
    FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'POSNR'.
      FIELDCAT-SELTEXT_M = 'Item No'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FIANL'.
      FIELDCAT-FIELDNAME = 'ARKTX'.
      FIELDCAT-SELTEXT_M = 'Item Description'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.

    Hello,
    It is very easy to use reuse_alv_fieldcatalog_merge.
    You try this it will work.
    example
    data:
    DATA : gv_repid        TYPE syrepid VALUE sy-repid .  " Report id
      PERFORM set_field_catalog USING gst_struct CHANGING lst_fieldcat.
    FORM set_field_catalog  USING uv_tab TYPE slis_tabname
                         CHANGING  xt_fieldcatalog TYPE slis_t_fieldcat_alv.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = gv_repid
          i_internal_tabname     = uv_tab
          i_inclname             = gv_repid
        CHANGING
          ct_fieldcat            = xt_fieldcatalog
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " set_field_catalog_spec

  • Drill function implemented on Measure object column in the webi report

    Post Author: madan kumar
    CA Forum: WebIntelligence Reporting
    Hi,
    I have a small issue in my project.(Maintenance Project)I created a measure object in the fact table of the existing universe and saved and exported to the repository. (Say Measure object is D where D = A-(B+C))I inserted the same object as a column between two measure objects columns of a existing WebI report.
    The report has two hierarchies involved  - each hierarchy has dimension objects involved.I have checked with the hierarchies to make sure that measure object is not involved.The scope of analysis is None for the query.Version is BO XI R2.
    The issue is the Drill function is implemented on that particular new column.The drill function should be applicable only to the two dimension objects involved in the report.But this measure object column is also getting drilled once the Drill option is selected.I had to remove the drill optiion from the Measure object column.
    Can anyone help me on this issue...
    Thanks in advance...
    Madan Kumar

    Sushil
    Thanks for your reply. I did the date diff on the columns. It does not  break into 3 different groups. I am using a function called previous on the date column. So the report is like this
        DATE                           Pervious (DATE)                 Date - Pervious(DATE)
    01-01-2008 01:06              Null                                
    01-01-2008 01:12              01-01-2008 01:06               :06
    01-01-2008 01:18              01-01-2008 01:12               :06
    01-01-2008 01:24              01-01-2008 01:18               :06
    01-01-2008 01:30             01-01-2008 01:24              :06
    01-01-2008 01:36             01-01-2008 01:30               :06
    Basically we are breaking on the Date - Previous ( Date) column which does not work. I am not sure if there is a way to break this. I even tried it in Crystal REports XI and it does not work their either. Any help with this issue with be greatly appriciated.
    Edited by: Srinivasa Prabu on Aug 4, 2008 2:55 PM
    Edited by: Srinivasa Prabu on Aug 4, 2008 2:56 PM

  • Error in using aggregate function in Outer Query in Siebel Analytics

    Hi,
    When I am using aggregate function in outer query in Siebel Analytics I am facing error.
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 59111] The SQL statement must include a GROUP BY clause. (HY000)
    Bellow is the code.
    SELECT test1.username saw_0, test1.desg saw_1,COUNT (test2.querydate) saw_2
    FROM (SELECT POSITION.CBL username,
    POSITION.CBP desg
    FROM "CM"
    WHERE (POSITION.BPTCD = 'Marketing')
    AND (POSITION.EDate =TIMESTAMP '1899-01-01 00:00:00'
    ) test1,
    (SELECT users.UN username,
    measures."Query Count" querycount,
    measures."Max Total Time" secs,
    topic.db dashboardname,
    "Query Time".DATE querydate
    FROM "Plan"
    WHERE (topic."Dashboard Name" IN ('DS'))) test2
    WHERE test2.username = LOWER (test1.username)
    AND test2.dashboardname = 'DS'
    GROUP BY test1.username, test1.desg

    Should your query be a valid SQL query?
    I can't think that the query you have would be valid in a SQL plus window.
    Chris

Maybe you are looking for

  • How do you make a link to a particular album in Itunes?

    I would like to put a hyperlink on a webpage so that it goes directly to an album within itunes? Does anyone know how to do this? Thank you.

  • Document.form.element.value

    Hi All, I'm very new to javascript and had a quick question!  Her is a sample of my code. <script language="JavaScript" type="text/javascript">                   function fnShowText(txt)                     var x = document.getElementById(txt);      

  • Mega Stick 1 128mb - Problem :(

    Hi all! I'm italian, so i'm sorry for my bad english. Here's my problem: When i switch on my player, it read the title of the first song he found, then if i click any button, it do nothing! it only understand when i block the use of the buttons, disp

  • Help with Apache plugin for WebLogic on HP-UX

    Hi, I am trying to get Weblogic 5.1(w/sp8) on HP-UX 11 talking to Apache 1.3.19.21(port 8080) also on HP-UX 11 ( both on same box ). I have WebLogic listening on port 9001, and I followed the instructions to configure apache and weblogic. However whe

  • Issues with less than and grater than condition in prompts in OBIEE 11g,

    Hi all, i am facing the prombles with less than grater than conditions in OBIEE 11g. i created two date prompts with presentation variables datefrom and dateto and i used these prompts in fileters like this using grater than and less than symbol. fil