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

Tags: Business Intelligence

Similar Questions

  • 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

  • Multi-selects search form break when the screen is Exact = true

    I came across a problem where selecting 'Vascular' in a drop-down list in my webapp search form also returned results 'Non-vasculaire '.

    After some research, I found adding "& Exact = true" at the end of the form action has solved this problem.

    I have then proceeded to re - test the selection of several elements of the multiple selection and submit the form. I got exactly zero results. I chose the two elements of the multiple selection separately and returned the results twice. I took the & Exact = true back out and retested select multiple items and received my results once more.

    Does anyone know how build the search engine so that I can prevent the search within words and allow also my multiple selection dropdowns to work properly?

    Also, I think that this behavior that I'm experiencing is a bug. Could an Adobe employee submit a bug report if yes please?

    Thank you!

    Well you do but you select two things for 2 custom fields, he'll get both, neither, or in this case. It's simply not how does the search in British Colombia. Maybe they will bring improvements to the search, but which will correspond to the server load etc which is probably why it was not the door.

  • Too many guests while launching a browser in a j2me on Blackberry 4.2.2 handset application

    Hi all

    I'm working on an application J2ME which starts a default browser and opens a Web page on the Blackberry handset.

    My Tools includes jde4.3 BB + Eclipse Europa + BB4.2.2 combined - 8820, 8310 (for the execution of the application).

    I use the following code and in the face of a problem during the race piece crushed this combined 4.2.2 BB app, say BB 8310 Curve:

    public void startApp() {}

    Boolean b;
    try {}
    b = platformRequest ("http://www.yahoo.com/");
    destroyApp (true);
    notifyDestroyed();
    }
    catch (ConnectionNotFoundException ex)
    {
    ex.printStackTrace ();
    }

    destroyApp (true);
    notifyDestroyed();
    }

    public void pauseApp() {}
    }

    {} public void destroyApp (boolean unconditional)
    }

    Why does always she asks too many questions/confirmations and launching too many pop ups before launching the browser.

    It asks questions like:

    (1.) you want to grant the status of trusted abc_app Application?

    (2.) the abc_app of the application tries to invoke the browser to display www.yahoo.com. You want to allow this?

    and so on...

    before you open the desired Web page.

    I want to be able to reach the webpage directly avoiding these guests of pop ups not necessary to display on my mobile screen. Help, please.

    Thanks in advance

    See this KB article

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800440/How_To _...

  • Guest systems show fiber 10g as twisted pair adapters

    Hello

    I installed esxi 5.1 on a intel mother 5500bc assembled with a card dual port intel 10 g fiber lan.

    Went it smooth on the side of vmware, I see in vmware ethtool shows the adapter as fibers.

    But the guest system shows the virtual card as twisted pair.

    Why is this and how to fix this.

    Please help out me.

    # ethtool vmnic3

    Vmnic3 settings:

    Supported ports: [FIBERGLASS]

    Supported link modes: 1000baseT/Full

    Supports auto-negotiation: Yes

    Advertised link modes: 1000baseT/Full

    Announced auto-negotiation: Yes

    Speed: unknown! (10000)

    Duplex: full

    Port: FIBER

    PHYAD: 0

    Transceiver: external

    Auto-negotiation: on

    Supports Wake-on: d

    Wake-on: d

    Current message level: 0 x 00000007 (7)

    Link detected: Yes

    Vyatta@Vyatta-Testing1: ~ $ sudo ethtool eth0

    Settings for eth0:

    Supported ports: [TP]

    Supported link modes: 1000baseT/Full

    10000baseT/Full

    Supports auto-negotiation: no

    Advertised link modes: unreleased

    Announced the pause frame that uses: No.

    Announced the autonegotiation: No.

    Speed: 10000 Mb/s

    Duplex: full

    Port: Twisted pair

    PHYAD: 0

    Transceiver: internal

    Auto-negotiation: off

    MDI - x: unknown

    Supports Wake-on: uag

    Wake-on: d

    Link detected: Yes

    Thanks in advance

    Do you use a vNIC vmxnet3 on the VM? It is quite normal that the hardware, the bishoprics of comments is completely abstract of some physical has your host and the generic virtual device is not related to the physical network adapters. You might have a physical BNC 10Mbit connection or a wireless network adapter, also, and the guest would see still and always a 10 GbE virtual NIC Ethernet. So don't worry about this, it's perfectly fine.

    The only way you'd be able to really pass the physical properties of a device into a virtual computer would be by vmdirectpath passthru, which presents the physical unit of PCI (e) directly to the guest, but this is something very unusual who generally makes no sense in 99% of the environments.

  • 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

Maybe you are looking for