Prompts.Multi Select dashboard

Hi all

I have a requirement in our project...

Requirement goes like this...

Based on the selection of a country... the cities in the country shud appear in guest of himself...

For Ex... If Cntry has cities A, B, c... Z and CntryB has cities AA, BB, CC, ZZ...

I took Cntry and quoted in the dashboard invites you...

In the dashboard invites... I stated a varaiable presentation for cntry like cntry_pv... and variable presentation for a city like city_pv

Now my requirement is fast when the user selects the A country then in the city only cities related to shud country displayed A...

How can I do this...

Appreciate your immediate help...


Kind regards
mithuu

Hello

at the prompt of your city... use
force option checkbox enabled... under the display option
Now check your guests...

Hope this helps you...

Thank you & best regards
Kishore Guggilla

Tags: Business Intelligence

Similar Questions

  • 10.1.3.4.2 - Multi Select guest - research shows too many results

    Hello

    Someone sees a situation...

    When you use a multiple selection of dash prompt, the prompt has the following clause to return only the code with the status of N = select ID from table where status in (' ' n ') and it works fine

    but in the guest even if we use the code names of search for example Contains "XXX", it will return all codes regardless of status, though even she must return only status = N codes,.

    any ideas...

    Thank you

    Hello

    I assume you are using the available inside the Multi selection prompt search filter?

    If this is the case, then this is how OBIEE multi select work. When you apply the search condition in mutiselect, it generates a new query with the condition provided in exculdes and the search filter no matter what external sql filter.

    If you want to keep the filter at the prompt, use condition you be the guest (fx). It will be useful.

    See you soon

    HN

  • Prevention of ListView, select the element for multi select

    How do you keep a user to select specific items during a statement select multi. You can use the MultiSelectHandler to do?

    I have essentially two types of elements. Setting caching and QUERIES.  When the user performs a Multi Select on a cached item... I want only their selection to other cached items.  Even if the user is running a Multi Select statement on an item not cached... I want only their selection of other items not cached.

    Is anyway to do this?  Been Googling for half an hour and can't find that everything about this use case.

    Since I use an element of custom list, I went to this subject a little differently. My CustomListItem implements a ListItemListener. I've implemented the select method as such.

    void CustomStandardListItem::select(bool select) {
        bb::cascades::ListItemListener* lil = static_cast(m_sli);
        bb::cascades::ListView * view = qobject_cast(this->parent());
    
        if (view->multiSelectHandler()->isActive()) {
            bool isCached = view->property("isMultiSelectTypeCached").toBool();
    
            if (m_cachedImageView->isVisible() && isCached) { // is cached.. allow selection of other cached objects only
                lil->select(select);
            }
            else if (!m_cachedImageView->isVisible() && !isCached) { // is not cached.. allow selection other cached objects only
                lil->select(select);
            }
        }
        else {
            lil->select(select);
        }
    }
    

    The dynamic property 'isMultiSelectTypeCached' is just a bool on ListView value that gets defined the type of ListItemComponent. It could have just as well been the type of ListItemComponent.

  • I need a box multi select drop-down list or list of selection with image or icon faclitliy

    Hello

    I tried to find a plugin or a jquery plugin that allows to perform the task of

    have a list of selection with images and there should be a facility such as multi select.

    How this can be accomplished. One have they implemented it in any of their application

    Any information will be greatly appreciated.

    Thank you

    pauljohny100 wrote:

    Hello

    I tried to find a plugin or a jquery plugin that allows to perform the task of

    have a list of selection with images and there should be a facility such as multi select.

    How this can be accomplished. One have they implemented it in any of their application

    Any information will be greatly appreciated.

    When ask questions user interface-related still State (at least) the full version of APEX, the theme and the version of browser compatibility / required.

    See the plugin jQuery Select2 , for which there is a plug in APEX .

    Pre-plugin when we have implemented requirements like this using a model report, CSS and personal...

  • Table multi-selection disabled the check boxes in ADF 10 g

    I think I met an obstacle when you work with a multi-selection table in 10 ADF.

    The selection itself works very well. However, my problem is to try to disable some of these boxes several selections. These boxes are disabled using the expression language. Once disabled, I can always choose these rows in the table using the button 'Select all' created by multiple selection facet. On the page sent, the disabled lines are not recognized as being selected, which is good. However, they always seem to be selected on the front-end server, which would be confusing for users.

    <af:table emptyText="No roles were found"
              binding="#{backing_userRoles.tableRoles}"
              id="tableRoles"
              value="#{backing_userRoles.userRoleList}"
              var="userRole">
                            <f:facet name="actions">
                              <af:commandButton text="Copy Roles"
                                                binding="#{backing_userRoles.cmdCopy}"
                                                id="cmdCopy"
                                                action="#{backing_userRoles.cmdCopy_action}"/>
                            </f:facet>
                            <f:facet name="selection">
                              <af:tableSelectMany text="Select items and ..."
                                                  binding="#{backing_userRoles.tableSelectMany1}"
                                                  id="tableSelectMany1"
                                                  rendered="#{backing_userRoles.managerFlag}"
                                                  disabled="#{userRole.role.autoGrantedFlag eq 'Y'}"/>
                            </f:facet>
    

    multiselecttable.PNG

    So as you can see, the disabled check box has been selected even when disabled. Any ideas on how to change this behavior? Or maybe just get rid of the default generated 'select all ' | 'Select none' orders?

    Thank you

    Cody

    Or, remove selection facet and make sure you have a selection logic - that is to say, some transient Boolean attribute of VO enabled/disabled state, and you have Select All/Select none

  • How multi select documents out for signature and remove them?

    During the test a form, I sent many forms for signature. Now they clutter the page manage. Is there a way multi SELECT and delete them without doing them one by one?

    Hello Balusha,

    From now on, we do not have bulk option remove documents on the tab manage in E-Sign. But, I probably took this as a feedback.

    Kind regards

    -Usman

  • How to compare 2 lists of box-multi-select/shuttle APEX (e.g.1:2:3 and 3:1:2) for equality?

    I want to validate 2 selections of list of shuttle for equality. for example

    1:2:5:7:18:3

    and

    1:5:7:2:3:18

    should be treated as equals and therefore valid (i.e. same selections but in different order)

    While

    1:2:5:7:18:3

    and

    1:2:18:9 are not equal and would fail validation.

    If I use the function string_to_table() on the two lists, then I need sort the associative arrays and then compare them for equality.  Any suggestions on the best way to do it?

    Thanks in advance

    PaulP

    Thanks for all help you, but I decided to stay with string_to_table APEX tables and keep things simple.  I decided to return Varchar2 ('TRUE', 'FALSE') instead of boolean (TRUE, FALSE) so I could use the function in a SQL WHERE clause.

    Here's my working solution

    create or replace FUNCTION CheckMultiSelectStringsEqual(
          p_string1    IN VARCHAR2 ,
          p_string2    IN VARCHAR2 ,
          p_separator IN VARCHAR2)
        RETURN varchar2
    ------------------------------------------------------------------------------------------------------------------
    -- This function accepts 2 multi-select/shuttle box strings in the format '1:2:3:5:12:4'
    -- and a string separator i.e.':' and irrespective of the order of individual selections within
    -- the string, returns 'TRUE' if the strings are equal else returns 'FALSE'.
    -----------------------------------------------------------------------------------------------------------------
      IS
        l_table1 apex_application_global.vc_arr2;
        l_table2 apex_application_global.vc_arr2;
        v_return varchar2(8);
      BEGIN
        if p_string1 is null or p_string2 is null or p_separator is null then
          raise_application_error(-20001,'USAGE: CheckMultiSelectStrings() function requires 2 not null strings and a separator character' );
        end if;
        l_table1 := apex_util.string_to_table(p_string1, p_separator);
        l_table2 := apex_util.string_to_table(p_string2, p_separator);
        if l_table1.count() <> l_table2.count() then
            return 'FALSE';
        end if;
        <>
        FOR i IN 1..l_table1.count() LOOP
            FOR j IN 1..l_table2.count() LOOP
               if l_table1(i)=l_table2(j) then
                 v_return:='TRUE';
                 continue OUTER_LOOP;
               else
                 v_return:= 'FALSE';
                 continue;
               end if;
            END LOOP; -- FOR j IN 1..l_table2...
            EXIT OUTER_LOOP WHEN v_return = 'FALSE';
        END LOOP; --FOR i IN 1..l_table1.
        RETURN v_return;
      END;
    

    -= == HERE IS THE TEST FOR THE FUNCTION CODE =.

    set serveroutput on
    declare
    v_return varchar2(8);
    begin
    v_return:= CheckMultiSelectStringsEqual('1:2:3:4','2:1:3:4',':');
          if v_return='TRUE' then
              dbms_output.put_line('Strings are equal');
          else
              dbms_output.put_line('Strings are NOT equal');
          end if;
    end;
    

    Hope this helps someone...

    PaulP

  • Multi selection

    Hello
    Earlier I used item type selection with select unique values, list according to my condition in where clause that I wrote the condition like that
    NVL (publish_id,: P91_PUBLISH_ID) = NVL(:P91_PUBLISH_ID,publish_id) but my requirement is multi selection. How could I write same condition for multi selection.

    Please guide me to write the same condtion for multi selection.



    Concerning
    Veronica B

    Hello

    Try

    AND (instr(':' || NVL(:P1_DEPTNO, e.deptno) || ':', ':' || e.deptno || ':') > 0 OR e.deptno IS NULL)
    

    Kind regards
    Jari

    -----
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Filtering table using Multi Select choice

    Hello gurus,

    I want to filter a table column that is inspired by LOV using list Multi choice to select the filter option.

    Can I filter the table by using the only choice by following below tutorial in the ADF Code corner:

    016 how to customize the filter ADF Faces Table

    Someone can provide any link or guide to implement Multi Select choice filtering list in the tables.


    Thank you
    Buxant

    Hello

    will tomorrow publish sample 98 ADF Code corner: http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html#CodeCornerSamples

    Frank

  • The analysis through the Multi selection of values in a PL/SQL procedure

    Greetings,

    This should be an easy one for either of you, experts of PL/SQL. I'm not, so I'm not sure how to code this upward.

    I have a Multi selection page element and am passing the value of it to a routine of PL/SQL as a parameter. I am able to use the value if I spend only a value of my procedure, so I work. But not with multiple values, I need the code in the procedure to loop through the values. How do I code that a period? The procedure is relatively short and is included below. p_cell is multivalued parameter.

    Oh Yes... Probably, you need to know this. The values are coming like this - 1-3:2-3:3 - 3:5:6

    In addition, values are the coordinates XY of a grid I have a picture on the page. The routine removes certain cells (1-3, etc.) of the grid. The grid is created using HTML, so I have to remove lines of HTML to remove a cell in the grid. Just in case this is useful.

    THX, Tony

    = = = = = = =

    create or replace
    procedure qcis_remove_grid_cell (p_id in NUMBERS, p_cell IN VARCHAR2) as
    number of V_POSITION;
    number of v_position_from_end;
    number of v_line_start;
    number of v_line_end;
    number of V_LENGTH;
    CLOB v_html;

    BEGIN

    BEGIN
    Select imagemap_html in the v_html of qcis_im_template_draft
    where header_id = p_id;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    v_html: = NULL;
    END;

    V_LENGTH: = length (v_html);
    V_POSITION: = INSTR (v_html, "alt =" "|") p_cell |' « ') ;
    v_position_from_end: = (v_length - v_position) *-1;
    v_line_start: = INSTR (v_html,' < area shape ', v_position_from_end)-1;
    v_line_end: = INSTR (v_html,'/ > ', v_position) + 2;
    v_html: = substr(v_html,1,v_line_start) | substr (v_html, v_line_end);

    UPDATE qcis_im_template_draft SET imagemap_html is WHERE header_id p_id = v_html;.

    END qcis_remove_grid_cell;

    Published by: hidden November 1, 2011 08:01

    Not sure, I understand your need, but it sounded like you must decrypt a string in a set of rows. If so, I will give you 2 ideas:
    1 function STRING_TO_TABLE: http://www.sloug.org/i/doc/api073.htm
    2. other resources (regular expression or XML): http://apex-at-work.blogspot.com/2011/05/two-ways-using-string-to-table-in-apex.html

  • multi select sql problem - ORA-01722: invalid number

    Hello

    I have a multi select list and when I select only one item it works perfectly, but if I select several items, it gives an error. The sql statement is as below:

    SELECT * VIEW WHERE INSTR (': ' |: P1_ID |': ',' :'||) ID: ': ') > 0

    and I get the following error:

    ORA-01722: invalid number


    Here is some information on the display:
    Name of the column
    Data Type (NUMBER)
    Nullable (No.)

    Hello

    I just try this in my own sandbox application to sand...

    Create report area with

    SELECT t_id, t_code
    FROM t_table
    WHERE INSTR(':'||TO_CHAR(:P1_ID)||':', ':'||TO_CHAR(t_id)||':') > 0
    

    as the source.

    Create multiple selection list

    SELECT t_code, t_id
    FROM t_table
    

    as the source.

    Create a button with application of GO, subordinate the region report on request = GB.

    Now, I run the page, select a value in the list, click on go - region displays with the correct result.

    Now I run the page, select several values in the list, click on go - region displays with good results.

    What is your scenario? If so, it works for me...

    See you soon

    Ben
    http://www.munkyben.WordPress.com
    Don't forget to mark the answers useful or correct ;)

  • Region of report filters by using Multi Select lists

    Could someone please advise me accordingly.

    I want to use several multi selection lists to allow a user filter data in a report. I have a button for the user to send the page and apply their selected criteria. In my application I have want to reference the items select direct multi.

    for example

    Select studentid, studentname
    of student_table
    where of course in(:p1_course)
    and the Department (: p1_dept)
    and in the year (: p1_year)
    and... etc etc.

    My attempts to do so to this day, have been in pallets. I was hoping that one of you experts may be able to advise how to do this step by step.

    Thank you

    Steve C

    Hi Steve,.

    The results of the selections multiple lists would be in the format has: b: c (that is to say, the values separated by semicolons), so your WHERE clause must use something like:

    OÙ ' :' || : P1_COURSE | ':' AS ' %:' | COURSE | ':%'

    or

    WHERE INSTR (': ' |: P1_COURSE |) ':', ':' || COURSE | ':') > 0

    Andy

  • Selections multiple prompt values on dashboard BI EE.

    Hello

    I have a question at the multiple selection prompt. I need to display the prompt values of selection on the dashboard, because users want to see the values in the prompt. Look at it please, attached screenshot.

    Best regards, Vladimir.

    Link invites

    Vladimir,
    Please provide us with some information about how users want to view the data in multiple selection. If they want to just display the values as a list, you can create a small fake request with the same column that the multiple selection and make it "is invited".

    Concerning

  • Request for responses with multi-Select fast

    Hello

    Hoping someone can help - I need to create a prompt in a request for answers to allow users to choose a customer - I need this to be similar to a multiple selection in a dashboard command prompt so that the user can type begins by and find the customer what they want. Currently, the only options of answers is to scroll through the entire list or type the value directly. The application is simply posted as a link on a page of dashboard - I'd rather not have to create another page of dashboard if possible.

    I would be grateful for any ideas.

    With our thanks,
    Patricia

    Patricia, you try to do this more difficult it must be. Of after what you say, just use value Interaction > Browse the report which lists all the names "begins with Pat. Put "is invited" on the name of the destination report cust column and it will give you the "last step" you are looking for.

    P.S. a lot of useful tips in this thread. It would be nice to price messages with points.

  • Pivot Table page-item like a multi select

    Is this possible? When placign an article on the set of 'page' of the pivot table, the default is to allow a selection unique value, but we can allow multiple selection.

    For example, if I place the region in the Page element box, can I allow the user to select 'West' and 'Is' as opposed to only 1 distinct value?

    Why not just use a prompt with a multiple selection box then?

    It looks the same for the end user, that now he takes when he chooses another combo... instead he had to not wait in the beginning of something more long

Maybe you are looking for