How to display Lov as Multi select dropdown

Hi
I am using 11.1.1.6 version.
I have created a LOV for one attribute, I want to display it as multiselect dropdown.
Could you please help me how to achieve this ?
Best Regards,
Jagadeesh Badri

@KT there is no such a thing. All the options are related to single selection.
@JagadeeshBadri as Vinay said, you need to create something by yourself. You can use selectManyChoice component to iterate over the view you want. Then write a selectionListener or something like that that will copy the selected items to your variable. What is your use case anyway?
Regards

Similar Messages

  • Handling cascading LOV (having Multi-Select parent LOV)

    Hi,
    I am using cascading LOV.
    P1_PARENT - Parent LOV (which is multi-select)
    P1_CHILD - Child LOV
    since Parent LOV is multi-select, so it will have the following vallues... P1_PARENT = AA:BB:CC
    and the where clause in the cascading LOV should be like
           where col1 in (:P1_PARENT)
       - So how to convert item value for P1_PARENT from AA:BB:CC to 'AA','BB','CC'
    - Is there is any other way to handle cascading LOV (for Multi-Select parent LOV).
    select list for P1_CHILD
        select d, r
      from test
    where col1 = :P1_PARENT
    where col1 in (:P1_PARENT) Thanks,
    Deepak

    Hi Deepak,
    In the where clause for the child LOV, you can use instr function as:
    (instr(':'||:P1_PARENT||':',':'||col1||':',1) > 0 ) To access the individual elements in the multi-select :P1_PARENT, you can use:
    DECLARE
    l_selected HTMLDB_APPLICATION_GLOBAL.VC_ARR2;
    BEGIN
      l_selected := HTMLDB_UTIL.STRING_TO_TABLE(:P1_PARENT);
      FOR i IN 1..l_selected.count
      LOOP
            //  your code here...access individual elements using  l_selected(i)
      END LOOP;
    END;Thanks,
    Rohit

  • How can I validate a multi-select box to have at least 1 option

    How can I validate a multi-select box to have at least 1 option
    selected in struts?

    thanks i will try that other then that if I want to create single drop down list and pass multiple values associated to that drop list value how would i do that....

  • How to display distinct date in a dropdown

    I know I've done this before. For the life of me I can't see
    what I'm doing wrong. I have a query outputing date/time formats
    from an Access database into a select dropdown box. I can't get the
    duplicate dates out. I'm wondering if it is because the time in the
    database is different for each row? I just want to display one
    9/8/2006 even if there are 40 of them. Below is my code:
    <cfquery name="qdate" datasource="mydb">
    SELECT DISTINCT entereddate FROM archivedletters ORDER BY
    entereddate
    </cfquery>
    <!---the output--->
    <form action="queryarchived.cfm" name="StartDate"
    method="post">
    <strong>Search Sample Numbers By Date
    Range:</strong><br>
    Beginning:<br>
    <select name="StartDate">
    <cfoutput query="qdate">
    <option value="#entereddate#">#DateFormat(entereddate,
    'mm/dd/yy')#</option>
    </cfoutput>
    </select>
    <br>
    End:<br>
    <select name="EndDate">
    <cfoutput query="qdate">
    <option value="#entereddate#">#DateFormat(entereddate,
    'mm/dd/yy')#</option>
    </cfoutput>
    </select>
    <input type="submit" value="Go">
    </form>

    Hi Dan,
    Thanks for the suggestion. I tried your method but I am a bit
    confused of how to go about it. I'm not sure about what the 'abc'
    is and how to query the query. This is what I did:
    <cfquery name="qdate" datasource="mydb">
    SELECT DISTINCT entereddate, 'abc' as field2
    FROM archivedletters
    ORDER BY entereddate
    </cfquery>
    <cfloop query="qdate">
    <cfset field2 = "#DateFormat(entereddate,
    'mm/dd/yy')#">
    </cfloop>
    <!---output--->
    <form action="queryarchived.cfm" name="StartDate"
    method="post">
    <strong>Search Sample Numbers By Date
    Range:</strong><br>
    Beginning:<br>
    <select name="StartDate">
    <cfoutput query="qdate">
    <option value="#field2#">#field2#</option>
    </cfoutput>
    </select>
    <br>
    End:<br>
    <select name="EndDate">
    <cfoutput query="qdate">
    <option value="#field2#">#field2#</option>
    </cfoutput>
    </select>
    All this does is return a list of abc's. I know I'm doing
    something really wrong.

  • How to dipsplay value of multi select prompt in Answers

    I have a request in Answers that has a multi select column prompt. I can display the value selected in the prompt in the Narative view as long as only one value is selected. When more than one value is selected, how can I display the multiple values selected in the Narative view?
    Thanks in advance.
    Sandeep

    Multi select can not be assigned to Presentation variable (It is greyed out), so you can not get the respective values.

  • How to make list item multi select

    Hi all,
    I'm suing Oracle 10g and I want to make a TList multi-selectable and then how I can return the selected records
    Thanks in advance :)

    This is where you should go
    ttp://www.oracle.com/technology/sample_code/products/forms/index.html
    in add , with it is not possible with a default TLIST, LOV ...., so you'll need to create your own:
    for example, I use a normal block with a checkbox on each row for the user to select records

  • How do I default a multi-select to have all values selected

    Hi all,
    I have a report (standard, not interactive - for various reasons) and I have a number of 'search' fields that the use can use to fulter the results shown. One of these fields is a multi-select list which allows the users to select multiple values at the same time. This is working fine.
    My problem is in setting the default for the multi-select list to have all values selected (either when the page is first opened or when the user clicks a 'reset' button).
    The multi-select query is:
    select
         lv1.description d, lv1.lookup_code r
    from
         tpa_adm_lookup_types lt1,
         tpa_adm_lookup_values lv1
    where
         lv1.lookup_type_id = lt1.lookup_type_id
    and lt1.lookup_type = 'RELEASE_PHASES'
    and     lv1.delete_flag = 'N'
    order by 1
    how do I get it to default to everything selected?
    Many thanks,
    Martin

    Hi Andy,
    Yes it is a dynamic list so a fixed default is no good.
    I have built the field with a source (when session state is null) of:
    with data as (
    select lookup_code, row_number() over(order by lv1.description) rn,count(*) over () cnt
    from tpa_adm_lookup_values lv1,
         tpa_adm_lookup_types lt1
    where lv1.lookup_type_id = lt1.lookup_type_id
    and lt1.lookup_type = 'RELEASE_PHASES'
    and lv1.delete_flag = 'N'  )
    select ltrim(sys_connect_by_path(lookup_code,':'),':') catvalues
    from data
       where rn = cnt
       start with rn = 1
       connect by prior rn = rn-1;which works but I was hoping ApEx had a cleaner solution.
    Regards,
    Martin

  • How to display LOV on web in ENTER-QUERY mode with form or block query only.

    Hello all
    How can I display lov automatic on the web in from enter-query
    mode in form or block query only mode.
    thankx

    If I understand correctly your explanation, your called form
    fails to activate the LOV in enter-query mode when it is deployed
    and test on the browser.
    So lets proceeed like this, to make it work in all environments,
    let us programetically activate the LOV.
    HOW?
    In the called form, write in the WHEN-NEW-ITEM-INSTANCE TRIGGER
    at block level (if have more than one LOV)
    IF :SYSTEM.MODE = 'ENTER-QUERY' THEN
    IF get_item_property(:system.cursor_item,lov_name) IN ('YOUR
    LOV1', 'LOV2' etc) THEN
    IF SHOW_LOV(get_item_property(:system.cursor_item,lov_name))
    THEN
    NULL;
    END IF;
    END IF;
    END IF;
    The above code maybe tweak to suite your need and condition.
    This way, we explicitly make the LOV appear in ENTER-QUERY mode
    whenever the user clicks on an item with an attached LOV.
    Hope this helps.
    Mohammed R.Qurashi

  • Add a Document Library "multi-select dropdown" column

    I need to allow my users to select more than entry in a drop-down when adding a new file to the document library. I cannot use the checkbox feature because I have way to many entries.
    Is there a way to add a “multi-select drop-down” column?

    Hi ,
    According to your description, my understanding is that you want to add a multiple-values dropdown column in a library.
    You can add these entries into a list, then create a lookup column in your library, the lookup data is from the list, and select ‘Allow multiple values’, like the screenshot below:
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to display a screen in selection-screen?

    hi friends,
    I have a requirement. I have one PNP database SELECTION-SCREEN in my report program. And i have created one more screen using screen painter.
    Now i hae to display that screen which i created using screen painter under PNP SELECTION-SCREEN.
    For ex:
    PNP SELECTION-SCREE.
    Pernr Number    _______________
    Employe Name _______________
    Company Code _______________
    Payroll Area     ________________
    Now after this i have to display my screen which i designed using screen painter.
    As shown below.
      O In rupees
      O In Percentage
       Variance______
    Here i specified some fields only. some more fields also there.
    For this i did as....
    I created a BUTTON in SELECTION-SCREEN. And when the user clicked on this then screen will appear as window.
    It's working fine.
    It's look like this.
       |More Selections...|                            -
    > Button
    But,my client required that screen also wants to display directly under PNP SELECTION-SCREEN but not as window and clicking button.
    If Any Help.. Plz....
    Thanks & Regards,
    Shree.

    hi prakash,
    thanks for ur solution.
    but it's not working properly. while changing 1000 screen and activating, it's showing syntax error like this.
    while changing:
    ==> Element PNPS$MCD touches or overlaps other element
    ==> Selection screen: Report generation makes screen changes ineffective
    ==> Element PNPS$MCD touches or overlaps other element
    While Activating:
    Syntax Error in Screen.
    Program <myprogram name>
    Screen   1000
    Position  Flow Logic       Line 95
    The include block has been used twice.
    But, Here i clicked the button "Activate".
    Then It's showing messages as this.
    ==> Selection screen: Report generation makes screen changes ineffective
    ==> Element PNPS$MCD touches or overlaps other element.
    I checked out that Line 95.
    There i am specifying my suscreen as this.
    CALL SUBSCREEN subscreen1 INCLUDING sy-repid 106.
    at end of PBO.
    And in PAI.
    CALL SUBSCREEN subscreen1.
    Finally when i tried to execute it's giving DUMP.
    Any solutions..
    Thanks & Regards,
    Shree.

  • How to query on a Multi-Select Picklist?

    With the Oracle Web Service, I'm having trouble trying to figure out why I am unable to query for a Lead using only a Custom MultiSelect Picklist that I have.
    The Multi-Select Picklist has 3 values:
    - Picklist 1 (ID: <No Values>)
    - Picklist 2 (ID: Picklist 2)
    - Picklist 3 (ID: Picklist 3)
    I have leads with selected values
    - Picklist 3
    - Picklist 2 and Picklist 3
    Whether I query for any leads with a single value or multiple values, I'm getting nothing in return.
    ~= 'Picklist 3' (Returned Nothing but results do exist in the CRM UI)
    ~= 'Picklist 2;Picklist 3' (Returned Nothing but results do exist in the CRM UI)
    ~= 'Picklist 2,Picklist 3' (Returned Nothing but results do exist in the CRM UI)
    When I query using LIKE though, I get results....one of the results being a lead with just "Picklist 3" as the value for the Multi Select Picklist
    ~LIKE '*Picklist 3*' (25 Leads are returned with values of both Picklist 3 and Picklist 2, Picklist 3)
    And as a side note, I'm able to successfully insert/update values into this Multi select picklist as
    Picklist 2;Picklist 3
    Any help would be greatly appreciated!

    Kishore
    Thank you for the reply. Unfortunately, I have already specified the fields I do want returned...I just didn't post them as they are irrelevant to my question. What my question is attempting to say is that if I were to run my actual query on a database the query would look like this:
    select LeadEmail from Lead where CustomMultiPicklist1 = 'Picklist 3' (Using the API: ~= 'Picklist 3')
    This returns 0 results even though I have a Lead with CustomMultiPicklist1 = 'Picklist 3'
    On the other hand if I were to do the following query....results are returned.
    select LeadEmail from Lead where CustomMultiPicklist1 like '%Picklist 3%' (Using the API: ~LIKE '*Picklist 3*')
    So pretty much I'm trying to figure out what the correct syntax is for querying CustomMultiSelectPicklists only.
    Thanks
    Edited by: tyler m on May 5, 2010 7:17 AM

  • How to have multi select dropdowns for web request and adobe forms

    Hi All,
    I am working on interactive forms for CRM 7.0 using web request and ZCI layout.
    When I say web request we define the fields required for the form in CRM that becomes the context for WDA and passed onto Adobe form.
    This web request is a flat structure which mean if I have a node and attributes with in that you cant have multiple values to wards this node as in WDA.
    Now My query:
      I have a field called "xyz" since web request is a flat structure i just defined it as a string.
      In WDA I made it a enumrated field and added key value pairs to it.
      In Adobe form I binded this field to a WD native enum dropdown list every thing is fine untill here.
      Now in the form I need this as a multiple select, so i changed the dropdown field to list box it works.
      The form has to be submitted as a draft version when did so, it will not execute any APIs but saves the data to the web request.
      When the same form is opened for the next time, with the data in web request it should reopen this field with the multiple seleced values high lighted.
      since the field xyz is a single filed of string, how can i maintain multiple values in that...?
      if there is a form status auto save function in Adobe form this might solve a bit but not sure when the form is opened 2nd time from web reqest view does it consider it as a new one or open the same form...?
    I have such dropdown fields and problems including ones with depenedt values on one another.
    I tried my best to explain the problem, if somebody can help me with this its much appriciated.
    Note: Since this is dependent on CRM web request I am posting the same query in that block also apologies if this mean a duplicacy.
    Thanks & Regards,
    Sai

    I got the solution and problem is solved.
    Iterating & processing a enumrated dropdown is like any other dropdown /list box in adobe forms.
    Regards,
    Sai Krishna

  • How to display multiple prompt values selected, in the report

    Hi,
    I have a LOV : SELECT DISTINCT CO.V_MOVEMENT.ORIGIN_BRANCH_CODE FROM CO.V_MOVEMENT ORDER BY 1
    and a parameter associated with it which is multiple selection enabled. The parameter name is P_BRANCH.
    When I am displaying P_BRANCH at the top of my report (RTF), it's showing only one value whereas I need to display all the selected value as Comma Separated.
    Please help.
    Thanks & Regards,
    Antara

    The other option to fetch all the selected values to the report (RTF) is to create a dataset for the field and in the template create a repeating group for each value.
    Eg:
    1) The SQL is : ( In SQL Server, where :P_S_ORIGIN_BRANCH_CODE is Prompt )
    SELECT DISTINCT
    :P_S_ORIGIN_BRANCH_CODE as P_BRANCH
    2) XML is :
    <DATA_DS>
    <G_1>
    <P_BRANCH>RTM</P_BRANCH>
    </G_1>
    <G_1>
    <P_BRANCH>ABC</P_BRANCH>
    </G_1>
    </DATA_DS>
    3) In report we can display the values as below:
    RTM,
    ABC
    But The Required Output in RTF is : (Values seperated by ",")
    RTM, ABC
    Your help would be highly appreciated.
    Thanks & Regards,
    Antara
    Edited by: user450412 on Oct 10, 2011 4:11 PM

  • How to display the current value selected in DDLB of another screen

    hi Experts
    I need some info regarding the dropdownlist in BSP.
    I have two screens . One screen contains the table view which contains a set of records.Each record has two columns.
    Second screen contains 2 drop down list.
    When i select one record and then press the submit button in the first screen .Then i want that the selected value of the selected record will display in the DDLB of the second screen. And then i can again select the value from the drop down list.
    For example:
    1st screen:
    record 1.
    col 1     col 2
    record 2
    col 1     col 2
    2nd screen
    ddlb1...........
    ddlb2...........
    So when i select the record1, then the current value of col1 and col2 should visible on the ddlbs of second screen first time. Then i choose other value from the ddlbs.....
    My Question is how to do the following
    "when i select the record1, then the current value of col1 and col2 should visible on the ddlbs of second screen".
    please provide some suggestions...
    Thanks.

    Hi,
    You can use form with post method
    like
    <htmlb:form method = "post"
                      action = "page2.htm"
                      target = "coding" >
    <htmlb:dropdownListBox id             = "labelAlignment"
                                               selection      = "<%= me->labelAlignment %>"
                                               onClientSelect = "document.forms[0].submit();" >
                          <htmlb:listBoxItem key   = "LEFT"
                                             value = "LEFT" />
                          <htmlb:listBoxItem key   = "RIGHT"
                                             value = "RIGHT" />
                        </htmlb:dropdownListBox>
    So once you select col1 and col2 in your case its value is in page attribute say hold, this attributes needs to be defined in page2.htm also with auto checked. You can get the val selected in page1.htm
    If helpful rewards point.
    Regards,
    Albert

  • How to display list in Agent Selection Screen?

    Hi,
    I am using DISPATCH method in Agent Selection screen ( obj. type WF_TASK ).
    In description it says that this method could display a list of users but
    in reality it displays only one item.
    If anyone was able to display a list would you share how to do it?
    Thank you.

    I think you will need to give more information. What does your binding look like, what are the possible agents for the task you give in the binding? This last one if you get a list or search functionality.
    Regards,
    Martin

