LiveCycle ES4 - XFA forms, expandable tables and columnar layout

Hi,
We are using LiveCycle ES4 and XFA forms to bind XML to the PDF. I am having trouble with a particular layout however:
I have two tables.
The number of rows expand depending on the XML data.
I want to print the tables side-by-side in a newspaper like columnar format.
If I add them using a flowed sub form and make the sub form just high enough they display side by side, which is how I want it. It all works well as long as there is no page break. However, when the left table expands onto a new page the start of right table is moved to next page as well, leaving a big empty space on the right on the previous page.
If I change the contents of the sub form to positioned instead of flowed then the tables seem to behave correctly, but then the header row does not repeat after each page break, and the check boxes to enable "Include header row in subsequent pages" on the header row is disabled. This only becomes available if I make the sub form flowed instead of positioned.
I am stuck between a rock and a hard place. Why can't I enable "Include header row in subsequent pages" on positioned tables? Can someone suggest an alternative method perhaps? Note that there are other non-columnar sub forms as well so I cannot use columnar master page content areas, unless I understand master pages wrong.
Any help will be greatly appreciated!
Jako

Hi Sara,
1) The first problem is because you did not set the Page content direction to "Flowed". Once the Page's Content property is set is flowed, your problem should be resolved.
2) You can always make a section visible or hidden by scripting. Use code :
               subform.presence = "visible";
                         or
               subform.presence = "hidden";
Thanks,
VJ

