Printing content fields

I created a simple, interactive form from an EPS file and manually placed all text fields. When the form is opened and filled out in Acrobat Reader, it will only print the original form, leaving all text fields completed by the user blank. I am using Formcentral. What am i doing wrong?

Hi;
Can you share the form with me at [email protected] following these instructions and include a reference to this forum post in your invite: http://forums.adobe.com/docs/DOC-2462
Thanks,
Josh

Similar Messages

  • How to print contents in an object?

    I would like to print content of object as it is printing like AccountSearchReqBOD@726d23. AccountSearchReeqBOD is generated by ant task clientgen which is not overriding toString method. how can i print contents in an object. Plz help me..
    Thanks in advance.

    i tried with reflection as below
    public String toString1(Object obj)
         StringBuffer buff = new StringBuffer();
         Field[] fields = obj.getClass().getDeclaredFields();
         for (int i = 0; i < fields.length; i++)
         try
         fields.setAccessible(true);
         buff.append(fields[i].getName())
         .append("\t=>\t")
         .append(fields[i].get(obj))
         .append("\n");
         //System.out.println(fields[i].getName() + " : values: " +
         // fields[i].get(this));
         catch (IllegalAccessException ex)
         ex.printStackTrace(System.out);
         catch (IllegalArgumentException ex)
         ex.printStackTrace(System.out);
         return buff.toString();
         * Method logRequest<p/>
         * Logs a SOAP request.
         * @param request
         private void logRequest(Object request) {
              if (mLog.isDebugEnabled()) {
                   if (request != null) {
                        mLog.debug("request:");
                        mLog.debug(toString1(request));
                   } else {
                        mLog.debug("request is null");
    But the above also doesn't log the object with in object. it gives log as
    2011-02-08 12:31:44,170 - DEBUG (WSClient:1168) - request:
    2011-02-08 12:31:45,405 - DEBUG (WSClient:1169) - hostInput     =>     HostInput
    2011-02-08 12:32:08,935 - DEBUG (WSClient:1186) - response:
    2011-02-08 12:32:10,060 - DEBUG (WSClient:1187) - processService     =>     com.tfs.tfs.sharedcomponents.serviceschemas.hostavailable.hostavailableressync.ProcessService@1d43cab
    Request is in correct format but response object got another object as processService which is not outputting correctly. Please help me..
    Edited by: user8660327 on Feb 8, 2011 2:25 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How we can Print a field Value in last line of the layout

    Hello:
    I am doing Check printing report ... Accroding to that I am facing a problem to print a Field value in last line of the layout....Anyone Can help to this please.....

    Hello,
    Take a look to the example provided in the note :
    Note.253881.1 How to Create a Report With a Frame Only on the Last Page at a Fixed Position
    Regards

  • Reg:printing contents to log file

    Hello all iam creating a debug log file for my program.. debug will be based on the level set which will be taken as a input from the user ..when i try to print the contents to a file gen.out i could not print anything ..file is empty..can some one pls help me ..there is no error thrown by the program
    // my main propram
    public class ff {
      public static void main(String[] args) {
        PrintStream out = System.out;
        int dbgLevel = Integer.parseInt(args[1]);
        String path ="gen.out";
        debug.setLevel(dbgLevel);
        try {
            debug.setLogFile(path);
        catch(Exception e1) {
          e1.printStackTrace();
    debug.msg(0, "Printing contents to a file  ");
    if (Debug.allowed(0)) {
                    Debug.msg(0, "1.printing th econtents );
    //debug class
    public class debug {
      private static int ourLevel = 0;
      private static FileWriter c_writer;
      private static final String k_nl = System.getProperty("line.separator");
        public static void msg(int reqLevel, String debugMessage) {
        if (reqLevel <= ourLevel) {
          String s = "DBG(" + reqLevel + ") " + getTS() + " " + debugMessage + k_nl;
          if (c_writer == null) {
            System.out.println("writer is null "+c_writer.toString());
            System.err.println(s);
            System.err.flush();
          else {
              System.out.println("writer is not null "+c_writer.toString());
              try {
                         c_writer.write(s);
            catch (IOException e) {
                e.printStackTrace();
          } // if (c_writer...) else ...
        } // if (reqLevel...
      } // msg()
    public static void setLogFile(String path) throws IOException {
        c_writer = new FileWriter(path);
    public static void setLevel(int l) {
        ourLevel = l;
        public static boolean allowed(int reqLevel) {
        return reqLevel <= ourLevel;
    file is getting created but its empty ..wat am i doing wrong here .?

    thanks mkoryak got it i was flushing a wrong stream
    thanks for the help

  • Content Field issue in Mail adapter receiver

    My  inerface CIDX->TO-->IDOC:
    I have an Error handling logic (Busines error) which needs to be send in EMail....the to address has to be detemined in runtime, the mail content is in the following format
    Mail Content:
    A KB order type came in from:
    Partner Information:
             Partner Name.
             Darex
             Chicago  IL 60638
             US
    ///below data till end  is for single line item, will occur twice if 2 line item
    PO Number       : 45012529631
    PO Line No       : 1
    Customer Product Code : YYYYYYY
    Customer Product Name : XXXXXXXXXX
    Price                    : 12345
    You should verify the PO is updated in the hosted solution and that the price is correct in SAP.  If this isn't the correct price from our partner please contact them and verify what the correct price should be.. 
    I am able to send the above content in mail for line item is 1, if there are more than 1 lineitem then it is breaking as mail content size is huge
    If there are Multiple Line items present in the Incoming CIDX file then the number od line items should be disaplayed in the mail. all the lines POLine NO till end will repeate for each Line Item....i am getting the arrayindex out of memeory exception as the data is huge which i am mapping to the content field of the reciver mail adapter....
    kindly suggest me the better method to handle this situation..my worry is if the number of line item is 10 then the mail content will be very huge and it will break during the runtime, as that field content cannot take so huge data.

    Hi Kiran
    Then there is no need to use Transformation bean for this
    In Mapping map the mail package Content_type field with
    text/plain;name="xyz.csv"
    and select mail package and keep attachments in receiver mail adapter
    This will work
    Thanks
    Gaurav

  • Trying to print form fields only

    I have made a fillable form with LiveCycle Designer, it is a 2 page form that my customer will receive by email, fill out and then feeds into a regular ink jet printer to print off fields onto an already pre-printed page they have in their office (they are basically filling out their name, address, etc contact information to print onto a brochure that is pre-printed) My client will use Acrobat Reader to fill in the form. Does anyone know a way to do this? I have read about making the background non-printable, or non-visible, but my background is an already created PDF that I have imported (with the forms built on top of it in LiveCycle). Doesn't seem to work unless I import it as an EPS.
    I also have Adobe Acrobat 8 Professional. Is there a different way I should be doing this instead of LiveCycle? I have tried to import the PDF background as an EPS, but the quality makes it really bad and I want the professional quality of the pdf that I already have built, as I have 10 of these to do and the PDFs are already done.
    I have been trying to work this out for 2 weeks and still not getting anywhere. Any help would be greatly appreciated.

    Hi,
    OK I am back at the desk.
    I have checked the help files for Acrobat 8 Pro and Acrobat 9 Pro and it appears that the ability to "import as a layer" was added in version 9. Sorry.
    You can check out the help file here: http://help.adobe.com/en_US/Acrobat/8.0/Professional/index.html and go to Editing PDFs > Layers.
    If the original PDF was generated from InDesign you may still be able to get the layers into the PDF: Help file
    "To retain layers when you convert InDesign CS or later documents to PDF, make sure that Compatibility is set to Acrobat 6 (PDF 1.5) and that Create Acrobat Layers is selected in the Export PDF dialog box"
    The last thing I can suggest (and I believe you can do this in Acrobat 8) is to start off with the blank PDF and from the Forms menu add a button to the page.
    Resize the button to the full page and then right click on the button and get its properties.
    The screen shots should look similar to v8. I am just going to highlight some of the setting you should set for the background button.
    In particular make sure that the button behaviour is set to NONE in the Options tab.
    Hope that helps,
    Niall

  • How to print a field on the last page of Smartform?

    HI FRIENDS,
    I NEED TO PRINT ONLY ONE FIELD IN LAST PAGE OF FORM SMARTFORM
    HOW DO I CHECK last page. I tried WITH THE FIELDS OF TABLE
    SYSF BUT NOT worked.
    Thank you.
    ROGERIO VAZ

    Hi,
    Goto the conditions tab of that window and enable the check box for Only after the end of main window.
    This will surely print your field in the last page.
    try this and get back to me if any issues.
    Regards,
    Anand.

  • Selective Printing i.e. I have to print a field leaving the first page

    Hi All,
    I have a requirement to print a field on every page excluding the first page.
    If anybody has worked on that please help me out.
    Thanks in advance.
    Regards,
    Raman

    Try if updating to 11.0.6 helps: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5717

  • Trouble printing "Form fields only"

    I've added text to a document, and have selected "Form fields only" for printing but the form fields do not appear. The fields do appear when I print the entire document. I am using XI Standard, and I've printed form fields before. Any suggestions?

    I found the problem... I had added Text through "Edit Text & Images", when I switched to adding a Comment text, I was able to print the "Form Fields Only"

  • Printing form fields only on Reader

    Before I get to the meat, a little background.  We are in the process of converting all of our forms into PDFs so to keep everything the same across the company.  My company is a contract packager, and we ship out many items.  We have purchased forms for Bills of Lading and Packing slips that have duplicate copies for the back.
    We would like to be able to scan the form into the computer, and create a PDF with text fields to type in the information, but then only print the form field data.  Basically, I want the form to show up on the computer screen but only print the data that's entered.  With Acrobat, I can select in the printer box to print form fields only, but when I put the form on the system and tried it on a computer that only has Reader it doesn't give me the option of printing the fields only.  (I'm the only computer that has and uses Acrobat).
    I'm not a programmer of any sorts, but is there a way to have Reader do what I want it to?
    Thanks in advance for any help!
    Bret

    Hello Eveyone
    My solution for this is simple
    In Adobe Pro, go to menu bar in:
    Documente-->
    Backgroup-->
    Add and Replace or Update
    in Apperance select
    Apperance Options
    remove the check for "SHOW WHEN PRINTING"
    This solved the problem to print forms with background in your company.
    GOOD LUCK

  • Print form fields ONLY in Adobe Reader XI.

    I created a form in LiveCycle for use by an admin (who only has Adobe Reader, not Acrobat) to print checks. I want to print form fields ONLY.
    Is there a way to do this?
    HELP!

    Best to ask in the Acrobat Forum. I'm pretty sure it's a parameter set up when the form is created. Reader only interprets data based on the saved settings.

  • Multi-mapping based on content field

    Hi guys,
    I'm doing a scenario with mult-imapping 1x2, based on content field I'll create message1 or message2. If the source content has both key fields (ex. A = message1 and B = message2) the scenario works well, but if only one key field comes (ex. A to create only message1), an error occurs inside the transformation step of BPM. It seams BPM is waiting for message2 ...
    (note: I'm using BPM because one of these messages is an IDoc)
    Anyone has faced this issue?
    Thanks in advance,
    Ricardo.

    Hi guys,
    Thanks for the prompt answers.
    I already have the occurrences with 0..1 (optional) and it doesn't work :s If I look into message mapping, I see that message1 and message2 are always 1..1 and there is no way to change it. In the messages tab you can only change the occurrence for the low level of each message1 or message2. Every time I test this mapping the header of message2 is always created even without content and that’s the problem and I don't know how to fix it...
    Any ideas?
    Thanks in advance,
    Ricardo.

  • Print content of Adobe Bridge directory, how to?

    Is there a way of printing the content, picture thumbnails and descriptions, of a directory accessed and displayed on screen in Adobe Bridge?

    Chris, thanx for your answer...
    But...
    I read this manual (and another manuals as simple as it)...
    I need to print another window (second) - not a main window...
    I'm generate a HTML code for print and put it into new window - I need to print this new window...
    Yours code printing content of main window...
    I think that need replace "window.htmlLoader" for anything else... But for what?

  • Print Live Fields Only in Reader

    Does anyone know how you can print "live fields only" in Reader?
    I want my clients to open up a form (either created in LiveCycle or Acrobat 8 Pro), be able to fill out the fields and then print ONLY the fields they filled in, into a pre-printed brochure through their ink jet printers at home. (Basically they are filling our their own contact information to be printed on a brochure)
    I can seem to find an option to print like this in Reader.

    Unfortunately I don't get this option in Reader, only in Acrobat. My clients will be using Reader to fill out form and print. I guess I am going to have to create something different in Acrobat, so that the clients won't have to worry about not having that option in Reader.

  • Printing Currency Fields

    Hi,
    How to Print Currency Fields in Smartforms [in tables node]
    Thanks & Regards,
    Ajith

    hi
    use sth like this
    data: lv_neto type string,
             wa_tabla-to_neto like bseg-dmbrt.
    write wa_tabla-to_neto to lv_neto currency 'CLP'.
    then in ur text of the smartform write &lv_neto&, doing that ur amount will be showed fine.
    Regards

Maybe you are looking for

  • [code] does not work correctly, cannot post code example.

    Hi, I tried to do a code example, but HTML tags inside java quoted strings were intereperted. Like the <IMG> tag and the <H1> tag.. How do I prevent this???? Re: How to post an audio file in JSP or servlet

  • Programs freeze?!

    So Its extremely frustrating to "upload" a file into different types of programs and the program freezes.  For example when I upload a file onto an email when I am looking for a file to upload into the email the "attachment box" freezes and I need to

  • My iphone 4 has been stolen. What should I do?

    What should I do so the thief can not use it? And is there any way to have it back? The iphone was bought in Europe but it was stolen nor in Europe nor in US.

  • [solved] Mplayer-plugin downloads files

    Whenever I play an avi with mplayer-plugin, it gets downloaded to my homedir. There's nothing wrong with playback, everything still works, but I wonder why the file is in my homedir. :S I also have to remove the file manually. Could it have something

  • Master data to SD docs

    Hi friends, where are the controls and how do we know, what all data will be copied from master data to sales documents.