Maximum number of list to multiple selection on a page

Greetings,

I use the Application Express 4.2.1.00.08. I have a problem in one of my pages. I have several items (123 from today ' hui), and two of them are lists of multiple selections. They are all the same... created is based on a named LOV, together forever, used Source Source Type defined on the database column... and they all work fine, except the last. Don't just save to the database.

I tried:
-Delete and recreate from scratch - does not save
-Deletion and recreation of one copy of another list selection multiple work - does not save
-Change the view state for one of my multiple selections of work lists to never (to have a less rendered multiselect list) - does not save
-Keep everything the same but by changing the type of element (text field) - saves
-Keeping all the same, but change to a normal selection list (no) - saves

So, I came to the point of wondering... is there a limit on how many multiple-selection list can be on a page?

If so, does anyone know a kind of workaround?
If this isn't the case, anyone has an idea why I'm having this problem?

Thank you for your comments,
Mathieu

I found something. If I move the item to another region, it works again, but not in all regions. I tried to create a new region and delete my article in there, but it doesn't seem to work. I'll keep looking.

Thank you
Mathieu

Tags: Database

Similar Questions

  • Maximum number of DECODE in a select statement

    Is there a limit on the number of Decodes a statement select SQL can handle?

    I ran the following statement and it's what gives an error after the 3rd DECODE.

    Any idea of a solution is much appreciated.

    Thank you.




    SQL > SELECT
    2 NAME, DIRECTION. DIRECTORATE_ID, AFC,
    V_ADJUSTMENT_ACTUAL_RESULT 3. FUND, V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE,
    4 ADJUSTMENT_PCT, V_ADJUSTMENT_ACTUAL_RESULT.FY,
    5 DECODE (V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE, "FD", SUM (PP21 PP22 + PP23 + PP24 + PP25 + PP26 + DP1 + PP
    2 PP3 + + PP4 PP5 + + PP6 PP7 + + PP8 PP9 + PP10 + PP11 + PP12 + PP13 + PP14 + PP15 + PP16 AND PP17 + PP18 + PP19 + PP20)) AS FD,
    6 DECODE (V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE, 'FR', SUM (PP21 PP22 + PP23 + PP24 + PP25 + PP26 + DP1 + PP
    2 PP3 + + PP4 PP5 + + PP6 PP7 + + PP8 PP9 + PP10 + PP11 + PP12 + PP13 + PP14 + PP15 + PP16 AND PP17 + PP18 + PP19 + PP20)) AS EN.
    7 DECODE (V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE, "OD", SUM (PP21 PP22 + PP23 + PP24 + PP25 + PP26 + DP1 + PP
    2 PP3 + + PP4 PP5 + + PP6 PP7 + + PP8 PP9 + PP10 + PP11 + PP12 + PP13 + PP14 + PP15 + PP16 AND PP17 + PP18 + PP19 + PP20)) THAN OD.
    8 DECODE (V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE, 'OR', SUM (PP21 PP22 + PP23 + PP24 + PP25 + PP26 + DP1 + PP
    2 PP3 + + PP4 PP5 + + PP6 PP7 + + PP8 PP9 + PP10 + PP11 + PP12 + PP13 + PP14 + PP15 + PP16 AND PP17 + PP18 + PP19 + PP20)) AS OR.
    9 DECODE (V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE, "FF", SUM (PP21 PP22 + PP23 + PP24 + PP25 + PP26 + DP1 + PP
    2 PP3 + + PP4 PP5 + + PP6 PP7 + + PP8 PP9 + PP10 + PP11 + PP12 + PP13 + PP14 + PP15 + PP16 AND PP17 + PP18 + PP19 + PP20)) LIKE FF
    10 FROM
    11. THE STAFFING. V_ADJUSTMENT_ACTUAL_RESULT,
    12. THE STAFFING. ADJUSTMENT,
    13. THE STAFFING. DIRECTION OF
    14. WHERE
    15. THE STAFFING. V_ADJUSTMENT_ACTUAL_RESULT. DIRECTORATE_ID = STAFFING. DIRECTORATE GENERAL. DIRECTORATE_ID
    16 AND THE WORKFORCE. SETTING. DIRECTORATE_ID = STAFFING. V_ADJUSTMENT_ACTUAL_RESULT. DIRECTORATE_ID

    17 GROUP OF
    DIRECTORATE.NAME 18,
    19 DIRECTION. DIRECTORATE_ID,
    20 V_ADJUSTMENT_ACTUAL_RESULT. AFC,
    21 V_ADJUSTMENT_ACTUAL_RESULT. FUNDS,
    22 V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE,
    23 SETTING. ADJUSTMENT_PCT,
    24 V_ADJUSTMENT_ACTUAL_RESULT.FY
    25 ORDER BY
    DIRECTORATE.NAME 26,
    27 DIRECTION. DIRECTORATE_ID,
    28 V_ADJUSTMENT_ACTUAL_RESULT. AFC,
    29 V_ADJUSTMENT_ACTUAL_RESULT. FUNDS,
    30 V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE,
    31 SETTING. ADJUSTMENT_PCT,
    32 V_ADJUSTMENT_ACTUAL_RESULT.FY;
    DECODE (V_ADJUSTMENT_ACTUAL_RESULT. FUND_TYPE, 'OR', SUM (PP21 PP22 + PP23 + PP24 + PP25 + PP26 + DP1 + PP2 + PP3

    ERROR on line 8:
    ORA-00923: THE KEYWORD not found where expected

    Published by: user551757 on January 28, 2009 13:17

    The last line of your code is oncorrect.
    Or is a reserved word in Oracle.
    Try this code.
    Kind regards.
    Salim.

    SELECT   NAME, directorate.directorate_id, afc,
             v_adjustment_actual_result.fund,
             v_adjustment_actual_result.fund_type, adjustment_pct,
             v_adjustment_actual_result.fy,
             DECODE (v_adjustment_actual_result.fund_type,
                     'FD', SUM (  pp21
                                + pp22
                                + pp23
                                + pp24
                                + pp25
                                + pp26
                                + pp1
                                + pp2
                                + pp3
                                + pp4
                                + pp5
                                + pp6
                                + pp7
                                + pp8
                                + pp9
                                + pp10
                                + pp11
                                + pp12
                                + pp13
                                + pp14
                                + pp15
                                + pp16
                                + pp17
                                + pp18
                                + pp19
                                + pp20
                               )
                    ) AS fd,
             DECODE (v_adjustment_actual_result.fund_type,
                     'FR', SUM (  pp21
                                + pp22
                                + pp23
                                + pp24
                                + pp25
                                + pp26
                                + pp1
                                + pp2
                                + pp3
                                + pp4
                                + pp5
                                + pp6
                                + pp7
                                + pp8
                                + pp9
                                + pp10
                                + pp11
                                + pp12
                                + pp13
                                + pp14
                                + pp15
                                + pp16
                                + pp17
                                + pp18
                                + pp19
                                + pp20
                               )
                    ) AS fr,
             DECODE (v_adjustment_actual_result.fund_type,
                     'OD', SUM (  pp21
                                + pp22
                                + pp23
                                + pp24
                                + pp25
                                + pp26
                                + pp1
                                + pp2
                                + pp3
                                + pp4
                                + pp5
                                + pp6
                                + pp7
                                + pp8
                                + pp9
                                + pp10
                                + pp11
                                + pp12
                                + pp13
                                + pp14
                                + pp15
                                + pp16
                                + pp17
                                + pp18
                                + pp19
                                + pp20
                               )
                    ) AS od,
             DECODE (v_adjustment_actual_result.fund_type,
                     'OR', SUM (  pp21
                                + pp22
                                + pp23
                                + pp24
                                + pp25
                                + pp26
                                + pp1
                                + pp2
                                + pp3
                                + pp4
                                + pp5
                                + pp6
                                + pp7
                                + pp8
                                + pp9
                                + pp10
                                + pp11
                                + pp12
                                + pp13
                                + pp14
                                + pp15
                                + pp16
                                + pp17
                                + pp18
                                + pp19
                                + pp20
                               )
                    ) AS orr,
             DECODE (v_adjustment_actual_result.fund_type,
                     'FF', SUM (  pp21
                                + pp22
                                + pp23
                                + pp24
                                + pp25
                                + pp26
                                + pp1
                                + pp2
                                + pp3
                                + pp4
                                + pp5
                                + pp6
                                + pp7
                                + pp8
                                + pp9
                                + pp10
                                + pp11
                                + pp12
                                + pp13
                                + pp14
                                + pp15
                                + pp16
                                + pp17
                                + pp18
                                + pp19
                                + pp20
                               )
                    ) AS ff
        FROM staffing.v_adjustment_actual_result,
             staffing.adjustment,
             staffing.directorate
       WHERE staffing.v_adjustment_actual_result.directorate_id =
                                               staffing.directorate.directorate_id
         AND staffing.adjustment.directorate_id =
                                staffing.v_adjustment_actual_result.directorate_id
    GROUP BY directorate.NAME,
             directorate.directorate_id,
             v_adjustment_actual_result.afc,
             v_adjustment_actual_result.fund,
             v_adjustment_actual_result.fund_type,
             adjustment.adjustment_pct,
             v_adjustment_actual_result.fy
    ORDER BY directorate.NAME,
             directorate.directorate_id,
             v_adjustment_actual_result.afc,
             v_adjustment_actual_result.fund,
             v_adjustment_actual_result.fund_type,
             adjustment.adjustment_pct,
             v_adjustment_actual_result.fy;
    
  • Need to insert a list of multiple selection as individual records

    I have a list that is popluated with names and names have a unique number assigned to them
    The other list is filled with the names of County and they also have a number that was

    As the code is now it will not work because the loop is in the wrong place, I think that?
    CF raises an error stating that the invalid data type because it attempts to insert "1,2,3,4,5,6, etc...". »
    I changed the text data type, so it would be at least accept insertion, which worked, but this isn't what I want. I then changed backed to numeric, but get the error invalid data type.

    The database is as follows if changed to text data type:
    personnel_ID countyID
    1 1,2,3,4,5,6

    I want it to look like this:
    personnel_ID countyID
    3 s
    1 2
    1 3
    1 4
    3 w
    etc...


    I need somehow a loop to check and see if a county is selected and then insert a record in the personnel_ID and the countyID, then check the following County and so on.


    Here is my code... Any help would be greatly appreciated



    < cfset CurrentPage = GetFileFromPath (GetTemplatePath ()) >

    < cfif IsDefined "(FORM. MM_InsertRecord") AND the FORM. MM_InsertRecord EQ "form2" >
    < cfquery datasource = "wildlife_nwco" name = "insertCounties" >
    < cfloop index = "listElement" list = "#form.countyID #" >
    INSERT INTO countiesWorked (personnel_ID, countyID)
    VALUES)
    < cfif IsDefined ("FORM.personnel_ID") AND #FORM.personnel_ID # NEQ "" > "".
    < cfqueryparam value = "" #FORM.personnel_ID # "cfsqltype ="cf_sql_numeric">"
    < cfelse >
    NULL VALUE
    < / cfif >
    ,
    < cfif IsDefined ("FORM.countyID") AND #FORM.countyID # NEQ "" > "".
    < cfqueryparam value = "" #FORM.countyID # "cfsqltype ="cf_sql_numeric">"
    < cfelse >
    NULL VALUE
    < / cfif >
    )
    < / cfloop >
    < / cfquery >
    < / cfif >



    < name cfquery = "personal" datasource = "wildlife_nwco" >
    SELECT *.
    Of the members OF
    ORDER BY personnel.lastName
    < / cfquery >
    < name cfquery = "County" datasource = "wildlife_nwco" >
    SELECT *.
    OF countyID
    ORDER BY countyID.countyName
    < / cfquery >


    <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
    "< html xmlns =" http://www.w3.org/1999/xhtml "> "
    < head >
    < meta http-equiv = "Content-Type" content = text/html"; charset = iso-8859-1 "/ >"
    < title > Untitled Document < /title >
    < / head >

    < body >


    < are method = "post" name = "form2" action = "< cfoutput > #CurrentPage # < / cfoutput >" >
    < table align = "center" >
    < tr valign = 'of basic">
    < td align = 'right' nowrap > RUSE name: < table >
    < td > < select name = "personnel_ID" >
    < cfoutput query 'personal' = >
    < value = "" #personnel.personnel_ID # the option ' < cfif (isDefined ("personnel.personnel_ID") AND personnel.personnel_ID EQ personnel.personnel_ID) > selected < / cfif > > #personnel.lastName #, #personnel.firstName # < / option > "
    < / cfoutput >
    < / select >
    < table >
    < b >
    < tr valign = 'of basic">
    < td align = 'right' nowrap > counties worked: < table >
    < td > < select name = "countyID" size = "10" multiple = "multiple" >
    < cfoutput query = 'County' >
    < value = "" #county.countyID # the option ' < cfif (isDefined ("county.countyID") AND county.countyID EQ county.countyID) > selected < / cfif > > #county.countyName # < / option > "
    < / cfoutput >
    < / select >
    < table >
    < b >
    < tr valign = 'of basic">
    < td align = 'right' nowrap > < table >
    < td > < input type = "submit" value = "insert disk" > < table >
    < /tr >
    < /table >
    < input type = "hidden" name = "MM_InsertRecord" value = "form2" >
    < / make >
    < p > < / p >
    < / body >
    < / html >

    You are on the right track. Most dbs do not multiple queries in a single cfquery tag. Put your query in the loop instead of the loop in the query. In addition, your countyid ListElement, will not be form.countyId.

  • How can I get the value of list of multiple selection in javascript?

    Hello

    If I want to show the list of colon delimited in an alert box JS what I'd do?
    or if not, how do you show it?

    There are several SelectedIndexes?

    Type = select-multiple

    Bill

    Bill,

    Watch more closely the example I've provided earlierly:

    http://Apex.Oracle.com/pls/OTN/f?p=31517:166

    I use this code:

    for (i = 0; i < $x (pShuttle2) .length; i ++)
    {
    If (p_array == ")
    {
    p_array is $x (pShuttle2).value;.
    }
    on the other
    {
    p_array = p_array + ":" + $x (pShuttle2) [i] .value;
    }
    }

    Get.Add ('SHUTTLE_ITEM_VALUE', p_array);

    to concatenate the values in the table in a colon delimited string by some. It is later used to define the session state of the element of the shuttle to this value.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • Insert the values of multiple selection

    Hello

    I have a list of multiple selection on my page and I want to insert this list in my database. Now, I want to create a new line for each of the selected values. My table has three rows. ID, GET_ID, PAR_ID. In my page, you can select the GET_ID. Then you have a list of multiple selection for PAR_ID (here, you choose more options). Now the script should put in the table so the format looks like this:
    ID        GET_ID      PAR_ID
    1         1               1
    2         1               2
    3         1               3
    4         2               1
    5         2               2
    
    etc..
    When I use the automated process of line it will insert the data as PAR_ID 1:2:3 and this isn't what I want. I think I must create a PL/SQL procedure with a loop, but my knowledge of pl/sql is not very good. If anyone can put me in the right direction?

    Kind regards
    Wijnand

    Hello Wijnand,

    I did sort of like this:

    DECLARE
    l_selected APEX_APPLICATION_GLOBAL. VC_ARR2;
    whole i_exists;
    BEGIN
    --
    -Convert the string two points separated values in
    -a table of PL/SQL
    l_selected: = APEX_UTIL. STRING_TO_TABLE(:P1_MULTISELECTLIST);

    --
    -Loop through the array to insert
    --
    BECAUSE me IN 1.l_selected.count
    LOOP
    SELECT count (*) in i_exists
    TABLE
    WHERE TABLE_PK = l_selected (i);

    IF i_exists > 0 THEN
    null; -DO NOTHING
    ON THE OTHER
    INSERT INTO TABLE (...) values (...);
    END IF;

    END LOOP;
    END;

    BR, Paul

  • Multiple selections cascading lists

    Hi all

    I have two lists of multiple selections called: P1_PARENT and: P1_CHILD. When a user selects a value of: P1_PARENT values of: P1_CHILD are filtered accordingly. This works well and is very easy through ApEx 4.0.

    I express this so that a user can select several elements of: P1_PARENT and filter: of P1_CHILD the value accordingly. The problem I have is that ApEx return the: P1_PARENT value as a string delimited by two points and I find it difficult to identify means to refer to this in the SQL code to: P1_CHILD, or how to create: P1_CHILD of a PL/SQL function.

    I want to use for SQL: P1_CHILD LOV would be something like:

    SELECT display, return
    TABLE
    WHERE parent_id in (: P1_PARENT);

    This property will return an error such as: P1_PARENT is not a number.

    Help, please!
    Thank you
    Lucy

    Lucy,
    you need a function in pipeline to be able to select from your list of parents separated by commas. This same function can be used for your START WITH id in the clause, but be careful with several relatives in hierarchical queries.

    create or replace type my_varchar_table_type as
    table of varchar2(255) --or however large you need your strings to be
    /
    
    create or replace
    function get_my_values ( p_string in varchar2 ) return my_varchar_table_type pipelined is
    t_vars apex_application_global.vc_arr2;
    begin
       t_vars := apex_util.string_to_table( p_string );
    
       for j in 1 ..  t_vars.count
       loop
         pipe row ( t_vars(j));
       end loop;
    
       return;
    
    end;
    /
    

    Then you should be able to do things like (just a model... you'll probably need to fix it a bit)

    SELECT display_val d, return_val r
    FROM (SELECT column_1, column_2, CONNECT_BY_ISLEAF IsLeaf
    FROM my_table
    START WITH id in
     (select to_number column_value)
      from table(get_my_numbers (:P1_PARENT))
      )
    CONNECT BY PRIOR id = parent_id)
    where IsLeaf=1
    

    I would really have a utility package and put this function in

    See you soon
    Kofi

  • How to make default an element selected in the multiple selection list

    Hello

    I'm filling the list of multiple selection of a lov (dynamic lov). Is it possible to do by default one of the selected items in the list.

    Please let me know how to do this...

    Thanks /.

    How do you determine that a particular value of the LOV must be the default?
    You should be able to combine the LOV query and your 'default selection' health by using an SQL statement or a pl/sql function and specify it for the 'default value Type' in the section 'Default' definition of the elements page.

    CITY

  • Store multiple selections in list in a single field

    I need help to find this one. I have a simple form that uses a field list with "multiple selection" enabled. The values in the list are North, South, East and West. The user selects 1-4 on these options, and I want to memorize all these values in a single text field in the database called "direction". The ONLY value that is stored is the last value in the list.

    Using DW CS3 and mySQL 5.

    What Miss me? Thanks in advance.

    "weidemannia" wrote in message
    News:fftbd2$CB4$1@forums. Macromedia.com...
    > Someone out there with a suggestion?

    Add [] to the name of the field, multiple fields will be available as a
    table.

    Joris

  • Need to field multiple select the option without having previously selected deleted

    Hi all

    Request Express 4.1.1.00.23

    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    I have a requirement of adding a field of multiple selection to a single screen, and I added the list to multiple selection, without a second thought. Of course, the question is when a user tries to edit a record, click on (with the CTRL key) two options in the selection list multiple, but not clicked on those previously selected, then we lost them. Then I thought to create checkboxes and thus those already selected will be always checked when try to update.

    But I want to do with the multiple selection field. So I was wondering if there is a way?

    Thank you!

    Sam82 wrote:

    Request Express 4.1.1.00.23

    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    I have a requirement of adding a field of multiple selection to a single screen, and I added the list to multiple selection, without a second thought. Of course, the question is when a user tries to edit a record, click on (with the CTRL key) two options in the selection list multiple, but not clicked on those previously selected, then we lost them. Then I thought to create checkboxes and thus those already selected will be always checked when try to update.

    But I want to do with the multiple selection field. So I was wondering if there is a way?

    This is the behavior expected multiple-selection list. It can be changed using a point hidden shadow and JavaScript, but there is no way out of the box to achieve what you propose.

    Selections several lists are usually a bad idea:

    • Users do not know how they work
    • They are confused and source of errors, except if all options are visible (which generally wastes space UI)
    • The resulting values of treatment is problematic
    • They are often the cause of a model of incorrect data or result

    Checkboxes or a shuttle are much better options and controls for multiple choice options.

  • Get the Maximum number

    I have a problem

    I have INV_REG table where assets are stored

    and here the genereates inventory number (corresponding inv_no) like this:

    ABC-025145-2009

    DONORS-SRNO-YEAR


    now, I want to get maximum number of series that will come from donors. I draw the following question, but I can not guide kindly maximum number me...


    Select corresponding inv_no, substr (inv_no, instr(inv_no,'-') + 1, instr(inv_no,'-')-1) sr_no
    of inv_reg
    where don_code =: don_code;


    result:
    ---------
    SR_NO INV_NO CORRESPONDENT
    AC-AD2-0272-2003 HD
    ABC-9428-2006 9428
    ABC-9426-2006 9426

    I use oracle 9i database...

    Should always be the first line in a post ;)

    Yet once, assuming no revenue for DONORS:

    SQL> with t as (
      select 'AC-HDIT-0272-2003' inv_no from dual union all
      select 'ABC-9428-2006' from dual union all
      select 'ABC-9426-2006' from dual
    )
    --
    --
    select inv_no, trim ('-' from rtrim (replace (inv_no, rtrim (inv_no, '0123456789-')), '0123456789')) ser_no
      from t
    /
    INV_NO                    SER_NO
    ------------------------- -------------------------
    AC-HDIT-0272-2003         0272
    ABC-9428-2006             9428
    ABC-9426-2006             9426                     
    
    3 rows selected.
    
  • What is the maximum number of contacts that you can add to a mailing list?

    To generate a mailing list, but I've heard that you can get too big? Is there a maximum number of contacts for any 1 list?

    If you use a mailing list that any restrictions would be imposed by your email provider. You should check with them.

  • Maximum number of contacts in a list of contacts (Windows mail)

    I would like to know what is the maximum number tha of contacts, I can create a list of contacts.

    I use Windows mail (Vista)-

    Thank you

    João Carmona

    Goofd morning.

    My question has been asked on bad terms.

    What I want to know is the maximum number of contacts that can be supported a contact group.

    Thank you

    João

    Hi João,.
    I have found no document written on a maximum number of contacts but some ISPs have a limit on the number of recipients in a message in order to care.

    Andrei Andrade TFC, TCSP, including, MCTS70-620 MCP70-290

  • Private Distribution list 25 maximum number of users

    On my system, users receive a message stating that they have added the maximum number of users to their distribution list private after the 25th Member via the TUI. The Administration of the unit guide indicates that there is not a limit on the number of users that can be added to a private Distribution list.

    Is there a limit of 25 reviews?

    This is a configurable parameter?

    Thanks in advance for any help!

    This is a bug in conversation - is taking over when we used to have to cram all members of the list in a binary blob and other things in an extended property to an Exchange 5.5 object back in the day - there have been forced space, so we had to limit the members of the DL.

    SA/APC removed this restriction everything at the time, but just UIS missed it - it is followed in this bug:

    http://www.Cisco.com/cgi-bin/support/Bugtool/onebug.pl?BugID=CSCed43179&submit=search

    Looks like the limit is fixed in version 4.0 (5) to come.

  • Limit of characters in multiple-selection list

    Hi people,

    Throw this out there to see if anyone has had this problem, and how they may have gotten around him.

    It seems that the Multi Select lists have a limit of 1000 characters, i.e. If you select so many items in the list and its over 1000 characters, you cannot save the file.

    I would like to say that ok we will have to just a few lists rather than a big workaround, but the customer fixed the list up in this way, and now that we create the hypersite to allow them to select items in this list, it's possible they could try on the hypersite select all. Clearly, it seems that we will have to have validation on the website to ensure that they do not select more than 1000 characters of a value of items in the list, but it would be useful if there was a way Eloqua to enable this.

    The one you have any ideas/advice?

    Something is very appreciated.

    Thank you

    Andrew Mc.

    I think the challenge is that the multiple-selection list is already built and already used in other functions.

    Andrew - you're right that to resolve this problem, you would have to update the list in Eloqua (again, just the option values, not the option names) and also the list in SFDC - you are on right track here.

    I hope this helps!

  • Delete in the database based on the values of the multiple selection list

    Hello

    I have a selectlist in Apex and a function in the database to make a deletion based on the value selected in the selection list.
    FUNCTION delete_batch (v_batch VARCHAR2) RETURN VARCHAR2
    IS
    BEGIN
    IF v_batch like 'M%'
    THEN
       RETURN ('A monthrun cannot be deleted');
    ELSE
       DELETE FROM so_disco_pa
       WHERE  batch = v_batch
       ;
       DELETE FROM so_batch_pa
       WHERE  batch = v_batch
       ;
       COMMIT;
       RETURN ('Batch '||v_batch||' has been deleted');
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
        RETURN ('Batch could not be deleted');
    END delete_batch;
    The package is called when the user clicks on the button Delete with the rest of the process:
    BEGIN
    DECLARE
    x   varchar2(100);
    BEGIN
    x := pa_control.delete_batch (:P3_BATCH);
    :F105_MESSAGE := x;
    END;
    END;
    Now, I want to change the selectlist for a multiple-selection list to make several batches can be deleted.

    How can I change my procedure and the procedure to remove lots based on the values selected?

    Thank you

    Diana

    dianap says:
    I got this far, but only the first batch selected in the list is being deleted. The other values of selected package are not removed.

    Help please.

    Move the RETURN statement out of your loop.

Maybe you are looking for