Cascaded Prompts in OBIEE 10g

Hello friends,
Can some help me to understand how to implement cascaded prompts in OBIEE 10g? My situation is:
I have three Prompts P1,P2 and P3
P1: Values are comming from a table
P2: Shows the value from a Stored Procedure, such that one stored procedure takes input parameter from P1
P3: Shows the value from a stored procedure , such that one stored procedure takes input parameter from P2
After selecting value from P3 , I will run the report. So here P2 is based on P1 , P3 is based on P2, ie cascaded.
I have tried this by checking the box Constrain for P2 and P3 (red some where that if we make a prompt with checked the Constrain box then its value depends on the previous prompt)
But for me this is not working even if check the Constrain box.
Can I some one help me to do this.
Thanks,
Mithun

Hi Krish,
Value of P1 Im passing to a stored procedure (say SP1) to populate P2, same way values in the P2 (which is the result from SP1) I'm passing to SP2 which in turn gives the values in P3.
I'm using the SP1 and SP2 in the Physical layer as
EXEC SP_NAME @parameter1 = 'VALUEOF(NQ_SESSION.ID)'
Here ID is the session variable I have created.
And in the Dashboard, I have created the prompt P1 (on a field which is from a table), then the value is passed to the variable ID by choosing the 'Request Variable' option in the Set Variable drop down.
Same way I did for other SP by passing the value from P2..
Here for P2 and P3 I have checked the box for constrain so that value of P2 is depended on P1 and value of P3 is depended on P2.
But my problem is this method of cascading is not working.. that is P2 value is not changing based on the value I'm selecting in P1 ans same way for P3...
Hope my issue is clear to you..
Thanks,
Mithun

