Writing data programmatically into PDF template created in LiveCycle designer

Hi!!!
I have a PDF template designed in Adobe LiveCycle Designer 7.0. This template has form fields which needs to be filled with data programmatically (I don't want to open LiveCycle Designer 7.0 and from there do import/export). I want to write a program in java, which will fetch data from database and will merge this data into PDF form in respective fields.
How this can be achieved? Do I have to write an XDP file? Is there any API which will create XDP out of the PDF template created in designer? If so, then how to merge the data from the XDP into the PDF programmatically.
Thanks in advance.
- Shriram

[email protected] wrote:
> If I correctly understand what you're trying to do then Adobe XPAAJ should be adquate:
>
>
>
> Below is a link to a "video" demonstration of building an application that uses XPAAJ:
>
>
>
> (I don't think your question about having to write an XDP file is crucial to what you're trying to do, but you don't need to write an XDP file -- it is a "save as" option within Designer. You can save a Designer file as either PDF or XDP. Or both, one after the other, if you need both.)
Careful with the recommendations for XPAAJ. There are specific restrictions around whether you can
use XPAAJ or not. Specifically, you have to own a copy of one of the server-based LiveCycle
products. This does not include LiveCycle Designer, which is a client product.
Maybe someone from Adobe can clarify.
Justin Klei
Cardinal Solutions Group
www.cardinalsolutions.com

Similar Messages

  • Load data in xml file into Pdf form created by LiveCycle Designer

    I want to load data in xml file into Pdf form when Pdf opened and Form field will be filled with data from xml file .I try to use $host.importdata("filename.xml"); But i could not find suitable place to run my code. Can anyone give me some advice? thank you.

    Hi,
    extract your xml and then you can use insert all clause.
    here's very small example on 10.2.0.1.0
    SQL> create table table1(id number,val varchar2(10));
    Table created.
    SQL> create table table2(id number,val varchar2(10));
    Table created.
    SQL> insert all
      2  into table1 values(id,val)
      3  into table2 values(id2,val2)
      4  select extractValue(x.col,'/a/id1') id
      5        ,extractValue(x.col,'/a/value') val
      6        ,extractValue(x.col,'/a/value2') val2
      7        ,extractValue(x.col,'/a/id2') id2
      8  from (select xmltype('<a><id1>1</id1><value>a</value><id2>2</id2><value2>b</value2></a>') col from dual) x;
    2 rows created.
    SQL> select * from table1;
            ID VAL                                                                 
             1 a                                                                   
    SQL> select * from table2;
            ID VAL                                                                 
             2 b                                                                    Ants

  • Why can't I 'place' a signature into a .pdf form created in LiveCycle Designer 9???

    Hi there,
    I have been pulling my hair out all afternoon!
    I have created a dynamic form in LiveCycle Designer 9 - saved it as a Dynamic XML Form - opened it in Acrobat X - saved it as Reader Extended PDF and Enabled Additional Features. My colleagues will then need to open it in Reader X and select the option to draw and place thier signature in the text field I have provided them with. When I open the form in Reader X and click on the SIGN tab I get the following error message:
    The security settings on this document prevent adding text and/or placing a signature on it from Adobe Reader. To fill and sign this document you need to print it out.
    I have looked for help on this issue everywhere, yet to no avail.
    I do not want to hear about using digital signatures or Echosign, We only want and need to have staff sign forms by drawing their signature.
    Please help!
    Thanks,
    Will

    Hi will,
    I am not aware of Reader Enabled PDF from Acrobat X.
    Have you tried enabling digital signature using Reader Extensions which comes with LiveCycle Server. viz http://I.P:Port/ReaderExtensions
    Regards,
    Ali

  • Is it possible to save a copy of a PDF form created in Livecycle Designer ES3?

    Hey,
    I've created a form using the trial version of Livecycle ES3 however when I view the form I get this message:
    "you cannot save data typed into this form. Please print your completed form if you would like to keep a copy for your records."
    Is there a way around this/ is this just with the trial version? If I download the full version will the forms then be saveable?
    I don't want to send out the form to people unless they are able to save a copy as I think that this could cause issues.
    Answers much appreciated!

    If you use the File > Distribute Form this does allow recipients to save data entered into the form.  However, beware of the following points:
    1.  File > Distribute Form will take you through a process to gather information about your preferences for distribution including destination email addresses.  Once you have gone through this process, subsequently there is no option to change or reset any of the original inputs.  For example, if you wish to change the destination email address, you need to open the PDF in Acrobat Pro and go to Edit > Preferences and select the identity category.  The email address can be changed there.
    2.The File > Distribute Form, seems to make other changes to the PDF too, because it uses the email address entered when Distribute Form is first used, to submit the PDF by email.  If you have an email submit button in your form, like I did, this does not work any longer in Adobe Reader.  Clicking it now simply prompts to save a local copy of the PDF. The submit does work in Acrobat Pro, but this is useless for a distributed form.
    Paul

  • Is it too much to ask that a Mac user can just OPEN and USE a PDF form created by LiveCycle Designer PC software?!?

    My problem is just that- I have created all my forms using LiveCycle Designer because it is easier to make the forms accessible to individuals with disabilities.  Apparently it doesn't make Mac users have access to the forms.  I've received complaints from Mac users that cannot complete or submit the forms that I created.  I'm not asking how to recreate using another software, I know how to do that.  I'm asking is there a work around to allow a Mac user to open a PDF form or even XML (bedded within an HTML page) on a Mac computer WITHOUT having to use bootcamp, parallels, etc. and be able to complete the form and submit, print or email it?????  I've exhausted all my knowledge on this thus far and I'm hoping to find something that will help.  So far all forums talk about how Mac users need to have a PC side to their computer.  Isn't there another way?
    I've attached an example form that we are no longer using (though still created exactly the same as the others)
    Thanks!

    Hi, as far as I can infer, that term means it's not loading any resources until needed, opposite of this...
    -bind_at_load
                     Sets a bit in the mach header of the resulting binary which tells dyld to bind all symbols                when the binary is loaded, rather than lazily.
    https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/ man1/ld.1.html
    Load resources lazily.
    You should never load a resource file until it is actually needed. Prefetching resource files may seem like a way to save time, but this practice actually slows down your app right away. In addition, if you end up not using the resource, loading it wastes memory for no good purpose.
    http://developer.apple.com/library/ios/#documentation/iphone/conceptual/iphoneos programmingguide/PerformanceTuning/PerformanceTuning.html
    And, higher OS versionsare even worse with Bonjour/mDNSResponder, but might see this...
    http://support.apple.com/kb/ht3789

  • Uploading pdf files created with LiveCycle Designer ES4

    I uploaded some pdf files to my server that were designed with LiveCycle Designer ES4.  I can open them directly from the server using my SmartFTP program, however when I
    try to download using the URL, I get the following message:
    Please wait. . .
    If this message is not eventually replaced by the proper contenst of teh document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows . . . .
    I have both the latest version of Adobe Reader and Acrobat Pro XI installed on the computer.
    Any thoughts??

    Hi,
    Only if the form has been Reader Enabled before it is sent out to the user with Reader.
    There are two ways of Reader Enabling the form. One using Acrobat Standard v9 or Acrobat Professional v8 (both have license restrictions). The other is to use LC Reader Extensions ES2, which is a server product (additional costs).
    Some info here:
    http://www.assuredynamics.com/index.php/2010/11/using-livecycle-forms-in-acrobat-and-reade r/
    A search of the forums for "Reader Extensions" or "Reader Enable" will give more information.
    Hope that helps,
    Niall
    Assure Dynamics

  • How to mail pdf file created in LiveCycle Designer

    I have a problem with how to do it...
    How can I sendto:[email protected] and add the pdf file with data.
    //Janne Lindwall

    Not possible with the 'Create Adobe PDF Online' service. Try the Designer forum.

  • Problems Viewing .pdf Template Created with Adobe

    I created a .pdf template using Adobe LiveCycle Designer. After I upload this template, I can not view the report. Can I only create templates using the BI Publisher plugin for MS Word?

    That is hardly a solution, the whole purpose of upgrading to Adobe Reader X is to avoid potential threats.  There is obviously a problem with Adobe Reader X and veiwing certain documents that needs to be addressed and the way to address it should not reside with "Use Adobe 9 and Adobe 10 and pick whatever version works for your document"

  • Input needed for writing data back into BW/ECC data

    Hello Everyone,
    Can anyone please let me know an example or process you have used for writing data back into BW (DSO/Cubes) or ECC systems.
    We do not have integrated planning in our current system configuration currently.
    So, any sample code for using any of the BAPI/RFC for writing data would be appreciated.
    Also, I am trying to find out if there is any way to schedule the models developed in VC 7.1 in background to automate certain type of data processing which goes across multiple systems.
    Any help would be appreciated.
    Thanks.

    Hello,
    Can anyone please help me out on this one....
    I am aware of few BAPI's such as RSDRI_ODSO_INSERT_RFC but I am not aware of what action has to be used to transfer the data from the table within VC to this BAPI and how to define the parameters as the one's available for the BAPI I mentioned do not fit into the data I have in the table within VC.
    The following are the columns I have in the table within VC,
    1. GL Account
    2. Credit Amount
    3. Debit Amount
    4. Sales Amount
    I have defined the DSO with the same where G/L Account is the keyfield and the rest being data fields.
    Any help would be really appreciated.
    Thanks.

  • Why can't I import a .txt file to a PDF created in Livecycle Designer?

    I am trying to import data into a PDF, simple stuff like names and addresses. I've saved my spreadsheet as a tab delimited .txt file, but when i go to import data in the PDF, .txt files are not an option. Is there a setting in Livecycle or in Acrobat that I haven't found?

    Is there a way for me to import the data to a PDF created in LiveCycle designer?

  • Data import for users of forms created with Livecycle Designer

    Hello,
    I have seen several posts regarding data import for forms created by Livecycle Designer but nothing that helps with something I am trying to accomplish.  I can create a data connection and import information in a form but what I would like to do is import data, then send the pdf for completion to a user.  There are a few data elements that I have available and the rest of the information comes from from the user.  The problem I run into is once I create a data connection, the pdf is ALWAYS looking for the source file for that data.  I simply want to prepopulate some fields and send to the various users for completion.  Any help would be greatly appreciated.
    Thanks!

    Which type of Data Connection are you trying to create?
    XML Schema, Sample Data File or WSDL?
    Creating any one of first two types(mentioned above) will only create schema and will never import any data into PDF.
    If you create the WSDL connection, you can surely import data (i.e. prepopulate data) into your PDF and forward it for users review/fill.
    If I misunderstood your question, please get me clarified.
    Nith

  • Can I combine a form created in Livecycle Designer with a standard pdf to create a new document?

    I have a fillable form that I created with Livecycle Designer along with two standard pdf files.  When I try to combine in Acrobat Pro 10 it identifies the form with XML data and will not allow me to complete the process.  Thanks in advance for any help with this.

    No you cannot... this is one of the things my organization struggles with.  I love livecycle becuase of its dynamic form capabilities, but we have so many other pre-built pdfs in adobe pro that can not be merged with these forms.  It is truly frustrating!!!  wish i had a better answer for you.  Also from the book 'Creating Dynamic Forms with Adobe LiveCycle Designer' page 6... "The PDF files that Designer creates are structurally different than other PDF files...... LiveCycle Designer can edit a PDF form created in Acrobat, but Acrobat can not edit a PDF form created in Designer."  Likewise... XML pdfs do not merge with other pdfs. JoBeth

  • Form automation with PDF's created in Livecycle

    Hi,
    I'm having a issue getting the fields from a PDF file created in Livecycle. I get the following error once I access a field:
    Element not found. (Exception from HRESULT: 0x8002802B (TYPE_E_ELEMENTNOTFOUND))
    Is it possible to use the OLE API's to retreive the fields in the Livecycle form? Here is the code in question:
    Public Function FillForm(ByVal patient As clsPatient, ByVal isNew As Boolean, Optional ByVal CompletionDate As Date = #1/1/1900#) As String Implements iPDFProcess.FillForm
    Dim ds As New DataSet
    Dim dr As DataRow
    Dim NewFile As String
    Dim formApp As AFORMAUTLib.AFormApp
    Dim bOK As Boolean
    Dim avDoc As Acrobat.CAcroAVDoc
    Dim pdDoc As Acrobat.CAcroPDDoc
    Try
      'Set the mouse icon to display an hourglass
      System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor
        If isNew = False Then
            ds = GetData(PatientId, CompletionDate)
            If ds.Tables(0).Rows.Count > 0 Then
                dr = ds.Tables(0).Rows(0)
            End If
        End If
        avDoc = CreateObject("AcroExch.AVDoc")
        bOK = avDoc.Open(lTemplateFileName, "NB")
        avDoc.Maximize(1)
        formApp = CreateObject("AFormAut.App")
        If isNew = True Then  'Only fill Demographic data
            formApp.Fields("PatientId").value = patient.PatientId
            formApp.Fields("DateCompleted").value = Format(Now(), "M/dd/yyyy")
            formApp.Fields("PatientName").value = patient.LastName & ", " & patient.FirstName
         end if
         The rest of the code is not shown to save room.
    As soon it tried to access a field I get the above error. I also have a problem with the following code in another section of my code (for another PDF form). Here is a segment of the code:
        avDoc = CreateObject("AcroExch.AVDoc")
        bOK = avDoc.Open(lTemplateFileName , "NB")
        avDoc.Maximize(1)
        formApp = CreateObject("AFormAut.App")
        acroForm = formApp.Fields
        If isNew = True then
            For Each f As AFORMAUTLib.Field In acroForm
                Select Case f.Name
                    Case "PatientName"
                        f.Value = patient.LastName & ", " & patient.FirstName
                    Case "Gender"
                        f.Value = patient.Gender
                    Case "DateCompleted"
                        f.Value = format(Now(), "M/dd/yyyy")
                    Case "PatientId"
                        f.Value = patient.PatientId
                    Case "DOB"
                        f.Value = patient.BirthDate
                End Select
            Next
        Else
    It always passes right over the loop as it it can't find the fields. What up with that. Thanks for any help that you can provide.

    Apparently the IAC api's will not work with livecycle forms. I just recreated the pdf file in Acrobat alone, and it now works. But this leaves me with other issues such as:
    1. How can I represent a Date picker field?
    2. A few of our forms created in Livecycle use dynamic forms. I.E. Hiding pages until a checkbox is selected for example. Is it possible to get similar results with just Acrobat/reader?
    Thanks for any suggestion or comments.

  • Reader 11.0.07 does not display content of PDFs created with LiveCycle Designer ES 8.1

    We use some PDFs created with LiveCycle Designer ES 8.1 which do not show any content when opened with Reader 11.0.07, only a blank display area or erratic copies of the screen behind it. Documents look fine in print preview though and also print correctly. Tried to change various security or display settings, no effect. Tried other machines, different hardware, different OS versions (Win7, Win8), same effect on every single device with 11.0.07 installed.
    Any ideas, anyone?!?

    Hi,
    Not sure why you are resolving the node (??), also I would not be inclined to include a period in the object name (.), maybe this is why you are resolving the node.
    Also I don't see in the script where you are calling the instanceManager, in order to use the addInstance method.
    Having said that the problem may be in the File > Form Properties > Defaults tab:
    Check that Preserve script changes is set to Automatic.
    Lastly is the form Reader Enabled? It would need to be for users with Reader to save the changes, including new instances of a repeating element.
    Niall

  • Is possible in acrobat reader fill in and save interactive PDF created with LiveCycle Designer?

    is possible in acrobat reader fill in and save interactive PDF created with LiveCycle Designer?

    Hi,
    Only if the form has been Reader Enabled before it is sent out to the user with Reader.
    There are two ways of Reader Enabling the form. One using Acrobat Standard v9 or Acrobat Professional v8 (both have license restrictions). The other is to use LC Reader Extensions ES2, which is a server product (additional costs).
    Some info here:
    http://www.assuredynamics.com/index.php/2010/11/using-livecycle-forms-in-acrobat-and-reade r/
    A search of the forums for "Reader Extensions" or "Reader Enable" will give more information.
    Hope that helps,
    Niall
    Assure Dynamics

Maybe you are looking for

  • Can't see synched Contacts in Palm Vx

    I have never been able to see my contacts/addresses on my Palm Vx (OS 3.5.3) after I sync with Palm Desktop (v. 4.1.4). When I check App-Info-Records, the list shows 595 records, which jibes with what I have on the desktop. But when I open the addres

  • Using Adobe Acrobat 7.0 w/Reader 9.0: Cannot Enable Commenting

    Hello, Currently, I use Adobe Acrobat 7.0 to PDF documents and then send them out for review. When I send out the PDF documents in an email-based review, my colleagues open the documents with Adobe Acrobat Reader 9.0, but are unable to add and save c

  • Best way to store big amount of data

    Hi, i need to store a big amount of data, written in a txt its size is almost 12 mg, anyway it depends on the computer it runs, beacause what i want to store is all the shared files in a computer. Which is the best way to store it? Array string? text

  • Relatively slow display of pdf files?

    Hi: I've got an Oracle Text application that indexes and queries various file types fine, but the actual display of pdf files is pretty slow. On a 2.4GHz P4 w/1G Ram it took about 20 seconds to display it's version of a 2.5M pdf file. It takes < 10 s

  • Video equipment question

    Greetings all. Please let me apologize in advance, this is NOT a strictly FCPX question. That said, I am hoping for some advice or perhaps an idea of where to go to get it from this group of experts. I am a long time FCExpress user who has recently m