Filling the prompt values according to other dashboard invites

Hi friends,
In my scenariao, I need two guests of dashboard in my report. (1) exercise 2) date range

When the user selects an exercise of the first prompt, another prompt that is falling down and "in between" operator defined, should show only dates coming in this exercise. I don't use calendar here coz we only 26 Date for a year, and we want the user to select dates only from these dates.

Appreciate your help

Hi Toony, if I understand your situation, well, it's a solution. Correct me if I'm wrong.

If you want to restrict the list items in the second prompt according to the first prompt, you must check the box to 'Coercion' to line 2.
When you select an item in the Prompt1, the constraint for 2 Guest option, ensures to fill only list items that fall into the selected category of guest 1.
Ex: If Prompt 1 for the country and fast 2 belongs to the States. When you select US Prompt 1, then 2 Prompt shows only the United States.

If this isn't what you wanted, then you must explicitly pass the presentation 1 prompt Variable to the fast 2.

Taking the example above, States and countries.
Pass the value read from the country in a variable of presentation - pCountry and save this prompt as guest country

Create an another command prompt to the States. In the Show menu pull-down select the results of SQL and write a query something like that.
(Select distinct States of where country = ' @{pCountry} {U.S.}) "). Save this prompt under the guest of the State.

The way it works is when you select a country from the country prompt and press the GO button, it passes the variable pCountry for prompt presentation of State and triggers the query to fill the drop down.

I hope this helps.

SAI

Published by: Sai Kumar Reddiboyina, October 17, 2008 07:26

Tags: Business Intelligence

Similar Questions

  • Ask in the dashboard as link can filter based on the prompt values?

    Hi all

    In a dashboard, in a section using the prompt of commands and other section with the image object or the link and the given path was for a query created in the responses. The dashboard looks like a prompt command and below the link to the application.

    If I enter the prompt value, click on the link-> the pop up window and view the report but does not filter the data according to the prompt value.
    So, it is possible to do like that? If it is please share how to do this?

    Thanks in advance!

    Do not use the link or Image. Use the Guid. NAV. oppose instead. Link or Image may open in a new window, but the guests are not passed. GUID. NAV. object passes guests, which is what you want, but can not open in a new window.

  • Resize an image to fill the canvas size according to height?

    Hi guys,.

    Is it possible to resize a picture to fill the canvas size according to height?

    Currently when I place an image, it fits on width, being a landscape on a canvas portrait image I need to fill the height.

    Any suggestions on the best way to do it, maybe an action?

    Thank you

    Gavin

    If the image containing or the picture may vary in dimensions/dimensions a Scripting approach would seem prudent.

    In the contrary case, a conditional Action may be enough.

  • based on the prompt value see the FDF anayasis

    Hello

    I have a situation like this
    I use obiee 11g

    Based on the prompt value in him would like to show 3 different analayses.
    I mean that if the value of guest in the page has as abc data it should show the anlaysis1
    If the prompt value data as def it should show the anlaysis2
    If the prompt value data as the IGS, it should show the anlaysis3
    If the prompt value data as jkl it should show the anlaysis3

    Why 3 diff analysis is because I have my list 2 columns in each anayaiss and they are 3 different tables.

    One more thing

    Obiee do we have a show and a return value for a radiobutton/drop-down list. As show us abc how invites and returns 1. is possible?

    Thank you

    Published by: user123 on July 12, 2011 12:29

    You can have n number of reports, simply use the union all in the dash prompt sql results and this will give you the choice to select any report you want.

  • How to use the prompt value in the column of the report

    Hello

    I have a quick report column which is 'Adj Type' that contains values 10,20,30, and when the user selects Adj Type = 10, this value should be passed on to the column of the report.

    For example. Value in column 1 is 10 and this should multiple with the prompt value and production is expected to be 10 * 10.

    Ideas how to capture the prompt values in the column of the report for the calculation.

    Hi hsekar,

    (1) declare a presentation online in the section variable set Variable--> Variable--> P_var presentation

    (2) in Fx Table_name. Your_column * @{P_Var}

    @{P_var} {20} (20 is the default, it replaces when a user selects the value in the command prompt

    Thank you
    Saichand.v

  • How can we change the prompt values from default of other guests...

    Hi Experts,

    I have a quick-> DAILY, WEEKLY and MONTHLY status.

    If the user selects one of the default value in an another guest of Startdate and Enddateshould change, here Startdate and Enddate is Editbox/calendar control.


    Declared the variable of the presentation on the front line and in the second prompt SQL Results(Default to) I write

    + SELECT CASE WHEN ' @{almost} = END "WEEKLY" THEN VALUEOF (VAR_WEEKLY) +.

    but in the default language that he did not show the value of the variable repository...

    Please suggest me a solution its urgent

    Thank you
    saichand.v

    Hi Andre,

    Are you an error ("error creating Drop Down Values")? Or are you just see an empty default value?

    If you get an error, you have all the columns display in your default SQL formula? If this isn't the case, it's your problem. OBIEE won't let you build a logical SQL query without having a column of presentation in it somewhere.

    If this is your problem, try the following: SELECT CASE WHEN 1 = 0 THEN WHEN ' @{almost} "="WEEKLY"THEN from END VALUEOF (VAR_WEEKLY)

    Do not forget to replace SUBJECT_AREA and PRESENTATION_COLUMN with appropriate names. Condition 1 = 0 will never evaluate true, so it's as if she's not here, but OBIEE will see that there is a column of presentation of the formula and stop giving you the error.

    Good luck and if you found this post useful, please give points!

    Best regards

    -Joe

  • SQL: fill the same value, until it gets another NOT NULL value

    It's my main table

    CREATE TABLE MAIN (EMPNO INTEGER, DATE OF EFF_DT);
    INS IN HAND VALUES(1,'2013-01-01');
    INS IN HAND VALUES(1,'2013-03-01');
    INS IN HAND VALUES(1,'2013-05-01');
    INS IN HAND VALUES(1,'2013-07-01');
    INS IN HAND VALUES(1,'2013-09-01');
    INS IN HAND VALUES(1,'2014-01-01');


    It's my table of choice

    CREATE TABLE LKP (EMPNO INTEGER, TYPE_CD VARCHAR (10), EFF_DT DATE);
    INS IN LKP VALUES(1,'A','2013-01-01');
    INS IN LKP VALUES(1,'B','2014-01-01');

    My query:

    SALT
    M.EMPNO AS MAIN_EMP,
    M.EFF_DT AS MAIN_DT,
    L.TYPE_CD
    HAND M LEFT JOIN LKP L ON M.EMPNO = L.EMPNO AND M.EFF_DT = L.EFF_DT

    Result:
    MAIN_EMP MAIN_DT TYPE_CD
    2013-01-01 1A
    1 01-03-2013?
    1 05-01-2013?
    1 01-07-2013?
    1 01-09-2013?
    2014-01-01 1, B

    Expected result: (I need to get the same value, until I have a new value of research)

    MAIN_EMP MAIN_DT TYPE_CD
    2013-01-01 1A
    2013-03-01 1A
    2013-05-01 1A
    2013-07-01 1A
    2013-09-01 1A
    2014-01-01 1, B

    Please help me in this regard.

    Concerning

    KVB

    RaminHashimzade wrote:

    For 11g (ignores null values)

    SELECT M.EMPNO AS MAIN_EMP,

    M.EFF_DT AS MAIN_DT,

    NVL (L.TYPE_CD, lag(L.TYPE_CD ignore nulls) over (partition by M.EMPNO of M.EFF_DT order)) TYPE_CD

    HAND M

    LEFT JOIN LKP L

    ON M.EMPNO = L.EMPNO

    AND M.EFF_DT = L.EFF_DT

    order by 2

    ----

    Ramin Hashimzade

    It's not only 11g, which is also 10g

  • Fill the third variable according to date

    Dear all,

    In my database, visitdate and the variable pat_id is here. I want to fill the third variable one that went first, and then we V1, then V2, V3, V4 etc...
    If the patient went to the same date and same type of visit must be here (e.g.P004)


    type of visitdate pat_id
    P001 23/03/2010 V1
    27/05/2012 V3 P001
    P001 07/27/2010 V2
    P002 05/11/2010 V1
    P002 05/09/2009 V3
    P003 07/27/2010 V1
    P004 23/03/2010 V1
    P004 23/03/2010 V1
    P004 07/27/2010 V2
    P004 07/27/2011 V3


    Thanks in advance for your help

    Hello

    This sounds like a job for the analytical DENSE_RANK function.

    SELECT    pat_id
    ,       visitdate
    ,       'V' || TO_CHAR ( DENSE_RANK ()
                                 OVER ( PARTITION BY  pat_id
                                     ORDER BY         visitdate
                            )
                    )  AS type
    FROM      table_x
    ORDER BY  pat_id     -- statement ORDER BY clause is optional
    ,            visitdate
    ;
    

    If you would care to post CREATE TABLE and INSERT instructions for the sample data, and then I could test it.
    See the FAQ forum {message identifier: = 9360002}

    Published by: Frank Kulash on 29 January 2013 09:19

  • messageLovInput point fill the long values

    Hello
    I have a weird problem. I have a point messageLovInput which allows the user to select from the list of values, and when the user selects a value in the values list, the selected value must be indicated on the messageLovInput element. When I select some values, they are populated, but when I select for long values say more than 30 characters, they do not appear in the element is empty after the selection.

    I tried the maximum length of the following properties options = 240 under the tree data and length = 240 under the tree Visual. They did not work.

    Can you get it someone please let me know what I'm missing?


    Thank you
    Sunny

    Hello

    Please check if there's just no view attribute attached to the entrance of the LOV and if yes, then
    Check the size of this attribute as in the attribute properties and also check if
    the Update checkbox is checekd or not.

    Thank you
    Gerard

  • limit the view criteria values prompt values based on others...

    Hi all

    I want to use a component of af: query a selection of custom view. It is possible to restrict the values of a a command prompt with the values of other selected guests... (for example when the user choice department_location, only the departments at this location appears in the guest/combo ministries..)

    Thank you...

    Yes, this should be possible. Discover vidoe Shay https://blogs.oracle.com/shay/entry/dependent_lovs_in_an_afquery_c

    Timo

  • OBIEE11g - by passing the quick values between pages of dashboard

    Hello

    I'm working on OBIEE 11.1.1.3 and need help on the question of the value of guests passing between the dashboard pages.

    Scenario:
    -J' built 2 reports of the separate fact tables. Customers and products are the common dimensions between these fact tables. Temporal dimension is different for each of them.
    -J' have a dashboard and 2 pages it contains - Page1 and Page2.

    Page1:
    -J' have a dashboard guest with filters product, customer and year.
    -J' have a relationship with the product, customer, year and income of the columns.
    -J' have an Action - "Click here" link, which directs the user to page 2.

    Page2:
    -J' have a dashboard guest with filters product, customer and week.
    -J' have a relationship with the customer, product, week and Total Volume of the columns.

    I select some values in Page1 guests and generate a report. Then I click on the "Click here" action link, which will take me to page 2.

    Now, on page 2, I want the common guests (product and customer) have default selected as the values that were selected in the common guests on Page1. And, as a result, the report on page 2 must be generated.

    Tried solutions:
    1. added the below javascript in page 1, but the link that is clicked, does nothing.

    < script >
    function navigateToPage2()
    {
    DashboardChangePage ('path to Page2');
    }
    < /script >
    Click here

    2. I put a Variable presentation when you select a value in a prompt on Page1. But I am unable to set this as the default valie variable in the corresponding prompt on Page2.

    Ask what the experts kindly suggest how I can get this to work.

    Thank you and best regards,
    Rahul

    Published by: Rahul December 1st, 2011 05:10

    Hello Rahul,

    This is a bug in 11.1.1.3, application of patch 10381088 solve this problem.

    Bug 10381088: dash PROMPT VALS NOT KEPT WHEN you NAVIGATE TO OTHER PAGES IN the dashboard

    Rgds,
    DpKa

  • Problem with the prompt value

    Hi Experts,

    need help...

    I have a dashboard migrated to 10g and 11g.

    11 g, I have 4 guests, 2 guest with limited values of 1 invites, rd guest 3 having limited values of the 2nd invites on...

    When I select 2nd guest the 3rd guest showing null values. but in the dash 10g invite him 3rd display of values based on the 2nd quick selection...
    I am facing the problem with prompt 11 g.
    can you guide me how to solve this problem... is there something that I missed after the upgrade? or pls tell me to solve this problem

    Hi try once like that select two guests of dashboard for example the year, half of the year.

    In the half-year prompt, click on the 'Options' tab and check "limit values per Option.

    In this option, you can select column 'year '. Then, you can get data from half of year year corresponding column.

    Thank you
    Please indicate if this helps you...

    Published by: 979493 on February 25, 2013 03:16

    Published by: 979493 on February 25, 2013 03:17

    Published by: 979493 on February 25, 2013 03:17

  • control on the prompt value

    Hi all

    How can I control integration of values in the dashboard quickly?

    Thank you

    Example of validation from date to date quick (calendar):

    http://shivabizint.WordPress.com/2009/04/13/date-validation-for-dash-board-prompt-calendar-control/

    The procedure is similar for all guest field (edit box, etc.), edit and modify the javascript files.

    Concerning
    Goran
    http://108obiee.blogspot.com

  • view the prompt values in report answer?

    Hi all
    Can you tell me what is the best way to view the quick responses of the report response and how to view the dashboard prompt responses in dashboard?

    Sara

    Hi Sara,.

    You are right that this works in a dashboard. Presentation variables can only be set in several ways. Dashboard of the guests is the main method for setting & their update. A prompt response to request doesn't have the ability to update and set the variables of presentation.

    If you definitely want to do this in a request for a response, you have only a few options (not include presentation variables)
    (1) add the 'filter view' on demand. This isn't the most elegant solution, however, he accomplishes the purpose of show dates that were selected in the quick query
    (2) create 2 new logical columns to the RPD. Max (date) and MIN (DATE) based on the date that is filtered in the report. These you can reference in a narrative view to accomplish the display of dates.
    (3) create a javascript that reads the results of the query and displays the dates max. and min.

    I would recommend the method of the dashboard. Put printing shaped reports and dashboards provide more control over the display.

    To solve the problem in your dashboard. Follow these steps:
    (1) open your report
    (2) remove your existing filters on 'Time D0'. "' T00 calendar date.
    (3) CTRL + click on "D0 time." "' T00 calendar date" to add a new filter
    4) click on Advanced-> convert this filter in SQL
    (5) paste the following in: "D0 time." "' T00 calendar date" BETWEEN "@{DATEFROM}' AND ' @{DATETO}'"
    (6) save your report and test your dashboard.

    I don't have a working version of the DPR SampleSales upward, so I can't test the above syntax, but it must be correct. Just give it a shot and tell me if it works properly. I know that I said earlier that the variables of presentation work only with "is equivalent to / is in", but what I meant is that dash invite you only set you set presentation variables when the operator is "is equivalent to / is in. When you use a variable presentation, you can implement using any carrier you want. Hope that clears up any confusion.

    Good luck and if you found this post useful, please give points!

    Best regards

    -Joe

  • Selecing the specific values for guest of dashboard

    Hello
    I want a drop down in the guests of my dashboard which contains values between 1 and 99. How can I reach it? Note that these values is not a column of presentation, so I want that they using the SQL result. Any idea?


    Thank you.
    Issa Khan

    Control: Drop-down list

    To get the numbers from 1 to 99 write in Show/SQL results:

    SELECT RCOUNT (TIMES. TIME_ID) OF "my presentation space.
    WHERE RCOMPTE (TIMES. TIME_ID) BETWEEN 1 AND 99
    ORDER BY 1

    Use any table.column with distinct values more or equal to 99, I used TIMES. TIME_ID.

    And set the variable of presentation.

    Concerning
    Goran
    http://108obiee.blogspot.com

Maybe you are looking for