Similar Messages

  • Issues with LiveCycle ES4 - "Distribute Form" greyed out and "email button" not functioning

    Bought this software on 8/1/13.
    Designed my first form, "saved to repository" and proceeded to test. The email function for whatever reason does not work. Went back and examined the properties to the button, I have it set up correctly. In fact the XMS format works perfect, but I want the form to come via PDF when emailed. This feature is not coming through on email.
    I am not sure if the above two issues are related however I did read that in the stand-alone software, the "distribute form" is not offerred which I wonder if this the reason it is greyed out.
    Can anyone help me work through the "email button" issue?

    If the PDF submits to a server-side script URL it can bypass client-side email software.
    Try the online PDF submission examples and see if it works for you in Mozilla FireFox:
    http://www.pdfemail.net/examples/
    You should also make sure the browser is using the Adobe Reader plugin as the default PDF reader.
    http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html

  • Urgent help needed!! Layout table and Draw layout cell dissapeared.

    I need some urgent help. I'm using CS3 but for a while my
    Layout Table and Draw Layout Cell icons appear greyed and can't use
    them at all. Is there any kind soul out there who knows how to fix
    this? I'm going nuts trying all the possible options but none seem
    to work.
    Help please!!!!!!

    > How would you about designing a page without using html?
    You don't. But I don't recall suggesting that you not use
    HTML. I just
    suggested that you use best-practice HTML, no? Or maybe you
    meant to ask
    how you would go about building your site without learning
    HTML? In that
    case, I think you are outta luck. Using DW without knowing
    HTML is a very
    punishing experience, I'm afraid.
    > PS: A virtual box of 12 bottles of Moet Chandon is
    already on your way!!
    I'd prefer Cristal, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Untersberg" <[email protected]> wrote in
    message
    news:g4tj9a$m5o$[email protected]..
    > Ahhhhhh!!!!! They came up!!!! They came up again!!
    > I was on standard mode. Now going back to your
    suggestion, which I really
    > appreciate. How would you about designing a page without
    using html? I'm
    > just
    > redesigning my website at the moment and need it to get
    going urgently,
    > hence
    > the reluctance to start learning HTML at the moment.
    I'll do after but I
    > need
    > to get this up and running fairly quickly.
    >
    > Cheers.
    >
    > PS: A virtual box of 12 bottles of Moet Chandon is
    already on your way!!
    >

  • Need help referencing expanding table data in vBody.

    I have a form that I created in LiveCycle that has an expanding table with 7 columns of data. Once the form has been completed by the user they will click a button that will trigger a mailMsg event and will send form data as a plain text email. Everything works great except for the loop that is supposed to write the table data.
    This is what the table data should look like in Outlook message.
    Column1: rawValue
    Column2  rawValue
    and so on
    Column1: rawValue
    Column2  rawValue
    and so on
    script:
    var i=0;
    for (i=1;i<=vRowCount;i++)
    vBody +="***********************************\r\n";
    vBpdy += "Column1: " + xfa.resolveNode(form.form1.ReportFields.Table1.Row1[" + (i-1) + "].Column1").rawValue + "\r\n";
    vBody +="***********************************\r\n";
    That is all I have written for the loop right now until I figure out why it is not executing.

    If you want insert and delete the same data you only have to use the same where
    Sth like th
    CTH@>create table demo
    2 ( n number,
    3 c varchar2(1),
    4 d date );
    Table created.
    CTH@>insert into demo (n,c) values (1, 'a');
    1 row created.
    CTH@>insert into demo (n,c) values (2, 'e');
    1 row created.
    CTH@>insert into demo (n,c) values (3, 'i');
    1 row created.
    CTH@>insert into demo (n,c) values (4, 'o');
    1 row created.
    CTH@>insert into demo (n,c) values (5, 'u');
    1 row created.
    CTH@>create table demo1
    2 ( n number,
    3 c varchar2(1),
    4 d date default sysdate);
    Table created.
    CTH@>begin
    2 insert into demo1
    3 select *
    4 from demo
    5 where d is null;
    6
    7 delete demo where d is null;
    8
    9 end;
    10 /
    PL/SQL procedure successfully completed.
    CTH@>select * from demo1;
    N C D
    1 a
    2 e
    3 i
    4 o
    5 u
    5 rows selected.
    CTH@>select * from demo;
    no rows selected
    CTH@>insert into demo (n,c) values (1, 'a');
    1 row created.
    CTH@>insert into demo (n,c) values (2, 'e');
    1 row created.
    CTH@>insert into demo (n,c) values (3, 'i');
    1 row created.
    CTH@>insert into demo (n,c) values (4, 'o');
    1 row created.
    CTH@>insert into demo (n,c) values (5, 'u');
    1 row created.
    CTH@>
    CTH@>begin
    2 insert into demo1 (n,c,d)
    3 select n,c, sysdate d
    4 from demo
    5 where d is null;
    6
    7 delete demo where d is null;
    8
    9 end;
    10 /
    PL/SQL procedure successfully completed.
    CTH@>select * from demo1;
    N C D
    1 a
    2 e
    3 i
    4 o
    5 u
    1 a 19-09-2007 13:38:07
    2 e 19-09-2007 13:38:07
    3 i 19-09-2007 13:38:07
    4 o 19-09-2007 13:38:07
    5 u 19-09-2007 13:38:07
    10 rows selected.
    CTH@>select * from demo;
    no rows selected

  • Need to send text string to new row in expandable table

    I have a table that is a summary of other choices made throughout the document.  For specific check boxes in the form, there is a defined phrase that needs to be sent to a new row in the summary table.
    The general idea is that for checkbox:
    form1.sfMain.sfContent.tableC2.Row1.cbC2b6
    if (this.rawValue == "1") {
    this.resolveNode('form1.sfApp6.tableApp6A._Row1').addInstance(1);
    this.resolveNode("form1.sfApp6.tableApp6A.Row1[*].ddApp6A1c").rawValue = "Blue bottle";
    This needs to be something I can specify for each applicable checkbox (each will have a different text string), but I don't know what the final count is going to be (depends on choices made by the user) so I can't delete rows in the table and start over every time.  It needs to be additive.
    Any suggestions?
    Message was edited by: cyndilynnrose

    For anyone needing the same thing, I found exactly what I needed:
    http://www.truetechtroubleshooting.com/2012/02/advanced-expanding-tables-and-script.html
    The hardest part of getting it working was figuring out how many parent levels I needed to add since I have a heavily layered form.

  • Table Cells in Layout Mode vs WYSIWYG

    I am new to Dreamweaver and am using v8.0. When designing a
    page using Tables and Cells in Layout Mode the layout looks fine;
    the Cells are nice and tight. However - and this regardless of
    which Browser I use to check the page - the spacing between those
    same Cells is wholly unacceptable. As mentioned, in Layout Mode
    everything is tight; when viewing it in a browser there may be up
    to 2" of space between the Cells.
    What have I over looked? Any suggestions greatly appreciated!
    Thanks!

    Table width = 1327? Don't ever make your width more than
    about 770. As for
    the spacing .. I have never seen so many empty table cells in
    my life. :)
    As the others have said, you will do far better by learning a
    little html
    and css .. "adhering to conventions" will never happen with
    Layout Mode.
    It's there so people can draw tables .. but if I were DW
    Engineering, I
    would remove it .. I think it causes more problems than it's
    worth. :)
    Nancy
    "LGLDSR73" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thank you, Nancy!
    >
    > Cellspacing=0 set as such:
    >
    > <table width="1327" border="0" cellpadding="0"
    cellspacing="0">
    >
    > I seem to have it squared away now but that doesn't mean
    that I am
    > adhereing
    > to conventions. What I was doing was selecting 'Layout
    Table' to enclose
    > all
    > Images and text (and/or using 'Draw Layout Cell' as
    well), as opposed to
    > (1)
    > Using 'Layout Table' to set the page size, then (2)
    using 'Draw Layout
    > Cell' to
    > put the images and/or text in. What I am seeing now in a
    Browser (Safari)
    > is
    > matching up to what I am seeing in Dreamweaver. I don't
    think I fully
    > grasp the
    > differrence between 'Layout Table' and 'Draw Layout
    Cell'. I've been
    > reading in
    > the 'Help' and while it sheds some light it doesn't
    appear to be getting
    > through.
    >
    > Though the spacing of the images appears to be okay now,
    text is an issue.
    > I.e.,
    >
    > If I put:
    >
    > "The text will end here -------->" with the arrowhead
    at the rightmost
    > border
    > in Dreamweaver, when viewed in Safari it wraps to the
    second line even
    > though
    > within Dreamweaver I am not outside of the green
    frame....
    >
    > What is a recommended page size to start with, and set
    with which Tool?
    >
    > Finally, when I attempt to use Firefox to preview the
    page the following
    > error
    > is returned:
    >
    > File not found
    > Firefox can't find the file at /2 WD/NEW
    SITE/index.html.
    > * Check the file name for capitalization or other typing
    errors.
    > * Check to see if the file was moved, renamed or
    deleted.
    >
    > I purchased 'Dreamweaver 8 For Dummies' but apparently I
    transcend even
    > that!
    > ;-)
    >
    > The Code is attached, but please don't spend more than a
    quick moment;
    > this is
    > my problem and not yours!
    >
    > Thank you!
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1" />
    > <title>index</title>
    > <style type="text/css">
    > <!--
    > .style1 {font-family: "Gill Sans Light"}
    > .style2 {font-size: 36px}
    > body {
    > background-color: #666666;
    > }
    > -->
    > </style></head>
    >
    > <body>
    > <table width="1327" border="0" cellpadding="0"
    cellspacing="0">
    > <!--DWLayoutTable-->
    > <tr>
    > <td width="116" height="30"> </td>
    > <td width="136"> </td>
    > <td width="69"> </td>
    > <td width="264"> </td>
    > <td width="24"> </td>
    > <td width="107"> </td>
    > <td width="20"> </td>
    > <td width="234"> </td>
    > <td width="16"> </td>
    > <td width="338"> </td>
    > <td width="3"> </td>
    > </tr>
    > <tr>
    > <td height="41"> </td>
    > <td> </td>
    > <td> </td>
    > <td colspan="2" valign="top"><h1 align="center"
    class="style2"><span
    > class="style1">Fifth Avenue Digital
    </span></h1></td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    > <tr>
    > <td height="39"> </td>
    > <td> </td>
    > <td> </td>
    > <td></td>
    > <td></td>
    > <td></td>
    > <td></td>
    > <td></td>
    > <td></td>
    > <td></td>
    > <td></td>
    > </tr>
    > <tr>
    > <td height="47"> </td>
    > <td colspan="5" rowspan="4" valign="top"><img
    src="Images/main
    > image.jpg"
    > alt="main page cape cod" width="600" height="460"
    /></td>
    > <td> </td>
    > <td rowspan="2" valign="top"><img
    src="Images/9j.jpg" alt="router bit"
    > width="234" height="350" /></td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    > <tr>
    > <td height="303"> </td>
    > <td> </td>
    > <td> </td>
    > <td rowspan="2" valign="top"><img
    src="Images/06.jpg" alt="sand"
    > width="337" height="333" /></td>
    > <td> </td>
    > </tr>
    > <tr>
    > <td height="30"> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    >
    >
    >
    >
    >
    >
    >
    > <tr>
    > <td height="80"></td>
    > <td></td>
    > <td></td>
    > <td></td>
    > <td></td>
    > <td></td>
    > </tr>
    >
    >
    >
    > <tr>
    > <td height="30"> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    > <tr>
    > <td height="77"> </td>
    > <td> </td>
    > <td colspan="2" rowspan="2" valign="top"><img
    src="Images/ramp.jpg"
    > alt="boat ramp rockport" width="333" height="500"
    /></td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td colspan="3" valign="top"
    nowrap="nowrap"><h1 align="left">This is
    > a
    > test of inputting text that is going</h1>
    > <h1 align="left">(new paragraph) to end right here
    --------&gt;
    > </h1></td>
    > <td> </td>
    > </tr>
    > <tr>
    > <td height="424"> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    >
    >
    >
    > <tr>
    > <td height="179"> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > <td> </td>
    > </tr>
    > </table>
    > </body>
    > </html>
    >

  • XHTML and Dreamweaver Layouts

    Hi Guys,
    Another one of those newbie questions. Ive designed many
    sites in Dreamweaver, using the layout pane, with the Layout table
    and Draw Layout Cell tools to divide and arrange the page the way I
    want it. Im going to be looking into producing valid xhtml &
    CSS sites, as that seems to be the best way to go forwards (until
    something new comes out) and from the what I read, the Layout table
    and Draw Layout Cell is going to produce sites that aren't valid.
    I'm quite comfortable with understanding how to use
    Dreamweaver with a CSS stylesheet, using the properties pane on the
    right of the screen. How on earth do I split the page design up
    without using Draw Layout Cell/Layout table tool though? I'd
    basically like to start with a header, left bar, content area and
    then footer. When I've mastered this, the layout I want to create
    is alot more complex. Can this be done in dreamweaver using one of
    the drag and drop tools or am I going to have to get my hands dirty
    and learn code, which i'm despertaely trying to avoid at this
    point?
    Many Thanks to all that reply!
    Jalz

    Try this
    http://css.maxdesign.com.au/floatutorial/
    But you'll have to get your hands dirty.. but don't worry it
    really not
    that difficult. I recommend split view so you can see what
    happens while
    you work your way through tutorial 8
    HTH
    Kim
    Jalz skrev:
    > Hi Guys,
    >
    > Another one of those newbie questions. Ive designed many
    sites in Dreamweaver,
    > using the layout pane, with the Layout table and Draw
    Layout Cell tools to
    > divide and arrange the page the way I want it. Im going
    to be looking into
    > producing valid xhtml & CSS sites, as that seems to
    be the best way to go
    > forwards (until something new comes out) and from the
    what I read, the Layout
    > table and Draw Layout Cell is going to produce sites
    that aren't valid.
    >
    > I'm quite comfortable with understanding how to use
    Dreamweaver with a CSS
    > stylesheet, using the properties pane on the right of
    the screen. How on earth
    > do I split the page design up without using Draw Layout
    Cell/Layout table tool
    > though? I'd basically like to start with a header, left
    bar, content area and
    > then footer. When I've mastered this, the layout I want
    to create is alot more
    > complex. Can this be done in dreamweaver using one of
    the drag and drop tools
    > or am I going to have to get my hands dirty and learn
    code, which i'm
    > despertaely trying to avoid at this point?
    >
    > Many Thanks to all that reply!
    >
    > Jalz
    >

  • Issues with XFA to HTML5 Convertion in Livecycle ES4

    We are working on the feasibility check for rendering the dynamic XFA form within our application to enable end user to fill-in and save the form.  We used LiveCycle Designer ES4 for designing the forms. Everything works fine with the PC but when tried to load in iPad the form didn’t load at all.
    We tried LiveCycle ES4 to convert the file to HTML5 to render in iPad. But it doesn’t look neat as PDF.  Listed below the issues we are facing.
    1.       Data binding not working for few columns though it works perfectly in PDF version
    2.      Tables are not aligned properly based on the number of rows, the following table/controls getting overlapped on the table.
    3.      Submit button takes the page to WebAPI (used for Saving the entered form) url instead of saving the content. When invoked from the PDF it saves properly.
    Please provide any standards/guidelines for designing the document which will be converted to HTML5 correctly.
    Also, we would like to know the pricing of LiveCycle ES4 and is there any lightweight mode available which just does the XFA to HTML5 conversion. The LifeCycle ES4 comes with distributable license?
    Regards, Jawahar

    LiveCycle is divided into separate products such as LiveCycle Forms, LiveCycle Output, LiveCycle Rights Management and many more. You may choose the suitable forum from the product list here: Adobe LiveCycle
    Good luck!

  • 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?

  • Is there a way to Update and SaveAs, an XFA form using VBA or similar ?

    All:
    Need help to auto-fill and auto-save PDFs using VBA or some other means.
    I have created an XFA form using LiveCycle ES ( v8 ) with a few fields.
    What I need to do is repeat these steps below for 200+ PDF forms
    Open the blank PDF form
    Update 3 fields
    Save the PDF with a new name
    My Excel VBA code so far ( ** Copied from another post ) where dFile = "C:\temp.pdf" and dAccount = "Any Account"
    Sub rxOpenPDF_UpdateFields(dFile, dAccount )
        Dim pdfApp As Acrobat.AcroApp, pdfPDDoc As Acrobat.AcroPDDoc, jso As Object
        Dim str1$, bolOpen As Boolean, strFile$
        Set pdfApp = CreateObject("AcroExch.App")
        Set pdfPDDoc = CreateObject("AcroExch.PDDoc")
        bolOpen = pdfPDDoc.Open(dFile)
        Set jso = pdfPDDoc.GetJSObject
        str1 = jso.getfield("Account_Name").Value ' Will appreciate if there is a way to set a field value
        pdfApp.Exit
        Set pdfApp = Nothing
        Set pdfPDDoc = nothing
        Set jso = Nothing
    End Sub
    Excel VBA is shutting down ( cannot recover ) when it runs the pdfPDDoc.Open statement
    Any help will be very appreciated
    Aubrey
    I am on Windows XP,
    In VBA, I have created Tool References to [Adobe Acrobat 9.0 Type Library]
    Downloaded the Acrobat v9 SDK but am lost trying to locate any help for simple VBA.

    lrosenth,
    Would I be able to Update & SaveAs with a newer version of LiveCycle ( does Adobe still have a LiveCycle line ) ?
    I was looking at InDesign but am not sure if it has the functionality that I need ( i.e. create multiple forms from an Excel list)
    .. also am unsure of the learning curve.
    Aubrey

  • When will Adobe Reader for iOS support Livecycle XFA forms?

    Adobe Reader for iOS currently does not appear to support XFA forms created through Livecycle. Although it supports some field types, the HTTP submit and Email submit buttons don't work.
    Being able to email the completed form ready for someone else to submit would be a work around, however when attempting to 'share' a completed form and send it by email the form is blank when saved and opened in the desktop version of Adobe Reader on a PC.
    We are getting more and more requests from ipad users who wish to use our forms, and it seems that some other paid-for apps claim to support this. Seeing as Adobe Reader is the industry standard product for using PDFs could we have more support for pdf forms please?
    ...or at the very least, a product roadmap with some dates for when this might be available please?

    There are two basic varieties of LiveCycle XFA...Static XFA and Dynamic XFA, which are very different in terms of their future for potential support in Adobe Reader for iOS. Which variety of XFA are you using?
    Static XFA uses the PDF markup language for content and form fields, so users can view the documents in Adobe Reader for iOS, but we currently do not properly handle filling, saving, and submitting those forms. I have improving our handling of Static XFA on my roadmap, but cannot offer any specific date yet (sorry, policy plus actual uncertainty). I know that there are some other apps that partially support Static XFA, though I do not know how complete their support is. If you can even open the XFA document in Adobe Reader for iOS, it is likely Static XFA.
    Dynamic XFA is effectively a JavaScript application packaged inside a PDF wrapper, which generates layout and form fields via code and requires a significant engine to support this. Support for Dynamic XFA is unfortunately not currently on our roadmap for iOS due to the nature of the technology, and our concern that any implementation we try likely will not pass Apple's restriction against installing something that allows other "apps" to be downloaded and executed from within it. The LiveCycle team is exploring solutions for our enterprise customers wanting to use Dynamic XFA from mobile devices as part of their server offering, but I cannot offer any insight here. To my knowledge, there are no applications that handle Dynamic XFA other than Adobe Reader for the desktop platforms (Windows, Mac, Linux).
    Dennis

  • Adobe LiveCycle ES4 add new and update Access Database, Non-Null failure

    I am using adobe livecycle es4 and I am trying to add a new record and then update it to an Access database. However, when i press update the error tells me that i cannot have Null values and it displays a check box field name. How can i allow a null value for a check box? Because when my form is used, not all of the check boxes will be checked

    You can use the resolveNode function that can catch the null value of your check box component.
    Exemple:
    if (this.resolveNode("NameCheckBox").rawValue == null)
    //Do Something

  • Merge xdp and xml to xfa form variable

    Hi, I am new with Adobe Livecycle and xdp/xfa form management.
    In my process I have a xml containing string data, I have also a xdp file. My goal is to merge them and stock into a xfa form so that it can be showed to an user GUI.
    I know that RenderPDFForm service can merge xml and xdp into a pdf file. Is there a way to merge them into a xfa form file?
    Thank you.
    Damien.

    It looks like I am back to square one.
    DDX is part of the Life Cycle tool set.  As Far As I know, I am not working with Life Cycle here.
    cfpdfform
    Description
    Manipulates existing forms created in Adobe® Acrobat® and Adobe® LiveCycle® Designer
    I created my sample form with Adobe Acrobat 9 Pro Version 9.4.4.  Does that mean I have an Acrobat or a LiveCycle form?
    ColdFusion supports two types of interactive forms: forms created in
    Adobe Acrobat 6.0 or earlier, and forms created in Adobe LiveCycle. In
    Adobe Acrobat Professional and Standard 7.0, Adobe introduced Adobe®
    LiveCycle® Designer for creating PDF forms.
    And if I do have a LiveCycle form, what or how do I get a DDX version of it?

  • Is XFA forms an "Open" standard, and is FDF alive for foreseeable future ?

    further to my other (first) post "Adobe PDF XML Forms ? Reading user-entered data to and from the form using VB.NET?"
    ... I've been researching on the web, and getting the feeling that the new XFA forms architecture is not being supported by third party suppliers in the same way as the old FDF architecture was. see http://www.appligent.com/docs/tech/Acroforms%20WhitePaper.pdf and http://www.jcentricity.com/jCentricityWhitePaper.pdf. I can't find a single reference on the web to any third party developer/toolkit products that support interaction (reading/writing data/merging/splitting etc.) with PDF XFA forms, while there are many vendors offering tools for working with FDF.
    Why is this - is there some licensing issue preventing them from doing so ? Is the new PDF XFA standard "open" enough to allow developers (including maybe end user developers like myself if I have the time) to build solutions to manipulate XFA forms as an alternative to the LiveCycle product suites. (For example, could I build code myself that would pre-populate XFA forms programatically in the same way the LiveCycle Server does - without the need for any licenses... is the standard open & documented to make this possible - are there any toolkits or products from Adobe or elsewhere to help me do so) I'd like to understand this before recommending that we commit to a solution on the XFA platform.
    I'd also like to understand the status of FDF technology in the Adobe roadmap (given that Adobe recommend XFA for new solutions) before considering that route either.
    Any input on any of these points appreciated...
    best regards,
    Aidan

    XFA is an open/published standard. You can download the specs for every version since 1.0 to the current 2.8 and implement them. there are various 3rd parties that have done so - but less than have implemented Acrobat forms. Why? You'd have to ask the 3rd parties...
    AcroForms and FDF are both part of ISO 32000 - the newly minted completely open, non-Adobe-owned, version of PDF. So they aren't going anywhere.

  • ONE-to-MANY relationship between tables and forms in APEX

    I recently started using APEX and I have run into an issue.
    I have a ONE-TO-MANY relationship between two tables, A1 and A2, respectively.
    A1:
    A1_ID
    Item
    A2:
    A2_ID
    SubItem
    A1_ID
    I have 2 forms (lets call it F1 and F2) that I use to capture data for A1 and A2.
    On F2, I have the following fields that are setup to capture data:
         A2.A1_ID
    **A1.Item (this is a drop down that is populated using a SELECT statement where the select uses A1.Item field)
         A2.SubItem (user would enter SubItem)
    Note: A2.A2_ID is populated using a SEQ
    Everytime I pick **A1.Item on F2, is there a way to link to A1 table and display A1.A1_ID for every **A1.Item selected on F2?
    If so, I want to store the value captured in F2 for the A1_ID field into A2 table to maintain my 1-to-MANY relationship.
    If this will work, how do I go about implementing this solution?
    Can someone help me?

    I think it sounds like you are asking for a Master-Detail form. Try that and see what you get.
    chris.

