Multi Select Item to be passed in URL ( Please help urgent)

Hi ,
I have an item P1_PRODUCT('SOAP','PASTE','BRUSH')  in page 1.
User selects multiple products and submits and a report is displayed .
I have an hyper link on one of the column and when user clicks this > target is URL
and i have passed P1_PRODUCT to page2 using the link
P2_PRODUCT is hidden item.
javascript:popUp2('f?p=&APP_ID.:2:&APP_SESSION.:P2_PRODUCT:&P1_PRODUCT.',500,500);
My problem here is no matter what i do P2_PRODUCT is always set to only one value. not able to pass all three at once.
Please help...

It is possible to include commas in item values
2.5 Understanding URL Syntax
List of item values used to set session state within a URL. Item values cannot include colons, but can contain commas if enclosed with backslashes. To pass a comma in an item value, enclose the characters with backslashes. For example:
\123,45\
But it may be that your item value contains colons.
There could be workarounds for you, depends on what your issue actually is - I'm not convinced is a delimiter issue, rather timing on session state values. Are you able to produce a demo on apex.oracle.com?

Similar Messages

  • Query on Multi-select Item and STRING_TO_TABLE

    Hi everyone - here's the scoop:
    I've got a multi-select item on a US state field that returns one or more state ID selected (eg. '15:26:49'). I want to use that to find rows in a table where the state ID is one of those values. State ID is indexed and I want to ensure that the index can be used, so I don't want to be doing "where instr(...)".
    I read a post on Ask Tom - http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:110612348061 - where he parses a string of values into a table that can be used in an IN clause, thus allowing use of the index.
    Here's my question - I'd like to take advantage of APEX_UTIL.STRING_TO_TABLE to do my parsing, but it returns APEX_APPLICATION_GLOBAL.VC_ARR2. I tried a bunch of different casts but couldn't make it work with a query done as per Tom Kyte's post. Ultimately I wrapped STRING_TO_TABLE and just "copy" the VC_ARR2 to a table of numbers, like this:
    create or replace function string_to_numtbl(p_string in varchar2, p_separator in varchar2 default ':')
    return num_table as
    l_data num_table := num_table();
    l_vc_arr2 APEX_APPLICATION_GLOBAL.VC_ARR2;
    begin
    l_vc_arr2 := APEX_UTIL.STRING_TO_TABLE(p_string, p_separator);
    FOR z IN 1..l_vc_arr2.count LOOP
    l_data.extend;
    l_data(l_data.count) := l_vc_arr2(z);
    END LOOP;
    return l_data;
    end;
    So I can use the multi-select to feed an IN clause. I'm still getting familiar with casts, but it seems to me thought that there ought to be a straighter path to allow the return of APEX_UTIL.STRING_TO_TABLE to be used in an IN.
    Any thoughts?

    VC_ARR2 is an index by table and in the Tom's example he is using a nested table which
    has a different structure and allows different operations. To make this short, you will not be
    able to use VC_ARR2 in a SQL statement. Yes, it would be good since ApEx has its own
    function to convert a string to a table and back. I have no problems using Tom's examle.
    Here, you will find some description on differences:
    http://www.unix.org.ua/orelly/oracle/prog2/ch19_09.htm
    and here, you may want to se the utilization of PL/SQL collections on my demo application:
    http://htmldb.oracle.com/pls/otn/f?p=31517:84
    http://htmldb.oracle.com/pls/otn/f?p=31517:87
    Denes Kubicek

  • TS1702 Erorr notice "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled." Please Help me

    Dear Heldesk Center, I remove clash of clan on my Ipad , then reinstall. Have error notice "This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or cancelled." Please Help me

    Make sure you are using the correct App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the country/region where you are located.
    9. Tap "Done".
    Note: If the change doesn't take effect, sign out of account and sign in again.

  • Query a table using Multi Select Item

    Hi everyone!
    I got a page where I have this multiselect item, and I want to query a table using its values.
    For example: The Multiselect item has this values: 1,2,3,4,5,6,7,8,9 and 10
    And I want to query every person who has ID_CLASS 1,4,7 and 9 by selecting those IDs from the list, and when I click que Consult button the Report displays those persons.
    Whowever I can't accomplish this, I was trying to find a post about this without success.
    Can anybody help me with this?
    Thanks!!

    Hi,
    This is my problem, I select 2 or more options in the multiple select item, then after I click the "Consult" buttom it submits the page, however only 1 option is highlighted. For example I choose the first two options, then I click Consult and the page is submitted. After that only one of the 2 options are selected, but I need to get the 2 options highlighted as selected items.
    If I clear cache I think I'll lost everything. (selected items)
    Thanks again!

  • Reg Batch in delivery  some items are not showing gross weight please help

    please give me your help
    in Deliveries some items are not showing gross weight
    please give me some help

    Dear Ramsuresh,
              Check are maintaining gross weight in the Master data of those items or not.
    If not maintain in the Material master then create delivery
    I hope it will help you
    Regards,
    Murali.

  • Everytime I want to update the latest iTunes or iPhone software I get the following error message "Cannot open the URL" please help?

    I need to update my iTunes and my iPhone 3GS to the latest version and evertimes I click on "update" I get the following error message displayed - "cannot open URL".  I have checked the permissions on my windows firewall and iTunes is not blocked.  PLease can anyone give me some other suggestions as its really frustrating and I want to download ringtones etc but can't do so without the latest software versions of iOS etc.  Please help?  Thank you

    Try temporarily disabling your firewall and antivirus software and try again...
    See here for Connection Issues
    http://support.apple.com/kb/TS1379
    From Here
    http://www.apple.com/support/itunes/troubleshooting/

  • Sending url please help

    Hi. How can I sent responce to server using URL class?
    I do like this:
    URL url = new URL("http://test.com:5430/");
    URLConnection urlConnection = url.openConnection();
    urlConnection.setDoInput(true);
    urlConnection.setUseCaches(false);
    urlConnection.setDoOutput(true);
    urlConnection.setRequestProperty("content-type", "application/x-www-form-urlencoded");
    urlConnection.setRequestProperty("Accept-Language", "th,en-us;q=0.5");
    // send data if it has
    OutputStreamWriter out = new OutputStreamWriter(urlConnection.getOutputStream());
    out.write("?username=xxx&password=xxx");
    but it doesn't work. Please help. Thanks.

    Thanks everybody! I solved this problem. It was more easy than I thought:
    URL url = new URL("http://test.com:5430/?username=xxx");
    URLConnection uc = url.openConnection();
    uc.setDoOutput(true);
    uc.setDoInput(true);
    // Read from Connection
    InputStream in = new BufferedInputStream(uc.getInputStream());
    Reader r = new InputStreamReader(in);
    int c;
    while((c = r.read())!=-1)
         System.out.print((char)c);
    }

  • Can't pass boot screen please help!

    My macbook pro will not boot pass the apple screen. I power on and it goes to the boot screen and the loop spins like its loading but it dosent go passed this screen. What can I do? I am stuck please help.

    I also have a similar issue. I do not have the ability to to boot to an install disc because the optical drive is no longer functioning. Unfortunately I do not have the ability to use a shared optical drive from another computer either. So repair permissions, repair disk, archive and install, and erase & install cannot be done.
    I cannot boot to Safe Mode, which leads me to believe it has to be something with the login window itself.
    Found similar case on forum and when they ran in verbose mode it returned the following:
    " /System/Library/Coreservices/LoginWindow.app/Contents/MacOS/loginwindow: Login Window Application Started"
    " /usr/sbin/AppleFileServer: Server crashed and exited with status 4.\n"
    I understand this example is from OS X Server, however, I'm guessing this has something to do with the same process.
    What should I try next? Are there any single user options?

  • HT2480 When I am setting up exchange / outlook mail, I am not getting option to select the folders for syncing, can you please help me to solve this problem

    In outlook mail mails are not getting downloaded and option to select the folders to sync is not visible in the exchange setup

    See:
    * http://www.ehow.com/how_6609141_remove-bearshare-spyware.html
    * http://www.fanhow.com/answers/question-77222-how-to-delete-bearshare-search-from-firefox
    You can look for a "Mediabar" program under "Control Panel > Programs and features"
    See also this forum thread about BearShare:
    *[[/questions/792580]]
    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    *Open the Customize window via "View > Toolbars > Customize"
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Podcast on external URL, Please help!

    Hi All
    I have developed a website in iWeb'08, published it to a folder and uploaded it to my own URL. Now what I want to do is add a podcast, but I suspect that this is only possible with .mac! My own hosting company does have php support, so how can integrated the RSS stuff into the site. I imagine I have to get out text edit and do some surgery on the html file, not an issue if I knew what to do or be looking for.
    Thanks

    Sorry but here is another update. I now have the subscribe button working so that the rss feed functions. This required some editing of html and xml files. The good news a site created with iWeb'08, with a podcast, and rss feeds, hosted on a URL other than .mac can function! All that is missing is the media file, ie the m4v or mp3 file. when I browse to it in I get the QT logo and question mark.
    If any one has a work around for this, then please let me know.

  • My hp simple pass not working please help me HP expert

    i have tried many times to open my simple pass but isn't open all the time when open it and reinstall by using recovery manager?? my hp laptop model is... HP envy 4-1048tx ultrabook windows 7 home premium 64bit

    Hi Nelbok1724,
    I see that you are having problems with your fingerprint reader on your HP ultrabook, is this correct?
    I have a few questions for you so that I can help?
    How long have you been having the problem?
    What troubleshooting steps did you perform?
    I am including several links that can help solve the problems with the fingerprint reader.
    This link has steps to resolve the issue by using system restore options and the HP recovery manager.
    This link has more extensive troubleshooting steps for resolving fingerprint reader problems.
    This last link is to a thread with customer's with a similar problem, the most common fix is uninstalling the drivers and software for the fingerprint reader from device manager and restarting the pc. The pc will automatically reinstall the drivers after restarting.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • I have problem with previous billing purchase,now i cant change my credit card because my previous credit card was closed,and there in none selection between the visa mastercard and amex,please help i want to to purchase,and change credit card

    please help me i already input another card and the securitycodes but the device said for assistance,contact iTunes Support at www.apple.com/support/itunes/ww/.
    it doesnt help at all please help me
    i want to purchase and change credit card

    This is a user-supported forum. You are talking to other users here, not Apple. As the advice suggested, contact iTunes Customer Support at: http://www.apple.com/support/itunes/contact/

  • How can i gain access to my data on a Time Capsule after a fresh install of Mavericks? I can't access any backups through Time Machine... They appear purple/transparent, and I can't even select them to view their contents. PLEASE HELP!!!

    So, I've got several thousand photos, and a decent amount of videos of my daughter, along with a lot of stuff for work stored on my Time Capsule, and now I can't access any of it. I did a fresh install of Mavericks on my MacBook Pro last week sometime, and haven't been able to figure out how to get my files back. Please Help!!! My daughter is 2 and a half, and every picture/video I have of her is locked on this thing. I was planning on making some photo/video projects fo my wife for Christmas, and now I'm definitely not going to be able to pull it off. Her birthday is at the end of January, though, so if I could have it by then, that would rule!
    Basically, the bar on the right of the screen has some gray dates, which I can access (all backups after the Mavericks install), and purple dates that go all the way back to March (when I originally purchased and began using the TC) which deny me access/viewing. It's possible that I created a slightly different user name when I reset my MacBook, which I guess is most likely the cause, but I have no idea what to do now to correct it. Thanks for taking the time!

    Mavericks does really nasty stuff..
    Try manually mounting the sparsebundle and extract the files you want.
    Yet another Pondini reference. http://pondini.org/TM/15.html
    We have avoided Mavericks you see knowing that it would cause these kinds of issues..
    You never ever load a new OS without doing a disk image beforehand.. TM is not reliable enough or trustworthy to be depended on.
    If none of the above work..
    I would get a USB drive on the computer and install Mountain Lion or whatever OS you had before you unfortunately upgraded to Mavericks.. Then use TM from that decent installation but mount the sparsebundle and choose the backup from a date well before mavericks was installed.
    Once you have extracted the files.. or even done a full restore you might be able to extract the files you want.

  • An arbitrary selection of piano keys are muted. Please help.

    Dear All,
    My problem is this: When I play midi instruments on my piano, a random set of keys are suddenly muted.
    I use Logic Pro 9, and I'm a rookie. Hence, I'm not sure whether this is a bug or merely some extremely weird adjustment I've managed to do. I've checked the piano roll (it works splendidly); I've checked the mute tool; I've tried opening a new project; I've tried "reset all media regions"; I've tried restarting the program; I've tried restarting the computer. Nothing works.
    Perhaps I missed something, but I don't know what that would be. This I know: All keys sound on Digital Performer; and after I've restarded Logic, all keys sound - for a few seconds. Then quiet.
    After my first two restarts, I received a window, asking me to reset all media regions (which I did to no avail). Perhaps this window identified the error, but it won't come up any longer, so I can't quote the whole thing.
    If anyone has any clue, please help me. I'm quite desperate.
    Thanks in advance,
    John

    Hi,
    obviously its a wrong use of org.apache.myfaces.trinidad.event.SelectionListener
    Caused By: java.lang.InstantiationException: org.apache.myfaces.trinidad.event.SelectionListener
    The class cannot be instantiated which indicates a failed argument (or missing argument)
    Frank

  • Wrong selection in itunes to update my iphone5 - please help!!!

    Can anyone help me - pleeeeease!!
    I have had my iphone 5 for approx 2 months.  Everything really great and was loving it.
    Until last night!
    I had my itunes open, as I was updating my library on my nano. 
    I then swapped over on to my iphone5 to download pictures from my iphone onto my Dell PC.
    Because my itunes was still open, it asked me to update my iphone5 - as it obviously recognised that I hadn't synced my new phone on itunes - it was only the info from my previous iphone4 from a few months ago.
    It asked me if it was a new iphone or existing iphone - stupidly, I chose existing iphone.
    Itunes then proceeded to restore my iphone - which wiped all my new contacts, songs, ringtones, alert tones folders, text messages and more importantly, lots of wedding photos, from a wedding me and partner had been to on saturday, including a video of my partner's best man speech
    I've managed to get most of all the wedding photos back on to my ipod (not quite sure how I managed that) but there is no sign of the video on my iphone or ipod.
    I'm more gutted about the video for the best man speech - as it was the only thing i hadn't downloaded onto Facebook!
    Last time i backed up my iphone was on saturday - 03/08/2013 and this is the info I want back on my iphone.
    Does anyone have any idea how this can be sorted? I need my iphone to be as it was for this back uo on saturday night.
    Any help or information anyone can give me would be greatly appreciated.
    Thank you.

    thanks for your reply.
    hmm, I'm a bit of a technophobe, so not quite sure how to do that - sorry.
    I normally just back up to icloud every other day.
    Would this be through itunes?

