Pre-populate dynamic form with XFDF

I am trying to pre-populate a form saved in Designer as a dynamic form. If the form is saved in either the 6.0 compatibile, or the 7.0 static pdf file format, my XFDF file works fine. If I open the PDF in Designer and save it as a dynamic form, the XFDF file opens the form in reader, but no data is populated.
I have searched everywhere and haven't found any information on this. Any help is greatly appreciated.

OK... so here's the update. The PDF file only has one vertically expanding field (a "Description") field on the page and it takes up about 2 vertical inches. If I open the PDF in Reader I can type into it and everything expands and flows correctly. If I use an XFDF file that contains a lot of data in the Description field, everything comes up perfectly. However, if I either modify my XFDF file, OR create an XFDF file that only has a tiny amount of data in the Description field (1-2 lines), the PDF is opened and no data is displayed anywhere in the form. If you click on a text field, any data that should be there magically appears. When you navigate out of that field, it disappears.
This only happens if the XFDF file has a Description field value that doesn't cause the PDF Description field to expand past the 2 inches.
I am new to Designer 7.0 and this is my first file that has dynamic flowing fields... is this a bug, or am I missing a property somewhere?
Thanks

Similar Messages

  • How to pre-populate ADF form with data?

    Hi Guys,
    Just wondering how you go about generating a pre-populated ADF form. Is it something that is done though the ADF designer and Business Objects? or do you have to create the Database tables seperatley and bind them into ADF and the workflow. Specifically I want this so a user is presented with a several drop-down lists when the initiator human task is run.
    Thanks,
    Ross

    Hi Ross
    1. Yes, in the very first place in the Database, we added all the data manually for all the Lookups. Its our own custom Schema. We are planning to provide some simple admin screens in a different WebApps to maintain these lookup values. Note that this is a different simple ADF App, with one EJB Layer and EJB Layer calling this database and getting/updating the values.
    2. ALSO, we have some lookup values that we get from totally another System/application like Oracle EBS Suite. For this, we already have a custom schema created. In this custom schema, we have some stored procedures created by the EBS database developers (they are more familiar with EBS). Now within our EJB layer, we use JPA architecture, call these stored procedures, and get all the lookup values and show in the TaskDetails page. These lookup values are maintained in EBS itself, so we do not have any custom admin screens within our SOA/BPM project.
    In conclusion, for our SOA/BPM applications, we have like 2 Databases. First database is for SOA Components where we run RCU comand and it has all SOA_INFRA, MDS, ORABAM schemas etc. The second database is for our custom schema specific to our application. Here we have our own lookup tables, custom tables and any cutom stored procedures that coonect to external EBS etc. From Weblogic console, we just create a Datasource for this second database and use that in JPA layer (persistence.xml file). For the first database, you already know that at domain creation itself, it will create all datasources also.
    Thanks
    Ravi Jegga

  • Populate PDF form with XML data

    Although a seemingly simple task, this question has occupied way too much of my time the last week and I am asking the following out of sheer desperation and frustration.
    I have a pdf form created with Designer 7.0. I have a separate XML data file to populate the form with. I can test using the preview in Designer and everything looks great. Now, all I want to do is deploy this pdf to a standard web server (IIS, Windows) such that any visitor to the site (using Reader) is able to open it/view it/print it, with the data there. That's it.
    This was easily accomplished using Acrobat 6 by creating an ASP page that output an FDF file which referenced the PDF. Not so with the latest version.
    I have downloaded three separate several hundred page documents that do not explain how to accomplish this task simply. So to summarize:
    1. Does this task *require* a separate piece of software (Document Server) that was not required before?
    2. If Document Server is not required, what are the steps to publish the pdf file and reference the data file?
    Please help, extraordinarily frustrated :-(.

    Ravinder, were you actually able to get your PDF Document (Form) to load with data?  I have not been able to get my .NET page to populate my PDF document - the PDF loads in my Browser but has no data.  If you can post sample code that you were able to get to work, it would be appreciated, or if you notice something wrong with my code below, please let me know.<br /><br />Also, when my PDF document loads in my browser, I am prompted to "Open or Save" my .xdp file and if I click "Open", my PDF Form loads, but the fields are not populated.  How do I stop this prompt from loading?  I don't want the user(s) to be able to see this.<br /><br />My .NET page and XML file are listed below:<br />------------------------- .NET -----------------------------------<br />Imports System.Text<br />Imports System.IO<br /><br />Public Class WebForm1<br />    Inherits System.Web.UI.Page<br /><br />#Region " Web Form Designer Generated Code "<br /><br />    'This call is required by the Web Form Designer.<br />    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()<br /><br />    End Sub<br /><br />    'NOTE: The following placeholder declaration is required by the Web Form Designer.<br />    'Do not delete or move it.<br />    Private designerPlaceholderDeclaration As System.Object<br /><br />    Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init<br />        'CODEGEN: This method call is required by the Web Form Designer<br />        'Do not modify it using the code editor.<br />        InitializeComponent()<br />    End Sub<br /><br />#End Region<br /><br />    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />        'Put user code to initialize the page here<br /><br />        Dim responseString As New StringBuilder<br />        Dim sr As StreamReader<br />        Dim xmldata As String<br /><br />        Response.ContentType = "application/vnd.adobe.xdp+xml"<br />        responseString.Append("<?xml version='1.0' encoding='UTF-8'?>")<br />        responseString.Append("<?xfa generator='AdobeDesigner_V7.0' APIVersion='2.2.4333.0'?>")<br />        responseString.Append("<xdp:xdp xmlns:xdp='http://ns.adobe.com/xdp/'>")<br />        responseString.Append("<xfa:datasets xmlns:xfa='http://www.xfa.org/schema/xfa-data/1.0/'>")<br />        responseString.Append("<xfa:data xfa:dataNode='dataGroup'>")<br />        sr = File.OpenText("c:\\inetpub\\wwwroot\\PDFFiller\\TestForm_data.xml")<br />        xmldata = sr.ReadToEnd()<br />        sr.Close()<br />        responseString.Append(xmldata)<br /><br />        'responseString.Append("<form1>")<br />        'responseString.Append("<txtFirstName>Homer</txtFirstName>")<br />        'responseString.Append("<txtLastName>Simpson</txtLastName>")<br />        'responseString.Append("</form1>")<br /><br />        responseString.Append("</xfa:data>")<br />        responseString.Append("</xfa:datasets>")<br />        responseString.Append("<pdf href='http://localhost/PDFFiller/TestForm.pdf' xmlns='http://ns.adobe.com/xdp/pdf/' />")<br />        responseString.Append("<xfdf xmlns='http://ns.adobe.com/xfdf/' xml:space='preserve'>")<br />        responseString.Append("<annots/>")<br />        responseString.Append("</xfdf>")<br />        responseString.Append("</xdp:xdp>")<br /><br />        Response.Write(responseString)<br />        Response.Flush()<br />        Response.End()<br /><br />    End Sub<br /><br />End Class<br /><br />----------------------End .NET -----------------------------------<br /><br />--------- XML (TestForm_data.xml) --------------------------------<br /><form1><txtFirstName>Homer</txtFirstName><txtLastName>Simpson</txtLastName></form1><br />----------------------End XML -----------------------------------

  • Pre populate an item with source type="Database Column"

    Hello gurus,
    How can I pre populate an item with source used "Always, replacing any..." and source type="Database Column"?
    I have a form that creates/updates rows in a table and when creating a new row I want to populate some of the fields based on some parameters from the previous page. How can I achieve this?
    I tried adding a conditional process when PK is null and populate the expected fields, but in the browser they are not shown with those values, even if I look into the session I can see that they have the values assigned in the process ?!?!?!
    Thanks in advance,
    Florin

    Florin,
    Use the Default Value item attribute. In you case, set the Default Value Type to Static Text with Session State Substitutions and enter your item using the &P1_ITEM_NAME. syntax in the Default value text box.
    Thanks,
    - Scott -

  • How to save a completed form that was created as a dynamic form, with expandable files?

    I have created a dynamic PDF form with expandable fields etc. As this is to be accessible for customers to completed, how can they save a completed copy on their own PC?
    I tried it myself and I receive an error msg stating that I can only save a Blank Copy of this Form:  Data typed into this form will not be saved. Adobe Reader can only save a blank copy of this form.
    How can I create a dynamic form (with expandable fields/flowable layout etc) that allows the applicant to not only complete the form but also, to save a completed copy?

    Thanks! That worked , however I now have an additional issue.
    While the form works in Internet Explorer (I'm using IE11), in that it's viewable, it opens and allows me to save etc) it doesn't work in Google Chrome and I'm getting the below error message:
    Any ideas on why it doesn't display in Chrome and does in IE (I'm using the same PC and I'm using Adobe Reader XI)!
    there are other PDF forms on site that are not dynamic but are fillable, and these are opening!
    Thanks

  • How to populate smart form with new values

    Hi!
    I am new to smart form . Can anybody help me in how to populate smart form with some new fileds. Actually i have to populate credit memo form with some customized values..

    Hello,
    Please elaborate your query more in order to be comprehendable.
    Regards,
    Shehryar

  • Populate object form with already provsioned resource object's data

    OIM Version:
    9102 BP19
    Scenario:
    We have to pre-populate resource object (ModifyObject) form fields with already provisioned resource object (ProvisionedObject) form fields which can be multi-instance resource.
    This provided data will be used modify the already Provisioned resource object data (same ProvisionedObject). And this needs to be handled with approval workflow.
    Approach:
    We will use selected ProvisionedObject’s process instance key on web page in resource object pre-populate adapters. And using that process instance key we will fetch already provisioned resource (ProvisionedObject) object’s data.
    Issue:
    Not sure how can we pass the process instance key from WEB_PAGE to OIM_RESOURCE_OBJECT’s pre-populate adapter.
    Any pointers towards the solution will be appreciated.

    My suggestion is...
    At the time of raising the request, use userKey and in the code use getObjects() to retrieve the provisioned resource object information. Here you can retrieve Process Instance Key of the Provisioned resource and then retrieve the process data. So at this point you will have all the required data of the provisioned resource which can be returned to the object form field.
    This is one approach. Experts may throw more pointers.

  • What product we need on the server to pre-populate XFA form created using LiveCycle Designer?

    We run our web applications on IBM Lotus Notes/Domino server (Version 8.5.3). I need to figure out what is that specific server component that we need to install on our server just to pre-populate data on to the XFA forms. (We don't need to merge PDF files, or attach any workflow, or submit data entered in the XFA forms to any web server.)
    I understand that Adobe LiveCycle ES4 is a suite of products that does a lot more than what we need to do. So, in that suit of products which specific product is that we need to buy & install on our server that enables us to use java code to populate data on to the XFA forms. Also, will that server component work on IBM Lotus Notes/Domino server or is it only going to work on a J2EE server?
    I appreciate a response. Thanks.

    I am sorry, but I am still confused. Out of the following modules of Adobe LiveCycle, which one is that I need to do the filling of the PDF forms.
    Forms Standard and Pro
    Reader® Extensions
    Process Management
    ECM Connectors
    Correspondence Management
    Output
    PDF Generator
    Rights Management
    Digital Signatures
    Do I have to install the entire suite or just one of these will be enough for filling data?

  • How can I get data from excel to populate a form with unique entries and distribute?

    I would like to use Adobe LiveCycle to create a form, then use data from an excel spreadsheet to populate the form in a repetative fashion so that each person in the spreadsheet gets a populated form with only their applicable data on it.
    Also, if there is a way to use a mail merge function, this would be helpful to know since each person is to receive their copy as an attachment through email. 
    Any help would be appreciated - have been researching for 2 days now how to do this and am at a loss.

    See Connecting a From to a Database and Connecting to a Web Service by Stefan Cameron. Excel can have named ranges that can be connected an ODBC connection.

  • Dynamic Forms with Subforms and Text Fields

    I've been reading all of the messages relating to subforms and dynamic forms and have used many of the suggestions, but haven't found anything that addresses the problem I am having. I'm using Designer 7.0. I've saved my form as a dynamic form, I've set my text fields for multiple lines and expand to fit. My problem is that as soon as I set the parent subform to Flow Content, everything moves to the left margin. I've tried grouping items together within a subform in hopes that the items will maintain their position on the page, but everything always moves to the left margin. I'm creating a legal form that needs to have text and a text field centered at the top of the page. Below that to the left is a text field that needs to be able to expand with two text fields to the right of it. Below that are additional text fields that need to expand as needed.
    Am "stacking" my subforms incorrectly and setting the wrong subform to Flow Content? Or, can you now lock a field to a specific position? Any help would be greatly appreciated.

    Unfortunately, I hadn't understood that you needed the fields to expand in height and everything below them to move down the page. In that case, you'll need to use flowed subforms.
    Having all objects move to the left side of the page is expected when setting a subform to flowed. That's because the flow is top-down, left-right.
    One thing you could try is making the text field that needs to be centered exactly as wide as the flowed subform and then setting its left- and right-hand margins to an equal number. This would ensure an equal amount of space on the left- and right-hand sides and because the field would be as wide as its flowed container (subform), entering multiple lines of text would result in everything below moving down.
    I've attached a sample form where the page subform has been set to flowed, the text field at the top is a multi-line/height-expandable text field with its width set to the page width and its left- and right-hand margins both set to 2in and the button and check box objects are pushed below the text field.
    When text is entered into the text field, it expands in height and causes the button and check box to move down.
    To achieve other horizontal and vertical positioning/offsets, you could play with the margins of all the fields that need this.
    Stefan
    Adobe Systems

  • Urgent: pre-populate a form

    Hi,
    I have a nice form but it is empty in the beginning - I want to load
    some data depending on the logged in user into the form.
    I saw in the example demo where this was done in 2 staep with a frame driver.
    But I want to have some user information displayed on the site where every user can
    change this address and telefonnumbers.
    I get the user with "PORTAL.wwwctx_api.get_user" but I don't know how
    to get the form loaded for this user.
    How can I do this?
    Please help.
    Thanks
    Michael

    Michael:
    No, I had pre-filled a form I made myself all within a PL/SQL procedure, so it was pretty straight forward for me. I am not yet familiar with the other method being presented, but I'm new at using PL/SQL & Portal.
    Below, find the procedure code I used...this form gets fields pre-filled with a particular survey's info when the user pulls it up based on the incoming parm. I'm now trying to use Portal's form builder vs. creating my own from scratch, but I haven't yet had to pre-fill a form built this way yet...
    -- Procedure 24 body
    Procedure MODIFY_SURVEY_INFO_FORM (p_Survey_ID IN NUMBER) IS
    -- Purpose: Form for modifying a survey.
    -- Author : Ed Maurer, My Company IT, Tampa
    -- Date : 14 May 2002
    -- MODIFICATION HISTORY
    -- Person Date Comments
    v_Survey_Title VARCHAR2(60);
    v_Survey_Desc VARCHAR2(100);
    v_Start_Dt VARCHAR(12);
    v_End_Dt VARCHAR(12);
    err_num NUMBER;
    err_msg VARCHAR2(100);
    BEGIN
    SELECT Survey_Title, Survey_Desc, TO_CHAR(Start_Date, 'mm/dd/yyyy'), TO_CHAR(End_Date, 'mm/dd/yyyy')
    INTO v_Survey_Title, v_Survey_Desc, v_Start_Dt, v_End_Dt
    FROM Portal30_Custom.Survey_Info
    WHERE Survey_ID = p_Survey_ID;
    htp.print('
    <div align="LEFT">
    <font size=2 face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=1>Modifying a survey is simple!
    <ul>
    <li>First, fill in the fields in the below form then click the "Submit" button.
    <li><font size=2>Upon clicking the SUBMIT button, you will have the opportunity to modify the questions for this survey.
    <li>If no modifications are necessary for the survey info, click on the MODIFY SURVEY QUESTIONS button below to directly modify the survey questions. </font></div>
    </ul>
    <FORM NAME="ModifySurveyInfo" ACTION="/pls/portal30/PORTAL30_CUSTOM.POLL_CENTER.MODIFY_SURVEY_INFO" METHOD="POST">
    <table border=0 cellspacing=1 bgcolor=#CCCCCC>
    <tr>
    <td background="/portal_images/form_blue.gif" colspan=2 align=center><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-1 color=#ffffff><B>Modify Survey Info</B></td>
    </tr>
    <tr>
    <td background="/portal_images/form_blue.gif"><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-2 color=#ffffff><strong>Survey Title</strong></td>
    <td background="/portal_images/form_blue.gif"><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-2 color=#ffffff><INPUT TYPE="text" NAME="p_Survey_Title" Value="'||v_Survey_Title||'" SIZE="60" MAXLENGTH="60"> </td>
    </tr>
    <tr>
    <td background="/portal_images/form_blue.gif"><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-2 color=#ffffff><strong>Survey Description</strong></td>
    <td background="/portal_images/form_blue.gif"><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-2 color=#ffffff><INPUT TYPE="text" NAME="p_Survey_Desc" Value="'||v_Survey_Desc||'" SIZE="70" MAXLENGTH="100"> </td>
    </tr>
    <tr>
    <td background="/portal_images/form_blue.gif"><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-2 color=#ffffff><strong>Survey Start Date</strong><br>Date the survey starts on in format mm/dd/yyyy </td>
    <td background="/portal_images/form_blue.gif"><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-2 color=#ffffff><INPUT TYPE="text" NAME="p_Start_Dt" Value="'||v_Start_Dt||'" SIZE="10" MAXLENGTH="10"> </td>
    </tr>
    <tr>
    <td background="/portal_images/form_blue.gif"><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-2 color=#ffffff><strong>Survey End Date</strong><br>Date the survey ends on in format mm/dd/yyyy</td>
    <td background="/portal_images/form_blue.gif"><font face="Verdana, Tahoma, Arial, Helvetica, sans-serif" size=-2 color=#ffffff><INPUT TYPE="text" NAME="p_End_Dt" Value="'||v_End_Dt||'" SIZE="10" MAXLENGTH="10"> </td>
    </tr>
    <input name="p_Survey_ID" type=hidden value="'||p_Survey_ID||'">
    <TR>
    <td align=center background="/portal_images/form_blue.gif" colspan=2><INPUT TYPE="SUBMIT" VALUE="Submit"> <INPUT TYPE="RESET" VALUE="Reset"></TD>
    </TR>
    </TABLE>
    </FORM>');
    htp.print('
    <FORM NAME="ModifySurveyQuests" ACTION="/pls/portal30/PORTAL30_CUSTOM.POLL_CENTER.MODIFY_SURVEY_QUESTS_SEL_FORM" METHOD="POST">
    <input name="p_Survey_ID" type=hidden value="'||p_Survey_ID||'">
    <input name="p_Survey_Title" type=hidden value="'||v_Survey_Title||'">
    <input TYPE="SUBMIT" value="Modify Survey Questions">
    </FORM>');
    EXCEPTION
    WHEN OTHERS THEN
    err_num := SQLCODE;
    err_msg := SUBSTR(SQLERRM, 1, 100);
    htp.print(err_msg || ' Contact IT Dept (MODIFY_SURVEY_INFO_FORM proced)');
    END; -- Procedure MODIFY_SURVEY_INFO_FORM

  • Populate livecycle form with data in iOS / android

    Hi,
    I need to populate the livecycle form with data in offline mode in iOS or android. How do I achieve that? Any help is greatly appreciated.

    Thats good news.
    Is there a way currently to populate the livecycle static pdf with data in offline mode in iOS/ Andriod? For eg. if the data is in a xml file, is there a way to populate it into pdf in offline mode? If not, is it possible to achieve this in native code? Kindly help.

  • How to create a dynamic form with bind variables :schema & :table_name

    My application has two LOV's, one to select a schema, and the next to select a table within that schema. I then have a button which passes me to a report which displays the data in that table.schema.
    I now want to create a link to a form where I can edit the record based on the rowid of that table.schema, but it doesn't appear that I can create a dynamic form where I pass the schema.table_name and rowid. Is this possible? Can anyone advise how I can do this? The form builder only wants a fixed schema/table name.
    Thanks in advance.
    Stuart.

    Hi Stuart,
    In this sort of situation, you will need to be a bit creative.
    I would suggest a pipeline function called as if it was a report.
    Then you can pipe out the required fields.
    Since you will have a variable number of fields, you could use two of the multi row field names for your field names and values.
    Then after submit, you can create your own procedure to loop through the fields (stored for you in the Apex package) and update the table as required.
    Not very specific I'm afraid, but it should work.
    Regards
    Michael

  • How do I programatically pre-populate pdf form?

    I would like to merge a xml document into a pdf file programatically (php). Is this possible, or is Adobe LifeCycle server a requirement?

    If the author of the form allows it, forms can be filled out in Adobe Reader. That's assuming of course they are "real" forms with data input fields, not just graphical pages that emulate printed forms. If they are proper forms, you will need to use the current version of Adobe Reader/ Acrobat or else form fields may not appear or be ignored e.g. by the built-in PDF handler in Google Chrome.
    Mylenium

  • Pre Populate AD UserPrincipalName with multiple IT Resources and 1 form - 11g r2

    I have an ICF AD connector with 3 IT resources, each one having a different domain (i.e. example.us.com, users.eu.com....). I only have 1 resource form though. When I prepopulate the UPN field, I have to do userlogin@domainame. When I go to map the variables I don't see Process Data > AD Server option in there. I was thinking of creating a custom adapter and just check which IT resource it's coming from to determine the domainof that IT resource.
    Has anyone ran into this issue before? I'm trying to avoid creating a new form for each IT resource since all the logic is the same except for UPN.
    Thanks

    I would recommend a unique workflow per domain.  It will just make things so much easier for you in the long run.  No domain performs in the same way and you might need to add and remove attributes from them.  It might sound simpler to start and use the same, but it's just not worth the headaches you will encounter in trying to identify them uniquely while having them all use the same workflow.
    -Kevin

Maybe you are looking for

  • MacBook Pro 15" with Retina Display corners

    Hello, I own a 15" MacBook Pro with Retina Display. I work in a very high glare environment. When I'm working in the office I notice there are weird lines on all 4 corners of the display. Kind of looks like the display glass was not laminated correct

  • Can i use my time capsule as an external hard drive ?

    Hi, I just bought and installed a 3To Time Capsule, to replace a 6 years old one which was dying. On the old one I had (do not remember how but easily, i am no specialist), partitioned the TC, with one part for backing up and one part for storage as

  • Printing does not work in OSX applications, but did work in OS 9

    As the name of this thread implies, I cannot print from any OSX applications, but printing does work in OS 9 applications. I recently upgraded to Adobe Creative suite 3 (I know, i know, I am behind) and have had nothing but problems printing (even wi

  • Document contains an invalid frame

    On open, on a long document in InDesign CS6 (8.0) I'm getting: == Document contains an invalid frame. Story text begins - [figure] Delete frame and associated story? == If I click 'No' it gives me the next figure (about forty of them) and then ultima

  • Migration assistant for mail

    Having trouble getting the migration assistant to transfer files from my iBook to my new MacBook. I decided to move files manually. What I would like to ask is does anyone know the files to transfer so that mail will have all the log in files for the