Need Help: Submit form through email

I need to submit my form to an email address on single click of a button.
The submit type can be either XML or PDF. But i should neither get any warning nor it should open the Email Client.
And everything should happen within Adobe Reader 9.
Is this possible?
Thanks in Advance,
Nith

Hi Nith,
I saw this question and was interested in what sort of database setup you've got etc. Im a bit new and was just starting to explore how or if you could establish a database to take and store  the information directly from the forms
I know this is a bit off topic.... but any pointers would be appreciated. I have CS4 master suite (no other livecycle products or budget for them though) and Office 2007.  
I had been using a custom xml parser to pull the info and put it into target files but this has no storage/reuse potential and is getting real "clunky" so im keen to learn about databases and livecycle.  
cheers

Similar Messages

  • Submit form through hyperlink

    Hello,
    Problem is....... i need to submit form through hyperlink.
    the following is my code. when i executed it i am getting the same value for all the input buttons in the for loop. So, when i click any hyperlink i am getting only one output.
    can u guide me in this issue.....its urgent...........
    <form name='myform' action="items.jsp" method=post>
    <%
    while(rs.next())
         String s=rs.getString(1);
    %>
         <input type=hidden value=<%= s %> name=nnnn >
         <%= s %>
         <br>
    <SCRIPT language="JavaScript">
    function submitform()
    document.myform.submit();
    </SCRIPT>
    <%
    out.println("</form>");
    Thanks in Advance
    Sri

    i'm not sure but i think you want something like this...
    function submitForm(selectedValue) {
    document.myForm.myInput.value = selectedValue;
    document.myForm.submit();
    and put one of these in your code
    <input type="hidden" name="myInput">
    and in each of you links do
    <a href="javascript:submitForm('<%= whatever %>')">link</a>
    get it?

  • Change filename prompted when submit form by email

    My form has a submit by email button for users to submit the filled form through email(attached as pdf). Upon clicking the submit button, I want the pdf attachment to be in a customized filename (eg:YYYYMMDD_form1_txtfield1.pdf), or the least if user choose to submit using external webmail and prompted to first save the file, the filename(on the Save As dialog) will automatically be set to the customized filename.
    Is this possible? or Is there any other alternatives? I had went through a number of forums/articles on this but I did not find the solution.
    Thanks loads.

    The send pdf in an email will save the fiel as is in a temp folder with the name of the PDF that already exists. If you want to change that name you will have to do a file save operation. For security reasons you cannot automate the file save without the user's knowledge (they have to click OK). I do not know of a way to seed the SaveAs dialog with the filename that you want.
    Paul

  • Submitting PDF form through email

    I created an order form PDF a year ago (with Acrobat Pro 8) for a client's website with a button to submit the form through email. The customers can fill out the order form in Acrobat Reader 8 and email the PDF to my client's email. Now that doesn't seem to work anymore - an illegal operation message comes up. I've changed the action for the button to submit the order form as a FDF file but the form data is not found once the email is sent. I've found the FDF Toolkit but have no idea what to do with it. Is there a simpler way for customers to fill out the form and email it to my client?

    zorro248 wrote:
    Is there a simpler way for customers to fill out the form and email it to my client?
    Sure. Just enable the form so Reader users can save it when it's finished then instruct them to do so and attach it to an email.

  • Sending Adobe forms through Email and Fax

    Hi ,
    I have created an Adobe Form i.e. PO Form,
    whose print/driver  program is customised / based on SAPFM06P and routine used is ADOBE_ENTRY_NEU.
    So , now I use the transaction ME22N and use the External Send option i.e sending Email , but the Email is getting sent to Spool instead of SOST.
    So what changes do I need to make .
    Can anyone tell me how do we send an Adobe Form through email * in which routine is based on Adobe_entry_neu .
    Thanks  in advance,
    Rohit

    Hi,
    Thanks for reply
    The link u mentioned utilises Objects.. but can we send internet mail using this?
    As we cannot change RECIPIENT TYPE in this case in the object.
    I used this format in the program but the attachment is going to EXpress inbox. and goes to my SAP Inbox instead of Email .
    So what changes we need to do for this.
    Alternatively,  can we use FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' for this purpose?
    Edited by: Rohit Pareek on Feb 3, 2009 3:36 PM

  • Sending the adobe interactive form as non-interactive form through email

    Hi ,
              I am trying to send the interactive adobe form as non-interactive form  through email.The interactive form size is very large because of the interactivity.
    Can anybody suggest how to do this.
    Regards,
    Debasis

    Dear Antony,
    Thanks for the reply.
           I got you but can you pls guide me how to go about it.
    I need to send the email while submiting the form.So when and how i will be mapping each data node /attibutes of the main form with the intermediate form.My interactive form is of 30 pages and it may grow upto 40 pages.My response is with the to the main form where i am showing the success message.
    Regards,
    Debasis Nayak

  • Submit a form through email multiple times

    I have a form, where a number of people can digitally sign the form and email it to the next person. Designed in LiveCycle and reader extended.
    On the first sign and email, everything works great. However when the next person gets the form signs it and tries to email it, the body and subject is replaced by:
    The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 or later for more details.
    Whats all the hocus pocus?

    Yes, in javascript. Specifically: (Sorry I couldnt find any code tags)
    var requestType = ' ';
    var rush = ' ';
    var bodyBuild = "Requestor Information\n" +
        "\nRequestor: " + form1.Table1.Row1.nameTable.Row2.requestorName.rawValue +         "\nDate Submitted: " + form1.Table1.Row1.DateSubmittedTable.Row2.DateSubmitted.rawValue +
                                            "\nDate Needed: " + form1.Table1.Row1.DateNeededTable.Row2.DateNeeded.rawValue +
                                            "\nDivision: " + form1.Table1.Row2.DivisionTable.Row2.Division.rawValue +
                                            "\nPhone: " + form1.Table1.Row2.PhoneNumberTable.Row2.PhoneNum.rawValue +
                                            "\nSupervisor: " + form1.Table1.Row2.SupervisorNameTable.Row2.S1SupName.rawValue;
              if(form1.CheckBoxO1.rawValue == 1){
                        requestType = "New Employee";
              if(form1.CheckBoxO2.rawValue == 1){
                        requestType += ",Relocation";
              if(form1.CheckBoxO3.rawValue == 1){
                        requestType += ",Departure";
              if(form1.CheckBoxO4.rawValue == 1){
                        requestType += ",Telework";
              if(form1.CheckBoxO5.rawValue == 1){
                        requestType += ",Software Access";
              if(form1.CheckBoxO6.rawValue == 1){
                        requestType += ",Telecommunication";
              // Set Rush if Date Needed is less then 5 days
              var DateNeeded = form1.Table1.Row1.DateNeededTable.Row2.DateNeeded.rawValue;
              var d = new Date();
              var CurrentDate = new Date();
              d.setFullYear(DateNeeded.substring(0,4), DateNeeded.substring(5,7), DateNeeded.substring(8));
              d.setMonth(d.getMonth() - 1); // Javascript months go from 0 - 11
              d.setDate(d.getDate() - 3);
              if(d < CurrentDate){
                        rush = "RUSH ";
              emailSubmit.event__click.submit.target = "mailto:[email protected]?subject=" + rush + "Service Request[" + requestType +
                                                                                                                   "] From: " + form1.Table1.Row1.nameTable.Row2.requestorName.rawValue  + "&body=" + bodyBuild;
              emailSubmit.execEvent("click");

  • Help Needed-Initiating a process through Email.

    Now i am working on a process which i have to initiate a process through email.ie A user will fill the form offline and he will submit the form to the manager through email submitt button.so it consists of two forms,form1 and form2.form1 is for initial user and form2 is for manager.so when the manager recieves the form and email,all the data of the form1 should get bound to form2.here i am facing an issue.i have created email endponit for the process and i am using gmail as the email serever .i have configured all the settings in the email endpoint .i have created two vriables for holding the xml data and the manager form.

    If both forms share a common schema, the manager should see the data in form2.
    Otherwise, you have to transfer data from form1 to form2 using SetValue activity or XSL Transformations.
    Nith

  • Submit a form through email with multiple signatures

    I have a form, where a number of people can digitally sign the form and email it to the next person. Designed in LiveCycle, with javascript and reader extended.
    On the first sign and email, everything works great. However when the next person gets the form signs it and tries to email it, the body and subject is replaced by:
    The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 or later for more details.
    Whats all the hocus pocus?
    edit: Something I noticed is that, with some digital signatures, I disable a good majority of the form to read only "lock fields", then when I email I get the above text replaced in the body of the email.

    I have a form, where a number of people can digitally sign the form and email it to the next person. Designed in LiveCycle, with javascript and reader extended.
    On the first sign and email, everything works great. However when the next person gets the form signs it and tries to email it, the body and subject is replaced by:
    The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 or later for more details.
    Whats all the hocus pocus?
    edit: Something I noticed is that, with some digital signatures, I disable a good majority of the form to read only "lock fields", then when I email I get the above text replaced in the body of the email.

  • Submit form without email client

    we have recently acquired Reader Extensions with the main aim of allowing submission of forms by citizens online without the form actually asking the user for an email client on the PC.
    Developer uploaded the form and applied rights on the form through the reader extensions, but on returning back the form from the server, the "submit" button on the form stillasks for the email client on the local PC. The 'Submit email' button automatically generates the email client popup. is there any way to go round this, i.e, the public can fill in a form online from anywhere without the form actually asking for an email client on the PC ? Pls help. we were told that Reader Extensions was the solution for this problem.

    Usually the PDF submit by email button when used in Reader will ask whether they want to send it via an email client or save it to use with webmail e.g. Hotmail. The first selection will automatically open the default client on the computer (Outlook, Windows Mail etc) and launch a new message automatically populated with the email address to send to, subject and PDF attachment, as specified by the form author, ready for the user to press send. The webmail option allows the user to just save the PDF form on the desktop and manually log into their webmail account, create a new message, enter the email address to send to and attach the PDF previously saved.
    The process isn't ideal and causes email submit to be either unreliable or generates questions from the user who are unsure how to proceed. We have a server-side system that eliminates this standard process and allows the a submit button to be placed on the form that uses http submission to our server, which then automatically dispatches the completed form to your email address as a PDF attachment. Its quick and simple, all the user does is complete the form, press send and then press OK to the thank you pop-up and moments later you get the email.
    It was initially intended to be used privately for our own clients however a few weeks ago I started offering it to anybody that needs this facility, it doesn't cost much and I can let you try it out on your form upfront. Just go to www.pdf2email.co.uk for more information. A while ago it took me hours upon hours of research to find a solution and it took quite an investment in time and money to set it up but it has most deffinately been worth it.
    Regards,
    Ben

  • Sending sapscript form through Email

    Hi,
         I modifyed a std sapscript form for customer statement and that output i want to send to the customer through Email.So now i need a help for further what are the steps need to be do for sending that form by email.Pls be in details so that for me easy to solve this.
    Thanks,
    Rajendra.

    Hi ,
        I  am using the below code to send the form output by mail but it is not working for me.pls correct my code where i want to change so that i can solve my issues.
    DATA: itcpo LIKE itcpo,
    tab_lines LIKE sy-tabix.
    Variables for EMAIL functionality
    DATA: maildata LIKE sodocchgi1.
    DATA: mailpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: mailhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
    DATA: mailbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: mailtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
    DATA: mailrec LIKE somlrec90 OCCURS 0 WITH HEADER LINE.
    DATA: solisti1 LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    parameter: p_email1 like somlreci1-receiver .
    PERFORM send_form_via_email.
    FORM SEND_FORM_VIA_EMAIL *
    FORM send_form_via_email.
    CLEAR: maildata, mailtxt, mailbin, mailpack, mailhead, mailrec.
    REFRESH: mailtxt, mailbin, mailpack, mailhead, mailrec.
    Creation of the document to be sent File Name
    maildata-obj_name = 'TEST'.
    Mail Subject
    maildata-obj_descr = 'Subject'.
    Mail Contents
    mailtxt-line = 'Here is your file'.
    APPEND mailtxt.
    Prepare Packing List
    PERFORM prepare_packing_list.
    Set recipient - email address here!!!
    mailrec-receiver =  p_email1.
    mailrec-rec_type = 'U'.
    APPEND mailrec.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = maildata
    put_in_outbox = ' '
    TABLES
    packing_list = mailpack
    object_header = mailhead
    contents_bin = mailbin
    contents_txt = mailtxt
    receivers = mailrec
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    operation_no_authorization = 4
    OTHERS = 99.
    ENDFORM.
    Form PREPARE_PACKING_LIST
    FORM prepare_packing_list.
    CLEAR: mailpack, mailbin, mailhead.
    REFRESH: mailpack, mailbin, mailhead.
    DESCRIBE TABLE mailtxt LINES tab_lines.
    READ TABLE mailtxt INDEX tab_lines.
    maildata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( mailtxt ).
    Creation of the entry for the compressed document
    CLEAR mailpack-transf_bin.
    mailpack-head_start = 1.
    mailpack-head_num = 0.
    mailpack-body_start = 1.
    mailpack-body_num = tab_lines.
    mailpack-doc_type = 'RAW'.
    APPEND mailpack.
    Creation of the document attachment
    This form gets the OTF code from the SAPscript form.
    If you already have your OTF code, I believe that you may
    be able to skip this form. just do the following code, looping thru
    your SOLISTI1 and updating MAILBIN.
    PERFORM get_otf_code.
    LOOP AT solisti1.
    MOVE-CORRESPONDING solisti1 TO mailbin.
    APPEND mailbin.
    ENDLOOP.
    DESCRIBE TABLE mailbin LINES tab_lines.
    mailhead = 'TEST.OTF'.
    APPEND mailhead.
    Creation of the entry for the compressed attachment
    mailpack-transf_bin = 'X'.
    mailpack-head_start = 1.
    mailpack-head_num = 1.
    mailpack-body_start = 1.
    mailpack-body_num = tab_lines.
    mailpack-doc_type = 'OTF'.
    mailpack-obj_name = 'TEST'.
    mailpack-obj_descr = 'Subject'.
    mailpack-doc_size = tab_lines * 255.
    APPEND mailpack.
    ENDFORM.
    Form GET_OTF_CODE
    FORM get_otf_code.
    DATA: BEGIN OF otf OCCURS 0.
    INCLUDE STRUCTURE itcoo .
    DATA: END OF otf.
    DATA: itcpo LIKE itcpo.
    DATA: itcpp LIKE itcpp.
    CLEAR itcpo.
    itcpo-tdgetotf = 'X'.
    Start writing OTF code
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
    form = 'Z2006FICSE'
    language = sy-langu
    options = itcpo
    dialog = ' '
    EXCEPTIONS
    OTHERS = 1.
    CALL FUNCTION 'START_FORM'
    EXCEPTIONS
    error_message = 01
    OTHERS = 02.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
    window = 'MAIN'
    EXCEPTIONS
    error_message = 01
    OTHERS = 02.
    Close up Form and get OTF code
    CALL FUNCTION 'END_FORM'
    EXCEPTIONS
    error_message = 01
    OTHERS = 02.
    MOVE-CORRESPONDING itcpo TO itcpp.
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
    result = itcpp
    TABLES
    otfdata = otf
    EXCEPTIONS
    OTHERS = 1.
    Move OTF code to structure SOLI form email
    CLEAR solisti1. REFRESH solisti1.
    LOOP AT otf.
    solisti1-line = otf.
    APPEND solisti1.
    ENDLOOP.
    ENDFORM.
       Hope i can expect the feedback soon from you guys.
    Thanks,
    Rajendra.

  • Unable send ADOBE form through email as attachment

    Hello experts,
    I was trying the [tutorial |https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ee8a84ea-0c01-0010-5691-accfb0a172ed] on ADOBE interactive form through GP.
    I am not able to send a form as an attachment as specifies in the document.
    I have checked for all the required settings mentioned in the document and all seems to be ok.
    Can anyone please provide a ray of help on how do I enable a ADOBE form to be passed as an attachment through email.
    Thank you.
    Ashutosh

    Hi,
    just use a "Standard button", select it and go to the "Object" -> "Field" tab. Set the control type to "Submit". Go to the "Submit" tab. Set the submit format (e.g. PDF) and set the URL to "mailto:<receiver's email address>".
    This will work fine without any JavaScript.
    Take care,
    Thomas

  • Error when I "submit Form" through Outlook 2007

    We have a interviewer who is trying to use a new form we created. When she hits the "submit form" button she gets the normal prompts and then a email is placed in her outbox (using Outlook 2007). However, after a few moments she receieves an error code saying that the object can't be found. This did not happen with forms in previously versions of Acrobat. Any help would be appreciated.
    Thank you!

    Hi mattmclaughlin
    Please see the below KB Document from Microsoft on the same issue : http://support.microsoft.com/kb/2020427

  • Need help with Forms on iPad

    I am trying to view and submit forms on my iPad. I've created a form in LiveCycle and emailed it to myself but I am unable to view or open the PDF form with the Adobe Reader app. Please help!

    Hi Randy - I have Adobe Acrobat Pro 9.5 and when I try to create a new form a pop-up comes up saying that the form will be edited in Adobe LiveCycle designer and that Adobe Acrobat will close. I do not have the option to stay in Adobe Acrobat. Any idea how to stay in Adobe Acrobat instead of moving into LiveCycle? I want to create some PDF forms that can be filled out on an iPad in Adobe Reader and then emailed. Thank you!

  • Need to submit form

    I have been unsuccessfully for nearly two weeks to get my employee discount activated.  I have tried to fax the form and my government ID, and the fax number listed on the form is always unavailable.  I have gone to the local Verizon store, only to be told they cannot process it there.  Can I submit the forms via email to get them reviewed?  If so, what email address should I send them to?  Please help!!  Thank you!!

    If you fill out the form at this link, you'll be given the opportunity to upload your information:
    Verizon Wireless Employer Discounts: Eligibility | Verizon Wireless

Maybe you are looking for