Save a form with a different name

I created a 2 forms in Adobe LiveCycle ES2 and saved. I also opened in Adobe Pro and extended rights for end users save the form. When a user entered information into the text fields and tries to save it under a different name, the form does not save filled in the data. I am creating a workflow between the end user and my Department, but we have no access to a database. My goal is to have the user to download the form, fill out the form and save it with a specific naming convention (XXXXX-Date), and then open the e-mail and attach the form (the submit button will not work with our email client). The Department may examine the form and the data entered into the form and save it under the same name. They will send by email the form to the end user. I hope have access to a database in the next 6 to 12 months and possibly to avoid registration and e-mail but I need to get this resolved now.

I have attached the forms that I am working on.

Your question is in the binding of each field tab. You have it set to None which means exclude the data in this field of the data file. Change to normal, and it will include this field in the data file.

Paul

Tags: Adobe LiveCycle

Similar Questions

  • Button to save the form with the custom name

    Tried searching using different sentences on how to accomplish this task, but not had much luck.

    I created a form in Acrobat Pro XI, that contains various fields entered by the user.  I have activated the form allow Reader users back up their data.  Ideally I'd like a button on a form that allows the user to automatically save the form using the information of one of the fields.

    For example, only one of the fields is named OrderID.

    The user has entered a value "12345" in the OrderID field.

    I would like to create a button (or other) that records the current form as "12345_Widgets.pdf".

    Is it still possible?

    Otherwise, any other suggestions?

    Thanks in advance.

    C

    Edit: for what it's worth, I don't know how to create a button that will save money, allowing the user to enter a name.  Guess that would be my backup plan.

    C

    You can not do without a script installed on the local computer

    each user.

  • Save the file with the new name (no rename)

    Is it away when open the file and after changing to save under a new name in order to have the original and edited files in my documents?

    Hi plammca,

    I regret that there is no option to save a file with a different name after the change. However, there is a workaround that you can try.

    • Select the file you need to make changes.
    • Create a duplicate file and then rename it.
    • Now, you can make changes to in the file duplicate.

    Let us know if that helps.

    Kind regards

    Meenakshi

  • Urgent: account with a different name for the wire transfer of payment portathon?

    Please help me. I did three apps in last out portathon that is approved and review of the other two is underway.

    Today, I got a Blackberry e-mail form that includes a link to enter data for transfer of my reward. The name on my bank account is slightly different the name with which I am registered as a supplier.

    Can I enter this slightly different name on this page with my bank details wire transfer and get my payment?

    Use the bank details of others to get the payment?

    Please answer quickly. It is urgent that there is no detail on the date deadline for submitting the details.

    Yes, you can use the bank account with a different name.

  • I can't save a PDF with the same name

    I can't save pdf files with the same name on the network drive in our society. I have full control over this network drive and can do anything create/read/write/change. Other programs work fine, but not Adobe Reader. I can save a pdf file with a different name, but when I try to save as in XI or replace as in DC had an error: the file is read-only or opened by someone else. Save the document under a different name or in a different folder.

    By the way, Acrobat Pro, I got the same message.

    reader_error.png

    Hi igorp74028164,

    Please provide the exact point of the software & OS installed on your system. Also check if it is there any update available for the software after crossing "" help > check updates "»

    Follow this thread to reset the preferences for the acrobat software. : - How to reset preference settings in Acrobat format.

    Also please check if this file is saved to the network drive or local, if its network on Please save it on local disk & then check. Make sure also that this preview pane must be closed in windows Explorer.

    Kind regards

    Christian

  • Save the file with the same name

    How to change the script to save the file with the same name?


    
    
    
    
    //SaveforWebSP.jsx  
    
    
    
    //Save a fixed width image with a size constraint in its original folder  
    
    
     
     
    
    
    
    var docRef = activeDocument;  
    
    
    
    var outputFolder = docRef.path;  
    
    
     
     
    
    
    
    NamesaveRef = new File( outputFolder + "/reference.jpg" );  
    
    
    
    var NewfileRef = new File( NamesaveRef )  
    
    
     
     
    
    
    
    // quality/size constraints  
    
    
    
    var w = 1920; // new file width  
    
    
    
    var MaxSz =  361440; // max. 360Kb  
    
    
    
    var Qlt = 100; // initial quality 100  
    
    
    
    var x = 1; // decreasing step  
    
    
     
     
    
    
    
    // resize the image to the right width  
    
    
    
    docRef.resizeImage(UnitValue(w,"px"),null,100,ResampleMethod.BICUBICSHARPER);  
    
    
     
     
    
    
    
    // Perform the first SaveForWeb Operation  
    
    
    
    ExpWeb(NewfileRef, Qlt);  
    
    
     
     
    
    
    
    // Keep trying to save the file with max. Qlt, but under MaxSz 
     
    
    
    
    while (NewfileRef.length > MaxSz)  
    
    
    
    {  
    
    
          
    Qlt = Qlt - x;  
    
    
          
    NewfileRef = new File( NewfileRef );
     
    
    
          
    NewfileRef.remove();  
    
    
          
    ExpWeb(NewfileRef, Qlt);  // Perform a new SaveForWeb Operation, with slightly lower Qlt  
    
    
             
    if (Qlt <= 40) {  
    
    
               
    alert("The file can't be saved with the desired size AND quality.");  
    
    
               
    break  // break the loop whenever the quality is as low as 50 (this shouldn't need to happen)  
    
    
             
    }  
    
    
    
    }  
    
    
     
     
    
    
    
    var FileSz = NewfileRef.length/1024;  
    
    
    
    FileSz = Math.round(FileSz);  
    
    
     
     
    
    
    
    // close the original file without saving  
    
    
    
    activeDocument.close(SaveOptions.DONOTSAVECHANGES);  
    
    
     
     
    
    
    
    // SaveForWeb Export, with the desired constraints and parameters  
    
    
    
    function ExpWeb(FileNm, Qlt)  
    
    
    
    {  
    
    
          
    var options = new ExportOptionsSaveForWeb();  
    
    
          
    options.quality = Qlt;   // Start with highest quality (biggest file).  
    
    
          
    options.format = SaveDocumentType.JPEG;   // Save Format for the file  
    
    
          
    docRef.exportDocument(File(FileNm), ExportType.SAVEFORWEB, options);  
    
    
    
    } 
    
    
    
    
    

    Change of line 25 to:

     var docName = docRef.name.split('.')[0];
     NamesaveRef = new File( outputFolder + "/"+docName +".jpg");
    
  • Copy of complete site. I have a Web site. I would copy the entire site (complete with images) to another directory with a different name. Then, transfer to another hosting server. All ideas

    Copy of complete site. I have a Web site. I would copy the entire site (complete with images) to another directory with a different name. Then, transfer to another hosting server. Any ideas?

    Not sure that you need a different directory.

    If you are working on a local computer, create a new site with all the same settings for local files and change the remote server settings to match the second server.

    This ensures you that there is no difference between the two websites.

  • How can I add a form with the user name and password

    I would like to add a registration form with the user name and password. Are there any embedded html or widget for this

    Hello

    Here you will find a similar description:

    https://forums.Adobe.com/message/6078030

    https://forums.Adobe.com/message/6141887

    Thank you

    Sanjit

  • Download a file with a different name

    Hi guys,.

    I was wondering if there was a way in flex to download a file with a different name, without having to change the name on the file system. Is this possible?

    See you soon

    just by the way your new file name as pamameter extra at your request

  • schema export and import with a different name

    Hello

    I need your help guys.

    I need to export a schema from a database and then import it under a different name in a different database. How can I do?

    I export it with the following command:
    exp userid = system/PW lead = May_02_Export.dmp = May_02_Export.log propriΘtaire = log statistics schema_name = 'none '.

    Now, I want to import but with a different name (schma_name).

    Concerning

    IMP... fromuser =... touser =...
    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14215/exp_imp.htm#sthref2539

    Nicolas.

  • XFA form with button to save the file with unique file name

    Is it possible to save a file with a unique file name by using the data that a user has entered (name, e.g.) that fires when the user clicks a button print? Attached is a file reference.

    Hello

    Yes it works here using your latest form and the modified .js:

    You have created the folder 'HSSSave '?

    Also, make sure the .js file is in the correct application folder and restart Acrobat:

    Hope get you it working (and when you do you can include a timestamp or timestamp in the name of file; as the script automatically replaces an existing file with the name of TEA).

    N.

  • Submit a form with specific file name

    Greetings!

    I'm not really any script, so I could really use some help.

    First of all – and especially:

    I have an Acrobat X Pro PDF form with a submit form button that is routed to a specific e-mail address.

    The native of Sharepoint and generates a file name long pdf filled with characters '% '.

    Is there a way to specify the name generated for the PDF file?

    I would be very happy if I can get the above scenario work...

    But I know that the question will be...

    Is to join a field of shape to this PDF file name anyway?

    As follows:

    SpecificFileName_EmployeenameField.PDF

    Still - I'm not a javascript person, otherwise I'd know if it was possible.

    And Yes, I'd like some recommendations on books / resources for scripts with Javascript.

    Thanks to anyone who can help to shed light on this.

    -You cannot specify the name of the file which is presented.

    -You can save the file by using the value of a field, but that requires a level of the file script installed on each user's computer using this file.

  • How to save a file under a different name without losing the original file

    Each year, I kept records of donation for our local community garden.  When I was with numbers on OS 10.6, I could go to file > save as > then enter the new name.  Do it this way, I could keep the original file and also have a new file.  The original file will not lose its data.

    But now, when I go to file all I see is to save or rename.  Let me give you an example:

    In 2015, when the amounts of donations would start coming to me, I opened the file from 2014 and pulled all amounts.  I replaced the title of donations to the Food Bank in 2014 with the 2015 food bank donations.  I would like to go to file and select Save as and type the new name for the file.  Is there something I'm missing that I cannot save under?

    Hold down the Alt/Option key while clicking on 'File' in the menu bar. This will give you the Save as option.

  • Account Hotmail receives emails intended for another (not MSN) account with a different name.

    Original title: receive emails to another account.

    My hotmail account receives emails to another account (not MSN) with a different (but similar) name.

    Hi RalphieE,

    In dealing with the problem with the Hotmail account, I recommend you ask your question in the support forum for Windows Live Hotmail to help.

    http://www.windowslivehelp.com/forums.aspx?ProductID=1


    Reference:
    Windows Live Hotmail Top issues and Support information

    Hope the helps of information.

  • Import a table from a fullexport to an another schema with a different name

    Hello

    I habe a full export created with expdp. I want to import a table (tkz.verlauf) of this fullexport to another schema (Tom) with another (zzz) name of this table.

    I tried this:

    content = all

    Full = N

    Directory = ORADUMP

    dumpfile = fullexp.dmp

    sqlFile = IMP. SQL

    logfile = IMP.log

    schemas = tkz

    tables = verlauf

    remap_schema = tkz:blubb

    REMAP_TABLESPACE = verlauf:zzz

    But it does not work:

    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.

    Connected to: Oracle 12 c database Release 12.1.0.1.0 - 64 bit Production

    UDI-00010: several work modes, patterns and paintings.

    When I use it without the 'paintings' all tables will be imported.

    Can someone help me?

    Best wishes Jessica

    Hi Jessica,.

    You must just have something like this

    Directory = ORADUMP

    dumpfile = fullexp.dmp

    logfile = IMP.log

    tables is TKZ. Verlauf

    remap_schema = tkz:blubb

    remap_table = verlauf:zzz

    Not sure if you want to rename the table or put a different tablespace (I did rename the table) - replace the last line with rather than table tablespace if you just want it in a different tablespace.

    See you soon,.

    Rich

Maybe you are looking for

  • HP 12 c: HP 12 c error 5

    I get an error 5 when trying to make a TVM problem I was wondering if anyone else has experienced this and/or may have some tips. I entered PV = - 3000 PMT = 50 FV = 0 I have = 10.5 calculate for n and I get error 5 If I make the following modificati

  • Google Maps does not work in FF5

    Google maps does not - it displays but keeps in a State of "loading". This applies to a card of Google.com search that freezes or a maps.google.com which cannot interact with. You might want to confirm that the latest version of flash is not cause pr

  • Reversal of the y-axis on a Basler scA640-70gc using labview

    I run a scA649-70gc Baslar to give me a stream live experiences running in another room, however the picture I get is upside down and flipping the camera physically is not an option. Does anyone know a way view laboratory could solve the problem?

  • VISIO - very old version

    I had VISIO for more than 15 years. I use only occasionally, but it is more load - the program humming just far without starting ((25 % d'utilisation CPU).) Y at - it one solution (other than buying a replacement).

  • Data Oracle merger en

    I received a new requirement (PoC) of my client. They need a report from data EN Oracle Fusion. I did the set up Financial Reporting Center to Oracle merger (to set the name of the cluster essbase). After that I gave permission to access the report p