Maybe you are looking for

  • Videos squeezed in web-gallery

    when importing 16:9 content and watching it in safari or firefox it turns out that video files are distorted. example: http://gallery.me.com/nmacheck#100349 look at the last couple of files - they are video content. only when downloading the files th

  • I'm trying to find the pdf files that I downloaded on my ipad3.

    i downloaded from tpt--a teaching website. i am sure they downloaded because a yellow bar appeared across the top of my screen. i have both acrobat reader and ibooks but the files are not there....

  • Is this join possible?

    I have 3 tables, let's call them A B and C. I will use A1, A2 to differentiate between different rows in a table. A will be the base table. I want to join B and C to A, but maintain separate rows for each join on B or C So if would look lik A1 null C

  • Function keys Triggers

    Guyz, Kindly correct me the function keys associated with triggers in oracle forms 6i. F1= (Display properties of an Item ID) F2= ? F3= ? (KEY_CLRFRM OR KEY_CRLREC) ? F4= ? F5= (KEY-MENU) F6= ? F7= (KEY-ENTQRY) F8= (KEY-EXEQRY) F9= ? F0= (KEY COMMIT)

  • Announcement Application

    Hi, Our customer need an announcement application with the following properties: 1. Announcements are added via Portal interface 2. Announcements are displayed as scrolling news 3. When a new annoncement added, it will automatically send mail to user