Disable "Send Data File" prompt

When I open the pdf created in LiveCycle Designer 7.1 and click on "Submit to Email" it prompts me for what type of email app I use. It then presents the "Send Data File" prompt. The options are "Send Data File" "Print Form" and "Cancel." It also has a "Don't show again" checkbox.
Is there a way to disable this prompt? For example after the user clicks on their email app it would simply open the email with the data file as an attachment.
I'm afraid that my people may click on "Print Form" instead of "Send Data File" or they might click "Cancel". I just want to ensure this is as easy as possible for them to complete.
Does anyone know if it's possible to disable the "Send Data File" prompt and automatically open an email and attach the data file?

Amrit,
I apologize for taking so long to respond to your question. It took me a while to locate someone on the Acrobat Team who could answer my questions.
It's a good thing you asked about this because it turns out that this behaviour will no longer occur as of the next release of Acrobat. In the next release, if the call to submit a form's data via email comes from an Acrobat
Action, the "Choose your email application" dialog will always be displayed (unless the user has already clicked on the "don't show this again" check box which you can't control programmatically). If, however, the call to submit the form's data comes from JavaScript, the dialog won't be displayed. Instead, Acrobat will use the system's default email application (e.g. Microsoft Outlook) to do the submission.
Unfortunately, clicking on a button with the mouse or the keyboard (by setting focus to it and hitting the Enter key) as well as firing a button's Click event with execEvent("click"), as I had previously suggested, will all be considered Acrobat
Actions and will therefore possibly show the unwanted "Choose your email application" dialog.
In order to get around this, we need a solution which always uses JavaScript to do the submission. Fortunately, we can use the Acrobat Document object's
submitForm method to do this, thereby ensuring that the unwanted dialog doesn't show-up in future versions of Acrobat. The only potential problem with this solution is that it'll only work if the form is rendered to PDF. If the form is rendered to HTML (using
Adobe LiveCycle Forms, for example), this method will not work because Acrobat won't be involved in hosting the form.
The trick is to use the
event.target object in a regular button's Click event. This object is actually the Acrobat Document object. From there, you can use the
submitForm method as follows in order to achieve the same behaviour as that of Designer's email submit button (in JavaScript):
var sEmailAddress = "[email protected]";
var sSubject = "This is an email";
event.target.submitForm
  cURL: "mailto:" + sEmailAddress + "?subject=" + sSubject,
  cSubmitAs: "XML",
I've attached a sample form which uses this JavaScript to submit its data via email. Give it a try to see how it works.
Stefan
Adobe Systems

Similar Messages

  • Form message pops up "Sending Data files by Email" when it shouldn't

    I have a simple PDF with a form which I've created with the form tools in Acrobat Pro 8 for sending a FDF file by email.
    It works OK but when clicking on some of the other internal page links in the document (set up in InDesign) that are entirely unrelated to the form I get the following pop up box:
    Sending Data files by Email
    Please note this form contains an email submit button. Clicking this button will email a data file containing data you type into the form. However, the form itself will not be sent. Remember you cannot save a completed copy of this form with Adobe Acrobat Reader 9.
    1. How do I stop this popping up. Especially on pages that are unrelated to the form.
    2. Why does it say: "Remember you cannot save a completed copy of this form with Adobe Acrobat Reader 9. " when it does seem to work OK. I can send the FDF file to an email address. But this pop up box just isn't right.
    And I have another query which isn't really on topic.
    3. How do you get radio buttons to be mutually exclusive (eg: sex: male/female) - it says in the Radio Button Properties button Options tab to get them to have the same field name. But where do you set the field name?
    I posted this in the Mac section as I think the Mac version of Acrobat Pro may be the route cause!

    1. How do I stop this popping up. Especially on pages that are unrelated to the form.
    I do not know you can. It is a user setting, not a pdf file setting.
    2. Why does it say: "Remember you cannot save a completed copy of this form with Adobe Acrobat Reader 9. " when it does seem to work OK. I can send the FDF file to an email address. But this pop up box just isn't right.
    It is correct. The user cannot save the file which is a pdf file. It is not sending you a pdf file, but as you noted a fdf file.
    3. How do you get radio buttons to be mutually exclusive (eg: sex: male/female) - it says in the Radio Button Properties button Options tab to get them to have the same field name. But where do you set the field name?
    If you double-click on any field with the field tool activated, you will get the field properties box. You can set the field name and default value here. You want the field name to be the same, but the default value to be different.

  • Send data files between PDA and PC

    Hi,
    I have create an application for a PDA and PC. The aim of the programm is, that I can send and receive data files between the two devices over TCP/IP. When I run the two programms on two PC's, it run without problems. When I run one Programm on a PDA and the second on a PC it don't work. I can send the file but it don't arrive the PC/PDA.
    I have create the Programm with LabVIEW PDA.
    What can I do?
    Thanks for your answer. 
    capunze

    I suppose the reason is that some function blocks don't work on a PDA. The blocks where I used are "Read from Binary File", "Write to Binary File" and "Open/Create/Replace  File".
    Anybody knows this problem?
    capunze

  • Logic for sending data files to multiple instances of Central

    We are using Central Pro Output Server 5.6 with a single Central instance as of default installation on a Windows Server 2003. Data for the transaction files coming from our iSeries system via a printer queue (\\.\pipe\jetform\queuename)
    Now we want to be able to produce more documents from Central much faster and therefore setting up multiple instances of Central. The problem is then where to put the logic for choosing instances.
    The simplest way to do this would be to have iSeries to alternate the data files to different pipes (printer queues) for Central. But as we dont want to change our iSeries configuration for this, is there a way to solve this problem in Central?
    Any help with this is much appreciated

    Central provides no mechanism that I'm aware of that would do anything resembling the job distribution that you are wanting. Central is written to monitor it's input folders and process the files it finds there. Each instance is essentially separate from each other.
    Your source system will need to select the appropriate instance to be used. Either that or you will need to have something between the source system and Central that is doing the distribution. For example, you could have the source system write to a folder that is not being monitored by Central and write a program that runs as a service that does monitor that folder. This program would then distribute the files. The likely drawback of having an intermediary program is that you are likely to not end up getting the documents printed any faster than with a single instance.
    Another possible way, if the source system can create files with different file name extensions, would be to have them all written to the same folder and have each instance checking that particular folder but looking for files with different extensions. This might be problematic, though, because it might also end up with each instance watching the same "control" folder so that doing things like pausing Central would end up with no control of which instance was going to be paused.
    The default setting for Central has it pausing for 5 seconds if it completes a job and there are no more files waiting for it. If your jobs are not coming in faster than Central is processing them then you would be getting some of this delay for your jobs. You could reduce this time or even set Central to process a job as soon as it shows up. I don't know if version 5.6 still has the problem but an earlier version would not "see" a file if it happened to show up exactly when it was looking for more (it was probably showing up milli-seconds after Central looked). This caused that job to just sit there until the next job showed up.
    A major factor in getting the documents produced faster is going to be the speed and number of printers that they are going to - plus the number of pages in each document. For us, the single instance of Central that we are currently using can produce print much faster than our HP9050 printers (50 ppm) can actually print it.
    You must be doing a lot of forms or each job is doing a lot of processing. Our typical print job does 4 tasks (depending on the job this can include things like: passing the file through the transformation agent, updating a mainframe database, FTPing the file to another server for archiving, and producing the print). A typical job with 11 output pages takes only 2-3 seconds. We have a task that runs every morning that retrieves mainframe generated jobs. I just checked one of our servers and it processed 208 jobs in exactly 8 minutes (26 jobs per minute at an average of 2.3 seconds per job). We also thought we'd need multiple instances due to speed but that just isn't the case for us. We have other reasons to move to multiple instances but speed in not a major factor any more.

  • How to send data (file and text both) from jsp to servlet

    upload JSP 
    case 1>> if i am using this  <form enctype="multipart/form-data" the file value is comming on the servlet side
             and other vales are not comming when i am using request.get parameter(....);
    case 2>>  if i am using this <form  type="text/html" the "submissionperiod" and "Types" value is comming on the servlet but the file is not comming ........
         How to resolve this issue .  i need to send all the three parameter on single submit and retrieve the parameter values  in my servlet .
    please help !
    <form enctype="multipart/form-data" name="form" method="post" action="Upload" >
                    <table font size="3" style="color:brown;font-family:Arial" >
                    <tr>
                    <td>Submission Year:    </td>
                    <td><select  name="submissionperiod">
                         <option value="">--select--</option>
                         <option value="2000">2000</option>
                         <option value="2001">2001</option>
                         <option value="2002">2002</option>
                         <option value="2003">2003</option>
                         <option value="2004">2004</option>
                         <option value="2005">2005</option>
                         <option value="2006">2006</option>
                         <option value="2007">2007</option>
                         <option value="2008">2008</option>
                         <option value="2009">2009</option>
                    </select><label class="Required">*</label></br></td>
                    </tr>
                    <tr>
                    <td>Submission Type :    </td>
                    <td><select  name="types"   onchange="showDescription()">
                         <option value="">--select--</option>
                         <option value="CRF">CRF</option>
                         <option value="NIR">NIR</option>
                         <option value="NC">NC</option>
                         <option value="SEF">SEF</option>
                    </select><label class="Required">*</label></br></td>
                   </tr>
                   <tr><td></td><td>
                   <div id="divTypeDetails">
                    <textarea  id= "subTypeDes" name="subTypeDes"  value=""></textarea></br></br>
                  </div>
                  </td>
              </table>     
              <td>Select a file (< 100 MB):   </td>
              <td><input id="importFile" name="importFile" type="file"></br>          
              </td>
              <input type="hidden" name="types">
              <input type="hidden" name="submissionperiod">
              <input type="submit" id="submitButton" name="submit" value="Upload" onclick = "checkUploadValidity();"/>
              <input type="button" name=btncancel id=btncancel value="cancel" onclick= "btncancel_click()"/>
    </form> 

    Both the file and text values are included in the binary inputstream of the request. The parametermap is always empty.
    There exist 3rd party API's to parse multipart/form-data streams, such as [Apache Commons FileUpload API|http://commons.apache.org/fileupload].
    Read at least the 'User Guide' and 'Frequently Asked Questions' sections.

  • Retrieve data/files fro HTTP POST request in On-Demand process

    Hello,
    I would like to integrate https://github.com/blueimp/jQuery-File-Upload to my APEX 4.2 application inside XE11g. I would like to use this kind of jQuery component, multiple file upload, use Drag & Drop, image resize, size limit, filter extensions etc...
    This jQuery component and also others javascript uploaders sends data files to some defined URL. Developer need to build some servlet, php script or something on server side that will read files from HTTP request and stores it somewhere.
    Do you know how to do it in APEX? How can I read data from HTTP POST request in PL/SQL? Now I can only call my On-Demand application process from javascript, but I am not able to read any data from HTTP POST in it.
    Can I do it in APEX, or using MOD_PLSQL?
    I would like to implement this:
    1) some javascript uploader will call some URL of my application and sends HTTP POST with data files
    2) I will read data files from HTTP POST and store them into database
    3) I will create some HTTP response for javascript uploader
    Thank you for some tips

    I know about that existing plugin " Item Plugin - Multiple File Upload"
    But I doesn't work in IE and has only basic features. Licence for commercial use is also needed. I would like to use some existing jQuery plugin. There are many of these plugins with nice features. And only one problem is that I need to create some server side process/servlet/script.. that can recieve HTTP request, get files from it and stores them into DB.

  • How to disable TNEF/winmal.dat files in outgoing emails?

    We are using javamail to send emails with excel files to users. Right now some of the users are geting winmail.dat files instead of the xls files. What is the configuration entry or what do I need to do to disable TNEF messages?
    I have been looking for information on this all over the Sun Javamail site and I can't find it. Something tells me its really easy.
    Thanks,
    JoelInDallas.

    JoelInDallas wrote:
    We are using javamail to send emails with excel files to users.Do you mean the "javamail" API or Sun Messaging Server?
    Right now some of the users are geting winmail.dat files instead of the xls files.Do you use MS Exchange/MS Outlook in your environment?
    What is the configuration entry or what do I need to do to disable TNEF messages?That would depend on what is causing the TNEF attachment to be created. Rarely do I see any non-Microsoft product generating a winmail.dat attachment as TNEF it is a proprietary Microsoft protocol.
    Regards,
    Shane.

  • Pdf extension changes to .dat when send a file via e-mail from adobe acrobat 9

    to convert a file from microsoft word 2007 to PDF and send as an attachment via e-mail from adobe 9, the file is received with the extension changed to. dat, so recipients can not open it.
    Can anyone help me with this.

    What is the OS of the sending computer?
    What mail client?
    I receive plenty of files on my PC as .dat files, which come from Mac user(s), rename the extension to what I think they ought to be and have no further problem. (I cannot change the senders email settings where the problem originates)
    If the receiver knows it is a pdf file, they can drag it into Acrobat, but renaming the extension serves future use.

  • How do I send a blank value to a MailMerge data file cell

    I have a Client_OLE2 process that loads individual data cells used for mailmerging to a word document. The process loads a cell, moves on to the next cell and loads that with data.
    Everything works fine until I try and load a cell with a blank or a null. The process stops dead and issues a 100501 exception.
    Is there a work around for trying to load blanks or nulls into data file cells?
    A sample of my code is below: (Say for example that 'ADDRESS2' is blank)
    APPLICATION := CLIENT_OLE2.CREATE_OBJ('Word.Application');
    CLIENT_OLE2.SET_PROPERTY(APPLICATION,'Visible', 1); -- VBA CODE
    WORD.APP := APPLICATION;
    WORD.SEL := CLIENT_OLE2.GET_OBJ_PROPERTY(WORD.APP,'SELECTION');
    args:=CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,3); --Unit :=wdCell
    CLIENT_OLE2.add_arg(args,1); --Count:=1
    --- Insert GOVERNOR_NAME name
    CLIENT_OLE2.SET_PROPERTY(WORD.SEL,'Text',GOV_NAME);
    CLIENT_OLE2.INVOKE(WORD.SEL,'Move',args);
    --- Insert sysdate "Letter Date"
    CLIENT_OLE2.SET_PROPERTY(WORD.SEL,'Text',LETTER_DATE);
    CLIENT_OLE2.INVOKE(WORD.SEL,'Move',args);
    --- Insert INMATE_NAME_NUMBER OR ATTORNEY NAME
    CLIENT_OLE2.SET_PROPERTY(WORD.SEL,'Text',NAME_1);
    CLIENT_OLE2.INVOKE(WORD.SEL,'Move',args);
    --- Insert PRISON_NAME OR ATTORNEY FIRM NAME
    CLIENT_OLE2.SET_PROPERTY(WORD.SEL,'Text',NAME_2);
    CLIENT_OLE2.INVOKE(WORD.SEL,'Move',args);
    --- Insert PRISON_ADDR1 OR ATTORNEY ADDRESS1
    CLIENT_OLE2.SET_PROPERTY(WORD.SEL,'Text',ADDRESS1);
    CLIENT_OLE2.INVOKE(WORD.SEL,'Move',args);
    --- Insert PRISON_addr2 OR ATTORNEY ADDRESS2
    CLIENT_OLE2.SET_PROPERTY(WORD.SEL,'Text',ADDRESS2);
    CLIENT_OLE2.INVOKE(WORD.SEL,'Move',args);
    CLIENT_OLE2.destroy_arglist(args);
    Any advice would be appreciated. thanks

    Hi,‮
    It is actually possible to do this on a computer.
    Copy whatever is in the spoiler tag and send it to him.  The text is very small, but it's still there.
    Spoiler (Highlight to read)
    If my post above answered your question, please click "Accept as Solution". Also feel free to give Kudos to my post if you found it helpful.
    Also — I’m back!
    Thanks and kind regards.

  • When you try to send or to receive email in Outlook 2010, you may receive one of these error messages: 0x8004010F: Outlook data file cannot be accessed. or 0x8004010F: The operation failed. An object could not be found.

    0x8004010F: The operation failed. An object could not be found.
    1. reviewed Profile instructions
    2. Ran SytTools thinking it would fix the error. NO although I could send received I ended up with a giant pst 
    3. Back to Profile Instructions.
    4. Set up new profile with my email address. email address tested well. Run Outlook. loads as outlook data PST
    and  gmail address PST.  Deleted all the Gmail subscriptions to improve speed. Original error was gone but have two GIGANIC PST FILES.
    5. Set up another new profile with my email address and a named pst.  Run Outlook under that Profile -
    comes up with newly named pst and the gmail addrress pst (although I can't figure out where that pst is located. Will not let me use email address as default Profile.  Tried different approaches and still ended up always with the gmail address pst.  Deleted
    all profiles but email address and comes   up.
    6. Should I just go ahead and use the gmail address pst  I need to import data or download data from gmail
    to get last years correspondence.e
    7. Outlook is my lifeblood, I am in communications and every submitted email gets moved to a file with an update.
    Help?
    8. One option is to merge psts but might make worse mess.
    Thanks.  Beautiful Beach weather here!

    To resolve error 0x8004010F , identify the current location of your default Outlook data file, and then create a new Outlook profile.
    Step 1- Locate the default Outlook data file
    Click Start, and then click Control Panel.
    In Control Panel, click Mail.
    In the Mail Setup - Outlook dialog box, click Show Profiles.
    Select your current Outlook profile, and then click Properties.
    In the Mail Setup - Outlook dialog box, click Data Files.
    Select the Data Files tab in the Account Settings dialog box, and then note the name and location of the default data file for your profile (a check mark will denote the default data file).
    Click Close.
    Step 2 - Create a new Outlook profile
    Step 3 - Configure your new Outlook profile as the default profile
    More detailed steps you can refer to this KB article:
    http://support.microsoft.com/kb/2659085

  • Using LoadVars in SSAS to send data to a php file

    I am using FMS 4.5 and have a simple application which I want to use to send two strings to a php file. But I get a compilation error whenever I try to assign any value to these objects:
    Here is main.asc:
    <code>
    var variables = new LoadVars();
    variables.username = "uname";
    variables.send(http://url.abc.com/test.php,POST)
    </code>
    I can't compile with the second line. FMS just says: Sending error message: Compilation error
    How do I send variables to a HTTP URL?

    However that should be fine..
    This is sample way to send data using LoadVars
    var my_lv = new LoadVars();
    my_lv.name= "myname";
    my_lv.send("http://server/test.php", "_blank", "POST");
    Try keeping url and and POST method within "quotes". Also, method [POST/GET] is third parameter, second is target where results must be loaded (if any)..

  • When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    http://www.joshjacob.com/mac-development/tnef.php

  • How to send multiple data files / music files using bluetooth / whatsapp / emails...

    hello everyone,,,
    is there any option to send multiple data files / music files using bluetooth / whatsapp / emails...
    as option to select multiple files using "SELECT in menu option / left aA"+ scroll tracepad" is availble with pictures only.
    and while receiving files via bluetooth i'm unable to do any other activity.

    One at time, via Bluetooth.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to export data to .csv and send that file to folder using sql commands?

    Really hoping someone can provide some code sample or point me in the right direction (with examples using sql).
    I am using oracle 11g with plsql developer. My requirement is that the data retrieval should be automatic. That means when query a data in oracle table , the data should be convert into .csv file and then it should send that to some specific folder.
    Example: Assume that student_sub1 table have all students subject1 data.when i write a query like select * from student_sub1 where student=1, the student1 data should convert into .csv file and then the .csv file should go to student1 folder.
    Hence I am requesting you to suggest me how write a sql code to convert the data into .csv file and to create a folder to send that file using oracle.
    Your inputs helps me alot.
    Thanks in advance!!!!
    Waiting for your replies.... Cheers

    981145 wrote:
    Really hoping someone can provide some code sample or point me in the right direction (with examples using sql).
    I am using oracle 11g with plsql developer. My requirement is that the data retrieval should be automatic. That means when query a data in oracle table , the data should be convert into .csv file and then it should send that to some specific folder.
    Example: Assume that student_sub1 table have all students subject1 data.when i write a query like select * from student_sub1 where student=1, the student1 data should convert into .csv file and then the .csv file should go to student1 folder.
    Hence I am requesting you to suggest me how write a sql code to convert the data into .csv file and to create a folder to send that file using oracle.
    Your inputs helps me alot.
    Thanks in advance!!!!
    Waiting for your replies.... CheersSET COLSEP ,
    spool student1.csv
    select * from student_sub1 where student=1;
    spool off
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ
    Handle:     981145
    Status Level:     Newbie
    Registered:     Jan 10, 2013
    Total Posts:     25
    Total Questions:     10 (8 unresolved)
    I extend my condolences to you since you rarely get answers to your questions here.

  • I have a scenario,  ECC-PI-Message broker. ECC sending IDOC to  PI, PI execute mapping and  sending data to Message borker.(with almost one to one mapping)., IDOC(AAE)-PI-JMS. Now my requirement is., from PI  after mapping we need to save file in SAP fold

    I have a scenario,  ECC-PI-Message broker. ECC sending IDOC to  PI, PI execute mapping and  sends data to Message borker(thru JMS channel).(with almost one to one mapping)., IDOC(AAE)-PI-JMS. Now my requirement is., from PI  after mapping we need to create file with same data what ever send to Message broker and put the file in SAP folder without touching mapping. Is it possible? Please advise with the steps. We are using the ICO for this senario. Quick response is appriciated.

    Hi Pratik,
         http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/502991a2-45d9-2910-d99f-8aba5d79fb42?quicklink=index&overridelayout=true
    This link might help.
    regards
    Anupam

Maybe you are looking for

  • 8 devices, one account, iTunes being difficult - help?

    OK, here goes: We have two MacBook Pros, two iPhone3G, one iPhone 3GS, one iPhone 4S, an iPod Nano (1st gen) and an AppleTV (1st Gen). Home network is on a Time Capsule (3rd Gen), which has USB connections for drives/printers/etc. I have two USB driv

  • 0x8056530b error enabling disk deduplication on Windows Server 2012 R2 Volume - any ideas why or how to fix?

    I'm getting the following error when trying to enable disk de-duplication on a volume on my Windows 2012 R2 file server.  The error is: "There was an error updating Data Deduplication on volume: MSFT_DedupVolume.Volume='\\?\Volume{8dfc4322-9997-11e3-

  • Encoder 2014 crashing with OpenGL error - please advise

    I did some research and split my 40-minute sequence (AVCHD 1080p 30fps) into chunks... did fine until the last one which was only 7:56 long - another successful export - Vimeo 1080p with MQR selected as suggested in the forum was longer. Up until thi

  • Keith Gilabert, "Flash Player Crashes on Mozilla"

    Flash Player crashes on Firefox when I have more than two browsers open.  The browser that are being operated simultaneously are Internet Explorer, Firefox, and Chrome.  For some season the Mozilla browser crashes when playing video. Please advise. T

  • Error when updating to version 1.2

    I'm using the iTunes version 7.0. When I try to update my iPod to version 1.2, I get an error that the iPod could not be updated because some of the files were in use by another application. Anyone having that error, or a solution? Susan