Maybe you are looking for

  • Moving iPhoto library to external hard disk

    I am attempting to move my iPhoto library to my new external hard disk. Moving the pictures is not the problem, it is telling iPhoto where the new library is located. I dont have leopard yet so I dont have iPhoto '08. I looked up how to move my libra

  • Clearing out unused clips

    I have created a lengthy sequence from a large number of clips. However, it would be very useful in the Browser to be able to identify only those clips which are being used in the sequence and delete all the others. Can this be done?

  • BBM error: Uncaught exception:java.lang.Null pointer exception ??

    Help. Anybody know what this means and what I need to do to fix it? It just started a few days ago and BBM will not open up.  I have a Torch 9800 running the 6.0 Bundle 2647; V6.0.0.600, Platform 6.6.0.223

  • Access dial-up help

    Sorry, stupid question. I need to start a dial-up connection for telnet from my java application and i haven't a clue where to start. i use telnet extensively, but have never had to start a dial-up. can someone point me in the right direction.

  • Oracle9i Developer Suite Release 2 (9.0.2) for Windows (NT/2000/XP)

    You say ("Directions"): 1.Download the software (listed above) into a temporary directory. 2.Run file10.bat. 3.Run 9.0.2.ids_win32.exe. 4.Run setup.exe (located in the \disk1 directory). Steps 1 and 2 are OK. Unfortunately, "9.0.2.ids_win32.exe" is j