Maybe you are looking for

  • Cannot download any apps from app store

    Hello - I have the iPhone 4S & I'm unable to download any new apps from the app store.  I click on INSTALL but only indicates INSTALLING for about 2 seconds then goes back to INSTALL; I'm not prompted to enter my ITunes password; Install isn't workin

  • Multiple Comparison​s on Single Data Source: NaN vs. Large Number

    Hello All,   Working in TestStand 2013, and came across a situation with DMM measurements, in which several values would be acceptable for the limit comparison.  For example, if I am making a resistance measurement, and I expect it to be a very high

  • Using namespaces in the XML QUERY

    I need to included a namespace of i: in the query below. the namespace is : "http://abc.com/int:i" How can I include the namespace in the query below? Is this possible? SELECT XMLELEMENT("i:Trade", XMLELEMENT("i:Level",2.25),                         

  • Error while Using RequestResponseBean Module

    hi All, I am trying to use RequestResponseBean Module in one of the scenario as given in these links: http://wiki.sdn.sap.com/wiki/display/XI/UsingRequestResponseBeanModuleinFILE+Adapter http://wiki.sdn.sap.com/wiki/display/XI/File-RFC-File(Without%2

  • My applications!!!!!!

    i dont know why but my applications have question marks on them AND THEY WONT OPEN hellpppp meeeee