How to specify xml file to populate form fields in the PDF file via command line?

Hi,
I would like to specify xml data file to populate my pdf file using command line.
The form was Reader extended.
I've tried the following syntax :
Acrobat.exe /A "zoom=100" "C:\example.pdf"#xml="C:\example.xml" but got an acrobat error: "the file name, directory name or volume label syntax is incorrect".
Where am I wrong?
Thanks!

>If I understand correctly you propose something like this
Something like, yes.
>
>Acrobat.exe /A "zoom=100" "xml=C:\example.xml" ....
Certainly, neither will work. /A is followed by a single quoted
string. There must be some separator, but I don't know what it needs
to be (as I was alluding to in my first reply).
To see if there is any hope, just try without the zoom= completely. In
any case you can set the zoom in the document properties.
Aandi Inston

Similar Messages

  • Can we selectively flatten form fields in a PDF file?

    I have a PDF with some form fields in it. I want to selectively flatten a few form fields in the PDF using a java API. I have checked the documentation and found a method transformPDF in the OutputServiceService. But this method flattens all the form fields in the PDF document.
    Can we selectively flatten form fields in a PDF file? If yes how?
    This was possible in Adobe Document Server V6.
    Regards,
    Ragha

    You will need an event in the form that will indicate that you want the flattening done. Once you determine what that is it is simply a single statement for each field:
    fieldname.access = "readOnly";
    Now when the form is rendered, the user will not be able to get access to these fields.

  • How do I extract email from a form and send the PDF to that user?

    How do I extract email from a form and send the PDF to that user?

    here you can add email to send to, CC, Subject, and body message
    var oDoc = event.target;
                        oDoc.mailDoc({
                                                                bUI: false,
                                                                cTo: "Agency Contact Email",
                                                                cCC: "",
                                                                cSubject: "Write your title here,
                                                                cMsg: "Dear" + AgencyContact + "(" + AgencyContactEmail + ")\nThe student, " + FirstName + " " + LastName + " has applied to work at your agency. Please confirm they can work here blah blah blah.......\n\nThanks.\n\nrespectuflly,\n\nme"

  • Unable to fill out interactive form fields in the pdf form.

    I'm unable to fill out interactive form fields in the pdf tax form in Reader 11.0.06 with purple bar inviting to do so.

    The only Flash Player that is remotely connected to Adobe Reader is the plugin.
    Can you temporarily uninstall the plugin (or both ActiveX and plugin using http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html and see if the problem disappears?
    Reinstall both using these installers http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_text_4

  • Mapping of Tax Form Fields to the PDF Tax Form

    Hi,
       Can anyone tell me how to see the mapping betw the Tax Form fields and the Tax Form in pdf format. For example in Quarterly State Unemployment form, I have a Tax Form field T003. How can I map this field to a particular field in the Tax Form in pdf format ?
    Thanks And Regards,
    Somdeb Banerjee.

    Hello Somdeb,
    To use the Tax form field say T003 in PDF,  there check box 'Form Processing Indicator' should be checked then only the field is available in PDF to be linked. Detailed documentation on how to use is available in 'Service.sap.com/hrusa'>Year end 2008> Year end reference materials-->' new! SAP ERP 6.0: 2008 U.S Tax Reporting w/ PDF-Based forms '
    With Regards,
    S.Karthik

  • How can I set the font size of a form field in the fdf file?

    I need to dynamically set the font size of a field to accommodate text of varying length, automatic font size won't work in this case. It seems like this can be done in the FDF but I have tried several variants without success. Could someone help out with a real example of what the syntax in the fdf should look like.
    I am using Acrobat Professional 8.1 but the created fdf will need to work with Reader also.

    I think that the font size has to be set in the form itself, not the FDF.

  • Acrobat X Pro detects no form fields in the PDF created by Excel

    I am using Acrobat X Pro on a Macbook running Yosemite OS X.  Office 2011 and Acrobat are both fully updated.
    I have created a PDF from an Excel spreadsheet.  two columns.  first column has text to describe what the user is supposed to enter in the second column.  the cells in the second column have a border box drawn around them.  I saved this Excel document as a PDF.  I opened it in Acrobat X Pro and used the Tool - Create Fillable Form.  It gives a message saying "No form fields detected".  What am i doing wrong?  Is there an issue with this process?

    i have read at least 4 articles and watch 3 videos that do almost the same process i have explained.  the only difference is that they used Word to create their PDF doc.  they had no issues.
    so i am wondering if there is something wrong with the Excel PDF process.  i have tried this one 2 different MacBooks with same result.
    what does the cell have to have in order for Acrobat to detect it as a form field?
    I have a spreadsheet that has over 300 fields that should have been detected.  so yes, i could create them manually, but i am hoping to get this Acrobat to detect them. 
    I tried the process you did "File=>Create Form".  i got same message.
    i built a separate little test process to describe the issue.  see image that is attached.
    it is very simple, yet no fields were detected.

  • Automatically Name Document using form fields in the PDF?

    Is it possible to populate the Save Name field with a concatenation of fields that the user selects on a form? I'm using Reader Extensions to let a user fill out a form and save it, and I have 3 fields - Station, Month and Year, in the document. (It's a monthly report) I'd like it when the user goes to save the document to have it automatically named "WGST October 2007" - the concatenation of those 3 fields.
    Thanks in advance!!

    The only Flash Player that is remotely connected to Adobe Reader is the plugin.
    Can you temporarily uninstall the plugin (or both ActiveX and plugin using http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html and see if the problem disappears?
    Reinstall both using these installers http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_text_4

  • How to search in a pdf package via command line

    How can I search a specific PDF file within a PDF package via the command line? Previously I have used the following code in VB6 to search a single PDF file successfully.
    acroPath = String(128, " ")        'initialise this string
    resultStatus = FindExecutable(pdfPath, vbNullString, acroPath)
    acroPath = Replace(acroPath, vbNullChar, "")        'Get rid of the null character
    acroPath = """" & Trim$(acroPath) & """"
    cmdLineString = acroPath & " /n /A ""search=" & searchString & """ " & pdfPath
    Call Shell(cmdLineString, vbNormalFocus)
    I now receive this file as part of a PDF package, so how can I amend the command line to search the specific file within the package?
    I only have Reader, not the full blown Acrobat version.
    Vas.

    Sorry forgot to say that I am using Acrobat Reader 8.1 on Win XP SP2
    Vas.

  • In the interface file to proxy key field in the sender file adapter

    Hi all
    i do have a FLAT FILE ,
    1820000000|
    0010|XXX
    0020|XXX
    0040|XXX
    0050|XXX
    where 1820000000 is my PO number and 0010|ACK
    0020|XXX
    0040|XXX
    0050|XXX
    i dont what to use key field for this case in my sender adapter configuration please help me
    thanking you

    HI
    Read the file without using key field. Just define the FCC parameters Header and Items PI will pick the file.
    DT_Source
       Record
         Header 0..1
           PO_Number String 0..1
         Items  0..unbounded
           Items String 0..1
    Do the FCC
    Header.fieldnames PO_Number
    other config for Header
    Items.fieldnames Items
    other config for items
    Thanks
    Gaurav
    Edited by: Gaurav Bhargava on Nov 12, 2008 10:27 AM
    Edited by: Gaurav Bhargava on Nov 12, 2008 10:27 AM

  • Webpage PDF states This file is a PDF form when no form fields in actual pdf

    I have an acrobat.com account, and when uploading and displaying pdf's in a webpage, even when there are no form fields in the pdf it states that "This file is a PDF form, please download and fill in"
    Even creating a new pdf this state seems to now be the default in Acrobat Pro 8 on my Mac, how do i reset back to defaults so this does not happen?
    See https://acrobat.com/#d=5p8gk446VqZNgeNfbRc8-w
    For what i mean...there are no fields in this pdf....when saving an existing pdf or creating a new one this now happens.
    many thanks

    http://screencast.com/t/YTdlYWM5
    That's not the only problem looks like adobe.com has problems as well. IF the same site is spoofed with FF useragent, works perfect.

  • How can u get the matching percentage whenever compare the pdf files(compare the strings)

    Actually I want matching percentage whenever compare the pdf files.First I had completed 
    read the pdf files content into string
    my code like as
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.IO;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using iTextSharp.text.pdf.parser;
    namespace WindowsFormsApplication1
    public partial class Form1 : Form
    string str1;
    string filename;
    string path;
    string str2;
    public Form1()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    OpenFileDialog openFileDialog = new OpenFileDialog();
    openFileDialog.CheckFileExists = true;
    openFileDialog.AddExtension = true;
    openFileDialog.Filter = "PDF files (*.pdf)|*.pdf";
    DialogResult result = openFileDialog.ShowDialog();
    if (result == DialogResult.OK)
    filename = Path.GetFileName(openFileDialog.FileName);
    path = Path.GetDirectoryName(openFileDialog.FileName);
    textBox1.Text = path + "\\" + filename;
    private void button2_Click(object sender, EventArgs e)
    OpenFileDialog openFileDialog = new OpenFileDialog();
    openFileDialog.CheckFileExists = true;
    openFileDialog.AddExtension = true;
    openFileDialog.Filter = "PDF files (*.pdf)|*.pdf";
    DialogResult result = openFileDialog.ShowDialog();
    if (result == DialogResult.OK)
    filename = Path.GetFileName(openFileDialog.FileName);
    path = Path.GetDirectoryName(openFileDialog.FileName);
    textBox2.Text = path + "\\" + filename;
    public static string ExtractTextFromPdf(string filename)
    using (PdfReader r = new PdfReader(filename))
    StringBuilder text = new StringBuilder();
    for (int i = 1; i <= r.NumberOfPages; i++)
    text.Append(PdfTextExtractor.GetTextFromPage(r, i));
    string result = text.ToString();
    return result;
    public static string Extract(string filename)
    using (PdfReader r = new PdfReader(filename))
    StringBuilder text = new StringBuilder();
    for (int i = 1; i <= r.NumberOfPages; i++)
    text.Append(PdfTextExtractor.GetTextFromPage(r, i));
    string result1 = text.ToString();
    return result1;
    private void button3_Click(object sender, EventArgs e)
    str1 = Form1.ExtractTextFromPdf(textBox1.Text);
    str2 = Form1.Extract(textBox2.Text);
    }Finally how can u get the matching percentage whenever compare the pdf files(compare the strings)please help me.thank u

    Hi,
    Based on your code, I see your code related to
    iTextSharp Pdf.
    iText is a third party library to create PDF originally written for java. iTextSharp is
    the C# adaptation of that library.
    Question regarding iText are better asked on the iText forum, rather than the Microsoft Forum:
    http://itextpdf.com/support
    Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Splitting the Pdf file

    Hi,
    How to split the pdf file as chapter?. (or) splitting the pdf file as pages?
    Is any packages in java?.
    can u please tell me.
    Thanks,
    nithi

    http://www.lowagie.com/iText/

  • How to find and replace data in form fields in acrobat xi, its not allowing to do so while trying, a

    how to find and replace data in form fields in acrobat xi, its not allowing to do so while trying, asking for adobe livecycle to get installed. please help.

    Easiest way to do it is the following:
    - Open the PDF file in Acrobat.
    - Go to Tools - Forms - More Form Options - Export Data.
    - Save the form data as an XML file somewhere on your system.
    - Open XML the file in a plain-text editor (I recommend Notepad++).
    - Let's say you want to replace all the years in the dates from "2013" to "2014". Do a global Search&Replace of "2013-" to "2014-" (I added the dash just to make sure that only date fields are edited).
    - Save the XML file (maybe under a new name).
    - Go back to the PDF file, and now go to Tools - Forms - More Form Options - Import Data.
    - Select the edited XML file and import it.
    - Done!

  • Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait

    Need Help ASAP  my State tax form is in a PDF file and the attachment in my email says Please wait...
    I tried downloading updates like it said to but it still will not display the document.  How do I print the PDF file ASAP

    Can you give us a LOT more info?
    What email client? What version of Reader (I can only assume you even have Reader at this point)?
    Please wait? I'm sure it says more than that, right?
    Have you tried simply saving the PDF (it IS a PDF correct?) to your desktop and opening it from there?
    Did you get this form from the IRS or did it come from somewhere else? If the IRS again, what version of Reader?
    Help us help you.

Maybe you are looking for

  • Installation problem on Win2K Advanced Server

    I am getting the following error while installing the Java COM bridge: "Error while registering J2EE Client Access services COM bridge registry keys." Any suggestions on how to work around this?

  • External hard drive messed up by Airport overload?

    I'm not sure if this is the right forum for this question, but my problem did start while I was using my Airport network, so here goes: I don't use Time Machine, as I still run the last build of Tiger. Airport connects my Mini and my MacBook Pro, and

  • Can I recover Windows 8 as second OS in dual boot?

    OK, here was the plan: I plan to dual boot IdeaPad Z500 by adding Windows 7 on top of Pre-Installed Win8. But seems like it's impossible to do so since I can't get the Win 7 Installer to start on UEFI mode, and I can't install Win 7 into GPT drive in

  • Please help with newline non-printing character in JTextPane.

    Hi. I need to implement "View non-printing characters" feature in my JTextPane. So when this feature is toggled, the newline character is displayed at the end of every line like in Microsot Word editor. I been digging around for few hours now and I c

  • PLAY I-TUNES BOUGHT SONGS, TO MY CAR CD PLAYER

    I HAVE BOUGHT A LOT OF SONGS FROM I-TUNES. NOW I BURNED SOME OF THEM ON A CD. I TRIED TO PLAY THAT CD ON MY CAR CD PLAYER. IT DOES NOT PLAY. WHAT SHOULD I DO?