Create dropdown that emails based on info

I am creating an email dropdown list that I want to "user" to push the button and based off the airport code menu item that is selected directs to whom the email gets sent. (Each menu item has more than one email attached to it.)
I have already discovered that Livecycle doesn't like multiple buttons to accomplish this.  I have read some java/xml that has led me in a direction, but I am pretty lay if it doesnt apply directly to me ing and need bit of hand holding the first time round.  My attempt to run it give me a dropdown not declared even though I used the designer to accomplish the dropdown.
Can anyone help me as to what the java, xml, or both that I need?

Hi Jo,
When you preview the form from within LC Designer, it will give a generic/random name. However when you go outside of LC and open the form in Acrobat, the email attachment will have the name of the form (which could be set to Change Request before you send it out).
Changing the name of the form is a security issue and requires a trusted function. This is just some script in a javascript file, but that .js file needs to be installed on every computer that will use the form. It depends on who will be using the form as to whether this is more trouble than it is worth.
Short answer, it can be done, but it takes some additional work and can be a pain to maintain. There is an example of a form and .js file here.
Glad you have it working,
Niall

Similar Messages

  • To send reminder emails based on info from a csv/excel file -year along reminders to different addressee automatically

    I am trying to create reminders from csv file. This consists of reminder date, descriptions and email ids where reminder to be sent. In our instituition we have hundreds of reminders to be set up and to remind various people through exchange server.
    There are simple Google spreadsheet scripts available (https://docs.google.com/document/d/1IbCbxutPxqE9vIJV5jXNghPXQzu7rCtXY05oAH9nnA0/edit?pli=1) to do this job easily without any manual intervention. But we want to use Outlook. 
    Its not clear sharing calender (we also have O365) send reminders or should be invited and accepted. Also invitees could not be imported there seems to be a bug in csv import  feature in outlook.
    Could somone help plz?

    Hello Doctsh,
    Everything is possible but not everything is built-in. To amend that Microsoft introduced VBA (Visual Basic for Applications) to their Office products. Hence you need to understand programming to make your desired solution. The learning curve of VBA
    is fairly steep but once you have the grip of it you also have a great tool where everything is possible.
    Internet is full of samples. In your case I'd suggest you start from scratch with VBA. Just enter 'VBA beginner' in Google and you have a wealth of information at your fingertips.
    Then you can follow Diane's examples. She's an expert in smart Outlook programming.
    Best regards George

  • Forms central - creating fields that total

    Anyone know if you can create fields that total based upon user's response?  example field A is 50, Field B is 25,  Field C the total is 75?

    Not with fields on a web form created with FormsCentral. You can use PDF forms that include automatic calculations with FormsCentral, but you'd have to use Acrobat to set them up.

  • Creating a target group based on the BP email address only in CRM

    Hi there,
    I am currently trying to create a target group based on the business partner email address only.
    I have a list of over 1000 email addresses - these email addresses equate to a BP in our CRM system, however I do not have a list of the equivalent business partner numbers, all I have to work on are the email addresses.  With these 1000 BP email addresses I need to update the marketing attributes of each of these 1000 BP records in CRM.
    What I need is a method to find the 1000 BP numbers based on the email addresses and then use the marketing expert tool (tx. CRMD_MKT_TOOLS) to change the marketing attributes on all of the 1000 BPs.
    The issue I am having is how can I find the list of BP numbers just based on the BP email address, I tried creating an infoset based on table BUT000, BUT020 and ADR6 but I after creating attribute list & data source for this I am stuck on what to do next. In the attribute list the selection criteria does not allow me to import a file for the selection range.  I can only enter a value but I have 1000 email addresses and cannot possibly email them manually in the filter for the attribute list.   I also looked at imported a file into the target group but I do not have any BP numbers so this will not work.
    Does anyone know a method where I can create a target group based on the email addresses only without having to do any code?
    Any help would be most appreciated.
    Kind regard
    JoJo

    Hi JoJo ,
    The below report will return you BP GUID from emails that is stored in a single column .xls file and assign the BP to a target group.
    REPORT  zexcel.
    * G L O B A L D A T A D E C L A R A T I O N
    TYPE-POOLS : ole2.
    TYPES : BEGIN OF typ_xl_line,
    email TYPE ad_smtpadr,
    END OF typ_xl_line.
    TYPES : typ_xl_tab TYPE TABLE OF typ_xl_line.
    DATA : t_data TYPE typ_xl_tab,
           lt_bu_guid TYPE TABLE OF bu_partner_guid,
           ls_bu_guid TYPE  bu_partner_guid,
           lt_guids TYPE TABLE OF bapi1185_bp,
           ls_guids TYPE  bapi1185_bp,
           lt_return TYPE bapiret2_t.
    * S E L E C T I O N S C R E E N L A Y O U T
    PARAMETERS : p_xfile TYPE localfile,
                  p_tgguid TYPE bapi1185_key .
    * E V E N T - A T S E L E C T I O N S C R E E N
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_xfile.
       CALL FUNCTION 'WS_FILENAME_GET'
         IMPORTING
           filename         = p_xfile
         EXCEPTIONS
           inv_winsys       = 1
           no_batch         = 2
           selection_cancel = 3
           selection_error  = 4
           OTHERS           = 5.
       IF sy-subrc <> 0.
         CLEAR p_xfile.
       ENDIF.
    * E V E N T - S T A R T O F S E L E C T I O N
    START-OF-SELECTION.
    * Get data from Excel File
       PERFORM sub_import_from_excel USING p_xfile
       CHANGING t_data.
       SELECT but000~partner_guid FROM but000 INNER JOIN but020 ON
    but000~partner =
       but020~partner
         INNER JOIN adr6 ON but020~addrnumber = adr6~addrnumber INTO TABLE
    lt_bu_guid FOR ALL ENTRIES IN t_data WHERE adr6~smtp_addr =
    t_data-email.
       CLEAR: lt_guids,ls_guids.
       LOOP AT lt_bu_guid INTO ls_bu_guid.
         ls_guids-bupartnerguid = ls_bu_guid.
         APPEND ls_guids TO lt_guids.
       ENDLOOP.
       CALL FUNCTION 'BAPI_TARGETGROUP_ADD_BP'
         EXPORTING
           targetgroupguid = p_tgguid
         TABLES
           return          = lt_return
           businesspartner = lt_guids.
    *&      Form  SUB_IMPORT_FROM_EXCEL
    *       text
    *      -->U_FILE     text
    *      -->C_DATA     text
    FORM sub_import_from_excel USING u_file TYPE localfile
    CHANGING c_data TYPE typ_xl_tab.
       CONSTANTS : const_max_row TYPE sy-index VALUE '65536'.
       DATA : l_dummy TYPE typ_xl_line,
              cnt_cols TYPE i.
       DATA : h_excel TYPE ole2_object,
              h_wrkbk TYPE ole2_object,
              h_cell TYPE ole2_object.
       DATA : l_row TYPE sy-index,
              l_col TYPE sy-index,
              l_value TYPE string.
       FIELD-SYMBOLS : <fs_dummy> TYPE ANY.
    * Count the number of columns in the internal table.
       DO.
         ASSIGN COMPONENT sy-index OF STRUCTURE l_dummy TO <fs_dummy>.
         IF sy-subrc EQ 0.
           cnt_cols = sy-index.
         ELSE.
           EXIT.
         ENDIF.
       ENDDO.
    * Create Excel Application.
       CREATE OBJECT h_excel 'Excel.Application'.
       CHECK sy-subrc EQ 0.
    * Get the Workbook object.
       CALL METHOD OF h_excel 'Workbooks' = h_wrkbk.
       CHECK sy-subrc EQ 0.
    * Open the Workbook specified in the filepath.
       CALL METHOD OF h_wrkbk 'Open' EXPORTING #1 = u_file.
       CHECK sy-subrc EQ 0.
    * For all the rows - Max upto 65536.
       DO const_max_row TIMES.
         CLEAR l_dummy.
         l_row = l_row + 1.
    * For all columns in the Internal table.
         CLEAR l_col.
         DO cnt_cols TIMES.
           l_col = l_col + 1.
    * Get the corresponding Cell Object.
           CALL METHOD OF h_excel 'Cells' = h_cell
             EXPORTING #1 = l_row
             #2 = l_col.
           CHECK sy-subrc EQ 0.
    * Get the value of the Cell.
           CLEAR l_value.
           GET PROPERTY OF h_cell 'Value' = l_value.
           CHECK sy-subrc EQ 0.
    * Value Assigned ? pass to internal table.
           CHECK NOT l_value IS INITIAL.
           ASSIGN COMPONENT l_col OF STRUCTURE l_dummy TO <fs_dummy>.
           <fs_dummy> = l_value.
         ENDDO.
    * Check if we have the Work Area populated.
         IF NOT l_dummy IS INITIAL.
           APPEND l_dummy TO c_data.
         ELSE.
           EXIT.
         ENDIF.
       ENDDO.
    * Now Free all handles.
       FREE OBJECT h_cell.
       FREE OBJECT h_wrkbk.
       FREE OBJECT h_excel.
    ENDFORM. " SUB_IMPORT_FROM_EXCEL
    Just copy paste the code and run the report select any local xls file with emails and pass the target group guid.
    snap shot of excel file:
    Let me know if it was useful.

  • Mail does not create new emails based on the highlighted mailbox, but rather the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part?

    Mail does not create new emails based on the highlighted mailbox, but rather according the receiving mailbox of whatever individual email happens to be highlighted. This was not the case prior to Lion. Is this a bug or an error on my part? (I do have the setting for creating new emails from the highlighted mailbox checked.)

    The questions about time was not only because of thinking about the Time Machine, but also possible impact on recognizing which messages remaining on a POP server (doesn't apply to IMAP) have been already downloaded. In the Mail folder, at its root level, in Mail 3.x there is a file named MessageUidsAlreadyDownloaded3 that should prevent duplicate downloading -- some servers may not communicate the best with respect to that, and the universal index must certainly be involved in updating that index file. If it corrupts, it can inhibit proper downloading. However, setting the account up in a New User Account and having the same problem does not point that way, unless your POP3 server is very different from most.
    That universal index is also typically involved when messages are meant to be moved from the Inbox to another mailbox -- in Mail 3.x the message does not move, but rather is copied, and then erased from the origin mailbox. That requires updating the Envelope Index to keep track of where the message is, and should keep track of where it is supposed to have been removed after the "Move".
    Ernie

  • When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified

    When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified because it is already in use ??? What am I doing wrong?

    settings -> iTunes & App Store
    click on apple ID listed there
    select Sign Out
    sign in with the proper account
    from then on, when the store ask for your password it should be with the correct ID

  • How can I remove my very old Apple ID from my Iphone 4S as I have created other apple IDs.The old one is still staying on my mobile but that email doesn't exist anymore. I cant rest my mobile as this email address is staying my icloud setting.

    Q:-
    How can I remove my very old Apple ID from my Iphone 4S. The old ID is still staying on my mobile but that email doesn't exist anymore. I cant rest my mobile as everytime i tried it asks ID password which I don't remember.

    Hello mushysun,
    Thanks for using Apple Support Communities.
    If you did not sign out of your Apple ID on your iPhone before creating a new one, then you will need to sign back in with your previous Apple ID and then sign out.  If you do not remember your password and do not have access to the email account, then you can reset your password by using the security questions.
    If you forgot your Apple ID password - Apple Support
    Have a great weekend,
    Alex H.

  • I just created an iCloud email and I want to use that email for my iTunes account as well. I need help suiting the old apple I'd because I do not remember anything associated with that email and I don't know the security questions

    I just created an iCloud email and I want to use that email for my iTunes account as well. I need help switching the old apple ID because I do not remember anything associated with that email and I don't know the security questions or the login for that old email.

    You cannot do that.  The AppleID you used to create the iCloud account is an active primary email address.  The email address you created with the iCloud account is also an active primary email address (all Apple domain email address automatically become AppleIDs as well).  You cannot replace the primary email address on one active AppleID with the primary email address on another, active AppleID.
    You can use your iCloud email/AppleID with iTunes, but it will be a separate account, so all your previous purchases remain tied to the other AppleID you have.
    I don't understand your statement that you could not remeber your old AppleID password, as you would have had to use it to create the iCloud account in the first place (the first step of creating the iCloud account required you to login with your existing AppleID and password)?

  • Updated my AppleID account info.  Under password security shows an email address to be used to receive email with new password settings.  I need to update that email address, how do I do that?  Thanks!

    Updated my AppleID account info.  Under password security shows an email address to be used to receive email with new password settings.  I need to update that email address, how do I do that?  Thanks!

    Thanks for the help Niel.  I couldn't change the rescue email address (an address that no longer exists and is therefore useless) until I could correctly answer the security questions.  After numerous guesses, finally got them right.  Was then presented with the option to change the rescue email address. Guess the only other option was to have Apple Support make the change or reset my account info.  Have made note of the correct answers so this won't happen again.   Thanks for the fast response!!

  • HT4479 I have an Apple ID that's not an email, and I have been told it needs to be an email address.  I change it to my email address and it says my email is already in use.   I only have one email address.  I don't want to create a second email address.

    I have an email account and they want me to use my (same) email account name as my Apple ID.  When I do it says my email is already in use.  Is Apply suggesting I need to create a second email address?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Is the email address being used in the account of another Apple ID that you have?

  • How do I create a mobile version of a site that is based on scroll effects and a slideshow background?

    I need to create a mobile version for a site that is based on scroll effects and a slideshow background.
    Is it possible to copy the format from the desktop version without re-designing all the elements?

    Hi
    Different renditions will use require the page elements to be optimized accordingly.
    So you can surely copy the page elements and paste in phone or tablet layout , but you would need  to modify them.
    Thanks,
    Sanjit

  • Every time I try to create a iCloud email account I am being advised that my iPad is unable to turn mail on

    Every time I try to create an iCloud email account I am being advised that the mail cannot be turned on can any body help

    I thought there ought to be way to add buttons from the Encore library, but I don't think we found one.
    Best case: add menu from the library with buttons like what you want. Change background etc.
    I like working that way rather than adding things within Encore.
    Worst case: add a menu with the buttons you want; "edit in photoshop" and also "edit in photoshop" your menu; copy paste to your menu.
    You can also directly open library menus; add buttons etc from the encore library folders. I would make a copy of them first. Encore imports a menu from the library to your project; it is never working on its master copy.

  • When I click attach when sending an email with an attachment I get a dropdown that says "single image" or "default multiple". I choose one. Nothing happens as far as offering a choice as to what doc or photo to attach. What do i need to do?

    When I click attach when sending an email with an attachment I get a dropdown that says "single image" or "default multiple". I choose one. Nothing happens as far as offering a choice as to what doc or photo to attach. I continue between the attach and attachment and still nothing .What do i need to do?

    Hmmm, Permissions are messed up somewhere!?
    Can you open to pic say in Preview, select All, Copy, 7 Paste into Mail?

  • The apple id associated with my itunes is no longer good because that email address has been deleted what do i do to update the info

    the apple ID that is associated with my itunes is no longer valid because the email address has been deleted,how can i update my info without my old email and password?

    how is what blocked?  the email address? or apple ID... As for the ID, its not bocked but when i entre the password it says... " Your Apple ID has been diabled for security reasons. to enable your account, reset your password on appleid.apple.com" which i did, after i have entred the apple ID, it gives me two options to either change my password by sending it to my email acccount used, first time i clicked use email to reset pasword. i then went to msn to long into that email and msn says that this account has been blocked due to the password being entred to many times to activsate this clcik link beloew and so i did, it then took me the security queastion and the alternative email used within that account is completly different to what put in when i first made that account 2 years ago, the security question to that email is in portugues/ spanish and im neither, so clarely someone has hacked into that email and blocked it... and this why i cant change the password for my apple ID..

  • HT4436 I have a primary email address that I use now that is not an icloud account.  If I create an icloud email address, will I be able to send/receive  emails on both accounts simultaneously?

    I have a current primary email address that is not an icloud account.  If I create an icloud email account, will I be able to send and receive emails from both accounts simultaneously, or will the icloud account become my primary account and will I then have to inform everyone that I have a new email address?

    Welcome to the Apple Community.
    You can use either account and set one as default if you wish.

Maybe you are looking for

  • How can I find out if my mac has a trojan with out third party software?

    I'm trying to find out if my mac has a Trojan on it. I got a pop from a tech support site warning my computer security could be compromised. I did not click any of the links in the site but did call the number. I got very suspisious when they told me

  • Converting from Pagemaker 7.0 to Indesign CS3

    Lots of questions here I'm afraid, but it would be a massive help if I could get this sorted, and I only have a week or two to do it. My colleague and I are writing an English language textbook, with separate teacher's guide and student's book. It is

  • So I converted NTSC to PAL using nattress, but DVD issue now. Please read

    So with Shanes help last night I managed to make the .mov PAL formatted. Now I went into DVD Studio Pro made my menus made sure it was PAL ready and started the burn process. Yet it failed and the reason that DVD said is " Final PAL (Video):Invalid V

  • Recording to tape

    Is there any way from the Mac side to record an HDV sequence to a camera/deck tape? Am I dependent on the capability of the camera? I am aware of the "Print to Tape" but that is limited to what FCE gives you. (and I can't get it to work). Thanks

  • ADOBE Forms.

    Hello All, Can anybody confirm who has worked on ADOBE Forms confirm that when a new spool request is generated what format the spool is in. 1. Is the spool in old script format or in PDF format ? 2. Can I have some ADOBE forms documentatino ? Point