Similar Messages

  • How to realize this reqirement in the dashboard prompt in OBIEE 10G?

    Hi,
    I have a new query about dashboard prompt in OBIEE 10g..
    All below is needed to Operator in the dashboard prompt.
    We have 4 columns, 4 columns using multi-select type need to constrain together and need to show value which is related with product..
    e.g.
    Now I display "REGION" column using multi-select in Control, and I need to show data which product name is not null. After I add "where product name is not null" in the SQL results in Show, then I cannot use the Constrain box.. and I cannot set any variable if I using multi-select type..
    So anybody have any idea about this?
    Your reply will be highly appreciate..
    Regards,
    Anne

    Hi Anne
    User Input type as " Multi select prompt" keep it with constrain option then apply below query
    apply like this kind of SQL query in Default selection --->SQL result section
    SELECT "MX_PORTFOLIO_STATIC"."MT_BU_Level1" FROM "Position" where "MX_PORTFOLIO_STATIC"."MT_BU_Level1" is not null
    Thanks
    Deva

  • Cascading prompt in obiee 11g

    Greetings All!!
    We are trying to create the cascading prompt. The region prompt has all column values and when we click on all column values,
    we do not want state prompt to display any values. In obiee prompt, there is an option to limit values by prompt ,however it does not
    work for all column values since we do not want to show the state values after clicking column values.
    Any feedbacks are highly welcome.
    region 1
    region 2
    all column values
    state1
    state 2
    Thanks,
    Sanjay

    Hi,
    Placing the image file in /l_en folder dint work for me too however you can place them inside the following paths and restart the services,
    1)
    \MW_HOME\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\_WL_user\analytics_11.1.1\silp1v\war\res\s_blafp\images
    2)
    \MW_HOME\Oracle_BI1\bifoundation\web\app\res\s_blafp\images
    You can then call your file with the url, http://hostname:port/analytics/res/imagefile.jpg
    Its worked for me, let me know in case of any issues.
    Thanks
    Deva
    Edited by: Devarasu on Sep 18, 2011 1:33 AM

  • How to Personalize prompts in OBIEE 10g

    Hi,
    I have a requirement that if a user "A" log in, and access dashboard he should be able to see a prompt with default values based on his preference. For example user "A" wants to see a report based on a prompt with two columns "District" and "Year" with a default value of "East" as District and "2007" as Year
    When user "B" log in, he should be able to see a prompt with a default value of "West" as District and "2009" as Year
    Can you please tell me how to implement this.
    Thanks

    Hi,
    One way to acheive this requirement, is to maintain an external table with the username and two other columns one having the value for district and other for the year. Make sure the data type of the prompt column and data type of the year and district column in the external table are the same. When you create the prompt, under default value, select sql results and use the following sql.
    select year from externaltable where upper(username)=upper(':USER');
    repeat the same for district prompt.
    Hope this helps.
    Thanks,
    -Amith.

  • Dynamic Change Of Column Name based On The Dashboard Prompt in OBIEE 10g

    Hi All,
    I have a dashbord prompt called "calendar date". And, my report having some columns called "Product Name", "Code", "Yest Balance", "Today Balance". Now, while displaying the report in the dashboard, instead of "Today's Balance" they want to see the date which we have selected in the promt as a column name (each time we select a date in the promt, that would appear as a field name in stead of "Today's Balance" but values will be same (should show the balance for that date).
    Please advice.
    Thanks,
    BK.

    yeah...you are correct....these are workaround ...no out of box solution.
    Take the MAR11 target example in this current month is MAR 11 is populated by a session variable which gives you always current month.
    Second using union -combined query creating a header from one report and results from other report.
    But, coming to your req.......what ever the value selected in the calendar date that should come up in the column heading. so this is not possible with variable because for date of calendar image type you can not set a presentation variable. If not you can use a REQUEST VARIABLE.
    You can try 2nd way creating 2 reports one for header other for value.
    You can choose based on your flexibility. Instead you are showing the report along with prompt. I would suggest use appropriate name as 'selected date value'.

  • Cascade dashboard prompts in OBIEE 10.1.3.4

    Hi,
    Is there any concept of Cascade dashboard prompt in OBIEE 10.1.3.4.
    I have a requirement as described below -
    Start date and End date dashboard prompts. (Calendar) - Results of Start Date and End Date selected are captured in the Presentation Variables Startdt, Enddt respectively.
    Promotions dashboard prompt (multi select) - This Prompt should show the results from the SQL Query -
    SELECT "- National Promotion - Canadian Market"."National Promotion" FROM "SPDM" where "- National Promotion - Canadian Market"."NP Status"='Active' and "- National Promotion - Canadian Market"."NP Region"='Canada' and "- National Promotion - Canadian Market"."NP Type"='National' and "- Calendar".Date BETWEEN DATE '@{Startdt}{06/28/2010}' AND DATE '@{Enddt}{12/31/2010}'
    But the results are not populating in the Promotions Prompt. Can anyone help me in fixing this.
    Thanks in advance.
    Regards,
    Sri

    Hi
    This is a known OBIEE bug.
    Please refer http://gerardnico.com/wiki/dat/obiee/presentation_variable_initialization
    With a Multi Select dashboard prompt
    You cannot set a Presentation Variable in a Multi Select dashboard prompt in OBIEE 10g. This is expected behavior. OBIEE 10g is working as designed. A Presentation variable can assume a single value. Because of that, presentation variables are not available when using multi select prompts. OBIEE 11g will introduce the ability to set Presentation Variables when using multi select prompts. In 10g you can try as a workaround using more than 1 prompt.
    I don't more work arounds than listed here:
    http://obiee-blog.info/answers/multiselect-prompt-presentation-variable/
    But, these work arounds might not suffice your issue.
    Please let me know if you come up with a better solution.
    Good Luck.
    Chandu.

  • Switch Section in a dashboard based on the selection of Prompts (OBIEE 10G)

    Hi All,
    I have a requirement : I have to switch Section in a dashboard based on the selection of Prompts (OBIEE 10G).
    Lets say I have 1 report in section1 and another report in section2 of a dashboard. I have a dashboard prompt,now say when the user does not select any value in a prompt I have to show section1 and when he selects values in a prompt then I have to show section2 of the dashboard. I tries this using Guided Navigation Link and presentation variable but there is a limitation that I have to select only one value in the prompt as i have created presentation variable.
    But the client wants the prompt as Multi Select. in this case I can 't use the presentation variable.
    How can I fulfil this requirement.Please let me know.
    Thanks,
    Krishna

    How you create your multiselect prompt? Is it based on a column? Using multiselect prompt you'll get an issue in this case. The prompt behavior with choosing all values and choosing nothing is equivalent. But your requirement has different behavior lines.

  • Issue in Dashboard Prompt of OBIEE 11g

    Hi,
    I had recently migrated from OBIEE 10g to OBIEE 11g.
    I had found that there are lot of things which were working on OBIEE 10g are not working in OBIEE 11g.
    For Eg:
    I have scenario where i have 2 dashboards with different dashboard prompts.
    - *1st Dashboard*: I have prompt with 4 columns Year, Month, Qtr and Week. I can filter the data based on the selection of prompt.i.e Summary Report showing all KPIs and when clicked on the any of the KPI it goes to Below report which shows the graphical view of past weeks data.
    - Report: Here i show all the week Ids in the Graph format and when clicked on the any week id it navigates to 2nd Dashboard(below) with appropriate week populated in the prompt and show the detailed records.
    - *2nd Dashboard*: I have prompt with 5 columns Year, Month, Qtr, Week and Day of the Week with some detailed report. Here the only Week Id should be pre populated and show data based on the week id selection in the above report.
    The issue here in OBIEE 11g is, The month Id which was selected in 1st Dashboard prompt is also getting pre populated into the 2nd dashboard prompt. Which should not happen.
    Note: This was working fine in OBIEE 10g.
    Is there any way to fix this issue in OBIEE 11g.
    Regards
    Shyam
    Edited by: user9954342 on Dec 23, 2010 2:01 AM

    Hi Bala,
    Thank you for your response.
    I had tried that and resolved my problem but it was impacting other reports i.e
    I have other reports in 1st Dashboard with different tabs, Here i want the prompt value to be persisted across the reports in same dashboard so that when i go to other tab with in same dashboard the prompt value should be pre-populated and the data should be filtered against that.
    Now if i change the scope to page then i will be loosing this functionality.
    It was working on OBIEE 10g and i lost this after migrating to OBIEE 11g.
    Can you please help me in this regard.
    Regards
    Shyam

  • Problem in navigating from one report to another in OBIEE 10g

    Hi,
    I am facing an issue with OBIEE 10g while applying navigation on my reports.
    Lets suppose I made a report showing list of all items(in broad categories) sold on a particular day, say Dairy, Frozen Foods, Chocolates etc.In this report there is a date prompt showing the date of sale.
    Now there are certain items that are distributed within these categories, like dairy includes milk, cheese, butter etc.
    Hence, my navigation should be like when I click on a particular item category, the control should move on to the report which has all items under that particular category and the prompt for this report should show the same date as passed in the previous report.
    But sometimes what happens is that on clicking the navigation from first report to the second one, the date is not persisting in the prompt. I say sometimes because at times the navigation does work correctly. This is a bug of Obiee or something which is giving unexpected results.
    Kindly help with your suggestions.
    Thanks
    Ankita

    Ankita,
    This is not a bug in OBIEE...I'm sure something is missing. If this is working for some cases and not working for some other case then you will need to find the root cause. Try in bits and pieces...Step by Step with some dates (unit testing). Ideally this shud work properly.
    For an instance try with OBIEE drilldown feature and not with navigation with a single sale date and observe the behavior.
    Hope its clear...

  • D2k report query , want to develop in obiee 10g

    Hi,
    I have a d2k report query, the result what i am getting in d2k report can i get the same result in obiee 10g.
    my query in d2k report auery is like :
    select a.vndr#,b.vndr_name,a.cust_type_cd,c.cust_type_e_dsct,a.branch_cd,d.branch_e_name,(sum(nvl(a.sales_total_value,0))-sum(nvl(a.return_total_value,0))) net_sales_value,count(distinct(a.cust#)) cust_count
    from cust_net_sales_tmp a,vendor b,cust_type_codes c,branches d where
    a.vndr#=b.vndr# and
    a.branch_cd=b.branch_cd and
    a.cust_type_cd = c.cust_type_cd and
    a.cust_type_cd between :f_ctype and :t_ctype
    group by a.vndr#,b.vndr_name,a.cust_type_cd,c.cust_type_e_dscr,a.branch_cd,d.branch_e_name
    order by a.vndr#,a.cust_type_cd,a.branch_cd
    thank you.
    please suggest..

    Hi,
    The presentation variable is being passed correctly, but still the date value is not persisiting.
    I have two prompts, both having presentation variables passed into them;One of the prompt value is being persisted but the other one(here date) is not.
    I am not able to justify this issue as the problem is very vague. I dont see any reason for this issue to come up.
    Anyways I am still trying to figure out the problem.
    Regards
    Ankita

  • OBIEE 10G Direct Database Request

    Hey Everybody,
    I'm on OBIEE 10G in a solaris environment and I'm connected to Oracle 11.2 database. I'm having trouble getting the correct dataset returned from a Direct Database Request from a dashboard that users input data. I have the dashboard created and have all the dashboard prompts setup as prestentation variables. My DDR sql looks like this:
    Select from table where Batch_ID = '11' and PID = '1234' and Reported_Date = '01011900'*
    My issue is that I want the Reported Date dashboard prompt to be a optional field that user do not have to enter on the dashboard. However, if a user doesn't enter a value on the dashboard then an error is thrown because the DDR sql is expecting a value for the Reported Date.
    I've tried to enter the OBIEE standard "%" as an all choices option in the database and changed the DDR sql to look like this:
    Select from table where Batch_ID = '11' and PID = '1234' and Reported_Date like '%'*
    However, this throws an error saying an unidentified characters has been used even though if I run this above sql query directly against the database myself it gives back the wanted dataset.
    Anybody ever ran across this situation before?
    Thanks,
    Jeff

    Here is the code I used as my DDR. When I leave the @reported_date prompt empty it doesn't return anything. Thanks.
    select Batch_ID_0,
    Batch_Seq_Nbr_1,
    AC_TL_Seq_Nbr_2,
    Contributor_ID_3,
    Account_Nbr_4,
    Account_Type_5,
    Account_Status_6,
    Opened_Date_7,
    Reported_Date_8,
    Closed_Date_9,
    Current_Balance_10,
    AC_Assoc_Seq_Nbr_11,
    ECOA_Code_12,
    SSN_13,
    Phone_Nbr_14,
    Birth_Date_15,
    Last_Name_16,
    First_Name_17,
    Middle_Name_18,
    Generation_Code_19,
    Line1_of_Addr_20,
    Line2_of_Addr_21,
    City_22,
    State_23,
    Zip_24
    From (
    Select Ac_Trade.Batch_ID Batch_ID_0,
    Ac_Trade.Batch_Seq_Nbr Batch_Seq_Nbr_1,
    Ac_Trade.AC_TL_Seq_Nbr AC_TL_Seq_Nbr_2,
    Ac_Trade.Contributor_ID Contributor_Id_3,
    Ac_Trade.Account_Nbr Account_Nbr_4,
    Ac_Trade.Account_Type Account_Type_5,
    Ac_Trade.Account_Status Account_Status_6,
    Ac_Trade.Opened_Date Opened_Date_7,
    Ac_Trade.Reported_Date Reported_Date_8,
    Ac_Trade.Closed_Date Closed_Date_9,
    Ac_Trade.Current_Balance Current_Balance_10,
    Ac_Assoc.AC_Assoc_Seq_Nbr AC_Assoc_Seq_Nbr_11,
    Ac_Assoc.Ecoa_Code ECOA_Code_12,
    Ac_Assoc.SSN SSN_13,
    Ac_Assoc.Phone_Nbr Phone_Nbr_14,
    Ac_Assoc.Birth_Date Birth_Date_15,
    Ac_Assoc.Last_Name Last_Name_16,
    Ac_Assoc.First_Name First_Name_17,
    Ac_Assoc.Middle_Name Middle_Name_18,
    Ac_Assoc.Generation_Code Generation_Code_19,
    Ac_Assoc.Line1_of_Addr Line1_of_Addr_20,
    Ac_Assoc.Line2_of_Addr Line2_of_Addr_21,
    Ac_Assoc.City City_22,
    Ac_Assoc.State State_23,
    Ac_Assoc.Zip Zip_24,
    row_number() over(order by Ac_Trade.batch_id) row_limit
    From owb.Ac_Trade, owb.Ac_Assoc
    Where Ac_Trade.Batch_Id = Ac_Assoc.Batch_Id
    And Ac_Trade.Batch_Seq_Nbr = Ac_Assoc.Batch_Seq_Nbr
    And (Ac_Trade.Batch_Id = ( @{batch_id}{'1'} ))
    And (Ac_Trade.Processor_Id = ( @{processor_id}{'1'} ))
    And (Ac_Trade.Reported_Date like (CASE WHEN '@{reported_date}{}' = '' THEN '%%' ELSE '@{reported_date}' END) ))
    Where Row_Limit <= 25
    Order By Batch_ID_0,
    Batch_Seq_Nbr_1,
    AC_TL_Seq_Nbr_2,
    Contributor_ID_3,
    Account_Nbr_4,
    Account_Type_5,
    Account_Status_6,
    Opened_Date_7,
    Reported_Date_8,
    Closed_Date_9,
    Current_Balance_10,
    AC_Assoc_Seq_Nbr_11,
    ECOA_Code_12,
    SSN_13,
    Phone_Nbr_14,
    Birth_Date_15,
    Last_Name_16,
    First_Name_17,
    Middle_Name_18,
    Generation_Code_19,
    Line1_of_Addr_20,
    Line2_of_Addr_21,
    City_22,
    State_23,
    Zip_24

  • Cascading Prompts

    Hi all ,
    I built a Cascading Prompt report in Answers and intergrated in one of my dashboards.
    Now in Dashboard I want it to show as a report but the compelte report dispayed as simple Prompt (with 1st input ) .When I click on 1st input the prompting process is getting opened in different window.When I enter 2nd ,3rd and 4th inputs then the real report will appear in the same new window. Once I report and click on return it then takes me to Dashboard.
    Now How do I show this complete process in dashboard only and I do not want these Cascading reports opens in a different window.
    Is there any better way to create/handle cascading prompt reports ..any new ideas like can we create a dashboard prompt and pass it to reports .Any suggesstion are most welcome or come well !!
    Thanks
    SS

    hi
    speaking for the bibeans: the querybuilder today offers this type of selections, by using the various hierarchy selction tools combined with the add/keep/remove/replace operator you can do this.
    of course you can built your own "navigation" tree as well
    for discoverer: there are changes in the upcoming 10g release regarding the grouping and combination of paramaters, but to be on the safe side, address this question in the discoverer forum as well
    regards,
    thomas

  • Compound layout in View selector possible in OBIEE 10g but not in OBIEE 11

    Hi!
    I am Claire. I have created 3 compound layout and I wanted it to be included in my view selector. I noticed that I is not possible in BI 11g but was previously possible in Bi 10G. Kindly help me on this matter. The compound layout is not appearing in the available views in the EDIT VIEW selector Page.
    Your Prompt response on this matter is highly appreciated.
    Thank you.
    Claire

    Claire,
    This is no longer possible. And actually in OBIEE 10g it was only possible in the Original Compound layout. Meaning that if you created compound layout #2 you could not leverage "Compound Layout" (the original / default one) inside of a view selector or as a view inside "Compound Layout #2".
    If you look at the OBI 10g documentation you will see that it states that a Compound Layout is a "view" which can contain other views.
    In the OBI 11g documentation it states that the Compound Layout is a container.
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e10544/appbuir.htm#BIEUG818
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e10544/analyses.htm#CJABIHGC
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e10544/appbuir.htm#BGBIDGDA
    This new nomenclature and definition is the delineating factor and the reason you can no longer achieve that functionality in the same way you did in 10g
    I hope that helps.
    Cheers,
    Christian
    http://www.artofbi.com

  • Constraints for presentation variable in obiee 10g

    Hello Guys,
    What are the constraints for presentation variable in obiee 10g?
    requirement: I am unable to find the variable option, when i selects CONTAINS operatior, during creating the prompt.

    Hi,
    In 10g, a dashboard prompt can only set presentation variables when you use the "is equal to/is in" operator. Also, it is not available in case of MultiSelect prompt.
    Refer to the below thread for some alternate solutions:
    visualize prompt values into report Answer?
    Thanks

  • Conditional Prompts in OBIEE

    Hi all,
    Can someone tel me what is conditional prompt in OBIEE and how to use it.. I searched but could not find proper references. Can anyone help?
    Thanks
    Surya

    Hi Surya,
    You can make use of guided sections in 10g,check out David's response in the below link,
    Conditional Prompt Column
    Rgds,
    Dpka

Maybe you are looking for

  • Ipod not recognised by computer or i-tunes,

    My Ipod ran out of battery and now it won't reset or turn on. It's not recognised by my computer or i-tunes. I think its died can someone please help me try and bring it back to life. Any suggestions will be welcome thanks.

  • No drivers installed on windows xp

    Hi, I need help!! i installed windows xp with boot camp. Then i tryed to install the drivers of the mac os dvd.. but somehow it didnt work! i installed the update 2.1 but there were still drivers missing. The drivers missing (yellow in windows hardwa

  • I just upgraded iMac to 10.6.8 and now saved items open with "Color-Sync Utility". How can I change it back to preview?

    I just upgraded to 10.6.8 and my saved files open with "Color-Sync Utility". How can I change it back to Preview?

  • Need to reset password, lost install disc

    I have a wireless router, Model WRT54GS v7.  I moved recently, and I need to reset the password to connect wirelessly.  I've lost the install discs during my move.  What do I need to do?

  • 3GS and OS 4.0.1

    Here are my issues with OS 4.0.1. Also had some with 4.0. With 4.0.1 doing anything seems to take longer now, everything is loading slower. Calls are being dropped more but I do not have the rebooting issue as I have read. With 4.0 and 4.0.1 When eve