Apex 3.1 - checkbox for selecting email addr - problem w/ HTMLDB_MAIL.SEND

So prior to the upgrade to 3.1 I had working where I use a multi-select checkbox to show email addresses with a comma behind each email address it to send via:
HTMLDB_MAIL.SEND(
     p_to => :P24_EMAIL_LIST,
p_cc => :P24_CC_EMAIL_LIST,
And basically the list looked like this and was stored like this [email protected],:[email protected],:[email protected]
The way checkbox selection are stored in the database it has the colon separation. Prior to 3.1 it would send with colon : preceeding the email address, but now it doesn't. Any thoughts? I've tried using Trim(':' xxx) but not solved it yet
Message was edited by:
user604228

Hi Frank,
Can you show me the code you used to create the multi-select checkbox to show email addresses with a comma behind each email address it to send via:
HTMLDB_MAIL.SEND(
p_to => :P24_EMAIL_LIST,
p_cc => :P24_CC_EMAIL_LIST,
I'm trying to do the same or something similar to this [http://cloudisfuture.blogspot.com/2012/05/sendemail-to-multiple-contacts in apex-oracle.
I'm using Apex 4.0 on oracle express edition 11g.
Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Check multiple checkboxes for selected

    I want to see if I can reduce my code more. I have five check
    boxes on the screen and when they are all checked, I want to call a
    function. I don't want to have a long if statement because I will
    re-use this and would prefer to have as streamlined as possible.
    Here is my code now. Thanks.
    var checkboxListener:Object = new Object();
    checkboxListener.click = function(evt_obj:Object) {
    for (cb=1; cb<6; cb++) {
    if (_root["c"+cb+"_ch"].selected) {
    nextItem()
    for (cb=1; cb<7; cb++) {
    this["c"+cb+"_ch"].addEventListener("click",checkboxListener);
    function nextItem() {
    if (c1_ch.selected && c2_ch.selected &&
    c3_ch.selected && c4_ch.selected && c5_ch.selected
    && c6_ch.selected) {
    trace("do something") }
    }

    var checkboxListener:Object = new Object();
    var cbTotal:Number = 5;
    checkboxListener.click = function(evt_obj:Object) {
    var numChecked:Number = 0;
    for (cb=1; cb<=cbTotal; cb++) {
    if (_root["c"+cb+"_ch"].selected) {
    numChecked++;
    if(numChecked==cbTotal){
    trace("do something");
    }

  • Broadcast for selected email to selected data.

    Dear Expert,
    I have a requirement. where in i would like broadcast to the email on the basis of parameter set for ther user.
    for example
    for Business Partner 11004   
    report should go with filter bp = 11004 and date range.
    Regards,
    Chetana Kotian

    hi,
    you can achieve this by writing ABAP code for broadcasting.
    which is more reliable.
    otherwise you need to create different settings for different buyers and schedule it..\
    as it will increase the performance as well as defined..
    hope it helps to you.
    with regards,
    aanand

  • I have just upgraded to Mountain Lion and my signatures for my Mail is not showing up. I have the signatures inthe preference panes and selected for the email address, but when I make a new message, the signature shows as none and doesn't give me a choice

    I have just upgraded to Mountain Lion and my signatures for my Mail are not showing up. I have the signatures inthe preference panes and selected for the email address, but when I make a new message, the signature shows as none and doesn't give me a choice. Yesterday, the signatures were stacking instead of switching to the one I wanted to choose.

    I had this and fixed it.
    I had upgraded to Mountain Lion and my signatures in Mail were fine. But then about a week later, I got a new computer and used Migration Assistant to copy my stuff to the new machine. Upon opening Mail, I had all the correct Signature information in the Preferences>Signatures window, but nothing worked.
    After lots of hunting, I found the Signature Folder. It's in:
    Yourusername>Library>Mail>V2>MailData>Signatures
    Looking at my previous setup (which works) I saw in that folder two types of files: .webarchive and .siganture
    Looking in my new machine's Signature folder, I saw only the .webarchive folders, not the .signature folders
    Since this was literally a clone of my previous setup to a new machine, here's what I did:
    1. Quit Mail
    2. In Problem machine, go to
    Yourusername>Library>Mail>V2>MailData>Signatures
    3. Move the Signatures folder someplace safe, but out of the MailData folder
    4. Get the Signatures Folder from the working install (like a backup) and copy it to the MailData folder on the problematic machine
    5. Start Mail on the problem machine
    This worked for me. I don't know why Migration Assistant didn't copy the full signature folder, but this fixed it. It worked perfectly partly because I had just backed up with Carbon Copy Cloner and the very next day set up the new machine. I don't know where Lion or earlier versions of mail stored signatures, but the absence of the .signature filetype seems to be the problem.
    Hope this helps

  • Print program for the smartform for selecting the output type (email/fax)

    Hi All,
    Requirement :I have to create a print program for the smartform where the output type may be print out,email or fax ,so i need to put the condition for selecting the output type (like printout,email,fax).
    can any body please let me know how  to put the condition for selecting the desired  output type ?
    Thanks in advance
    Rahul

    Hi
    It is not the output type that has to be changed
    it is the MEDIUM which you have to change and configure
    for printout medium is 1
    for FAX medium is 2
    for MAIL it is 7.
    so instead of printout change the medium to 2 or 7 for the same output type and attach to the same driver program and smartform/form.
    Reward points for useful Answers
    Regards
    Anji

  • How to display the selection screen fields for selected checkboxes

    Hi all,
             I have 7 checkboxes, for each check box we have some seletion screen fields.if i select first check box,i want to display first slection screen fields only.
    and if we select more than one check box how to display the selection screen fields for selected check boxes,please help me this
    Thanks
    sriman.

    hi,
    Try this code
    report z_13317_sdn2.
    tables : mara, marc, dd03l.
    parameters : p_chk1 as checkbox user-command ABC,
                 p_chk2 as checkbox user-command PQR,
                 p_chk3 as checkbox user-command XYZ.
    select-options : s_matnr for mara-matnr modif id A,
                     s_ersda for mara-ersda modif id A,
                     s_werks for marc-werks modif id B,
                     s_lvorm for marc-lvorm modif id B,
                     s_tab for dd03l-tabname modif id C.
    data: v_chk1,
          v_chk2,
          v_chk3.
    at selection-screen output.
      loop at screen.
        if screen-group1 = 'A' or
           screen-group1 = 'B' or
           screen-group1 = 'C'.
            screen-input = 0.
           modify screen.
        endif.
      endloop.
      loop at screen.
        if v_chk1 = 'X'.
          if screen-group1 = 'A'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
        if v_chk2 = 'X'.
          if screen-group1 = 'B'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
        if v_chk3 = 'X'.
          if screen-group1 = 'C'.
            screen-input = 1.
            modify screen.
          endif.
        endif.
      endloop.
    at selection-screen.
      if sy-ucomm = 'ABC'.
        if v_chk1 = ' '.
          v_chk1 = 'X'.
        else.
          v_chk1 = ' '.
        endif.
      endif.
      if sy-ucomm = 'PQR'.
        if v_chk2 = ' '.
          v_chk2 = 'X'.
        else.
          v_chk2 = ' '.
        endif.
      endif.
      if sy-ucomm = 'XYZ'.
        if v_chk3 = ' '.
          v_chk3 = 'X'.
        else.
          v_chk3 = ' '.
        endif.
      endif.
    Regards,
    Sailaja.

  • How to select email account for sending notifications

    I have three calendars (for example, C1, C2, C3). My Mail application has 3 email accounts (A1, A2, A3).
    How can I make the calendar send notifications using a selected email account?
    For example, I want all calendar email notifications to be sent using account A2.
    I'll appreciate your help.

    sd0084,
    If I change, all my emails would go out the selected account.
    Correct.
    I routinely use that method, which means that I must select a different account in the "New Message" window "From:" field when I choose to send mail from a different account.
    ;~)

  • Can log into FaceTime it then asks what I want to use as contact so I select email address it says verifying then asks for apple if again and just keeps repeating the process

    Can log into FaceTime it then asks what I want to use as contact so I select email address it says verifying then asks for apple if again and just keeps repeating the process

    Hello Magsbingham
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    -Griff W.

  • Which email addr for my apple id?

    I'm confused which of my email addrs Apple uses for my ID. I have an old email addr which Apple has retained for its Store, but I have a new email addr which Apple has accepted for my iCloud account. I want to consolidate the two accounts so I have only the new email addr for both. I've tried to use the Change Password process & have asked for Apple to send its present acct info for me, but after half an hour or more, no email from Apple to help me. Any advice?

    Apple does not merge Apple ID accounts. Not for anyone. Ever.
    What you should have done was keep the old Apple ID and just changed the primary email address associated with that ID and then continued to use it for iTunes and also use it for iCloud. But unfortunately, if you have used the new email address for your new Apple ID, then it is too late to do that and there isn't much anyone can really do now to assist you with this.

  • Is it possible to select a permanent font and colour for my emails on mac OSX 10.9.1

    Is it possible to select a permanent font and colour for my emails on mac OSX 10.9.1

    Sadly that doesn't work, or I cant make it work for text only signature

  • When a checkbox is selected with multiple items, how do I display those items at the bottom of a page so that follow-up on checked boxes can occur

    Hi,
    My name is Shawn and I work for Pfizer, an enterprise client of yours. We have thousands of LifeCycle licenses, but I don't know whom to contact to get support so I'm posting my question here.
    I am creating a PDF form that lets the user check a box when the want to select a web metric they need set up for their website. What I'd like to do is, once a user has checked this box (there are over 100), all the boxes they've checked out of the 100 or so metrics pop-up / show up / dynamically generate at the bottom page, and have additional checkboxes next to them for the development teams "eyes only" that they will have to in turn, when the form is emailed to them filled out, select TEST and VERIFY checkbox for each metric showing that they've tested and verified the metric was configured, and then a text field prompting them to say HOW they tested and verified / what method.
    How do I do this using LiveCycle?
    Thanks,
    Shawn

    What you're looking to do is created a dynamic form that changes on the click of a button.  This is done through script, and you have a couple of choices, there are several postings in these forms that provide guidance in this area (instancemanager is used for this dynamic capability).  Your second option is to use action builder and it will provide guidance for you as well.  Click on Tools > Action Builder.  Also depending on what version you have install location/EN/Samples/Forms/Purchase Order/Dynamic Interactive may help.

  • PLEASE help!! I use Outlook for my email and the Mail App Icon in my dock was also storing all my emails. So, I tried to delete ONLY the emails in the Mail App but somehow (under Preferences maybe?) I also deleted all my emails in my Outlook inbox.

    PLEASE help!! I use Outlook for my email and the Mail App Icon that is in my dock, that I know nothing about, was also storing all my emails. So, I tried to delete ONLY the emails in the Mail App but somehow (under Preferences maybe?) I also deleted ALL my OUTLOOK emails in my inbox.  Can someone please please tell me if there is a way to get my Outlook inbox emails back OR EVEN the emails that were in my Mail app - because even tho I never use the Mail app, at least the emails would be there.
    When I was trying to delete the emails in my inbox for the Mail app - I followed THESE directions.  It did in fact clear my inbox for the Mail app.  But then I went to log on to my Outlook account and EVERY SINGLE EMAIL was gone.  And not in the Deleted box.  Just gone.  Here are the directions I followed that screwed everything up.  Please help.
    Top menu bar, Mail > Preferences > Accounts > Mailbox Behaviors.
    Uncheck "Store deleted messages on the server".
    At the drop list for "Permanently erase deleted messages when", choose "Quitting Mail".
    Next...
    Top menu bar, Mail > Preferences > General.
    At "When searching all mailboxes, include results from", uncheck "Trash".
    Select All = command A

    i found out my prob!
    here is what you do.
    go to the "system preferences" on your dock.
    click "software updates".
    click "installed software"
    if it shows something about a recent update about "EFI UPDATE, FIRMWARE, THUNDERBOLT" or anything like that, exit out of it.
    go to mail.
    click "mail" at the top.
    click "preferences...".
    find the account you are having trouble with, once you do, make sure its highlighted, then click the "-" at the bottom of the window (this will only effect that mail account, it will not effect your ical weather or not its synced thought that email account)
    hit the "+" (right next to the "-") and add your accout back!
    its something with that update that effected mail, i hope this works out for you, if not reply back

  • How to use a SelectAll box / checkbox to select multiple checkboxes!!

    I have a question regarding checkboxes.
    My jsp page has the following layout generated dynamically based on a drop down selection box.
    ID State Initiated Released Locked
    US Initiated X
    Arg Released X X
    Ger Released X X
    Ita Locked X X X
    The Initated, Released & Locked columns are checkboxes. The checkboxes are enabled or disabled based on the State. This means that if the state is Initaited, the user will click the desired checkbox, while the others in the same row will be disabled, and so forth.
    Now all I want is the option of having a SelectAll button / checkbox (something like in yahoo,hotmail) for each column (Initiated,Released,Locked), which when clicked will select all the desired checkboxes under them.(which will select only those in the respective state).
    This is basically to make life easier for the user in case there are some 100 rows. Instead of selecting each individually, he can just click a single button for each column. He can then unselect whichever one he wants.
    I know this can be done using javascript. Remember that this list is not static, but dynamic. So I cannot send a fixed no. into my javascript function to iterate. Im using <nested:iterate> & <nested:checkbox> for iterating & displaying the checkboxes.
    If someone has a solution on it please do send me the code snippet.
    Thanks.

    Javascript is the only solution for something like this.
    I presume you are using struts indexed properties?
    Remember that this list is not static, but dynamic. So I cannot send a
    fixed no. into my javascript function to iterateTrue, but once your JSP is generated you know exactly how many controls you have generated using the varStatus of a iterate tag, or just looking at the size() of the list being iterated on. You can use that to generate the javascript function/call.
    Also you can use javascript without knowing exactly how many are there. You can actually discover the fields on the page.
    Hope this helps,
    evnafets

  • HT204053 I have an old apple id that is no longer valid coming up on my iphone and is now now allowing me access to emails because i do not have a valid password. when i click to reset the password and ask for an email - the email never arrives to any of

    i have an old apple id coming up on my iphone. i do not have a valid password and every attempt to reset it either by email or by questions does not work. When i select email to reset i do not receive an email in any of my mail boxes. when i select ask questions - my answers do not match
    please help

    If you're talking about an old iCloud ID, you have to delete the old account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I updated to iOS 8 on iPhone 5s and now iMessage will not verify my email. It has said "Verifyng" since yesterday, but has not sent a verification email. I checked my iCloud settings for that email address and it shows "pending".

        I updated to iOS 8 on iPhone 5s and now iMessage will not verify my email address to use to send/ receive messages. It has said "Verifyng" beside it in settings since yesterday, but has not sent a verification email. I have also tried Adding it as a new email address several times, but get the same outcome.  I can still send/ receive texts from my phone number, just not from the email address.
         In my iCloud settings under Contact Information for that email address and it shows "pending".  When I select "Resend Verification Email" I get "Cannot Connect to iCloud".

    Hello, Dorian071.  
    Thank you for visiting Apple Support Communities. 
    Here is the best article to reference when experiencing issues with iMessage activation issues.
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    Cheers,
    Jason H.

Maybe you are looking for

  • Ragged right with Flat file in SSIS for last column

    When I am importing from Flat file to OLEDB using DATA flow in SSIS, It has fixed length  for each column but last column had length of 20 So I used for last column as {LF} and input width 0 & output width 20 but facing problem of last column has sho

  • I have an error since I updated progams

    I downloaded several Adobe program updates and now I get the following error and it will not shut off for any reason: Micorosoft Visual C++ Runtime Library Runtime Error! Program C\Program Files (x86)\Adob- R6034 An application has made an attempt to

  • Parallel Processing in Oracle

    Gurus, I need to run three cursors at a time. Is it possible in Oracle? If yes then help in this issue. Thanks in Advance.

  • I know a App Store Bug .. Want to report to Apple

    I know how to download a Paid -up for free without any code or any software .. I want to report to Apple abt it ..

  • Custom WebAuth WLC 5760

    I want to setup a custom webauth for my WLC 5760. I already downloaded the webauth bundle and put it in WLC via Command Download in WLC GUI. According to Guide, after the download completed, the custom page will appear in custom page dropdown for web