Merging randomly-named XML data file on client-side with pdf designed in Livecycle 7.0 (and addition

Okay, as a heads up I work for a financial institution and we are converting our legacy "jetforms" to pdf format. I have in my staff for the project, 2 code developers and myself- a form designer. We have currently spent 2 months in trial and error attempting to resolve this problem, please let us know anything you can have. All client-side (internal) machines are running Windows XP and Adobe Reader 7.0.7
The software we use as a financial institution allows our users to export a customer's data file onto their machine which is then renamed to include the member's account number and first and last name for our staff to determine which data file they need more accurately. In legacy jetforms, we have developed a program that pushes the data from the customers file that they select, into the jetform that they want to open and the matching fields in the data file fill in the fields of the jetform. Clean and simple.
Now, i have hit nothing but frustration when attempting to perform the same process with pdfs using a form designed in livecycle designer 7. First, i see no obvious command for opening a pdf and importing a data file using a command line, like pdfmerge or something of the sort in which an xml data file can be specified and a pdf can be specified. I saw something like it using an fdf format and attempted to do this but apparently reader cannot import the data into the pdf that was designed adobe livecycle 7. All i have been seeing is database connections and using javascript inside the form to populate fields based on these database connections, etc. etc. or doing a manual file>import data>etc. which we don't want to have our staff do. We do not have reader extensions enabled, simply because i cannot get an adobe representative to call me and discuss pricing nor see any estimated pricing chart around. I don't know if reader extensions are necessary for this or not but i'm becoming very very frustrated with it.
We don't want a complex server-side data connection binding with dynamic input. No, we just want it where our developers can say "if this data file is selected, and this pdf form is selected run this command" which would be a simple pdfmerge type solution. Is this possible or do i need to stay with jetforms until our software the billion dollar financial institution uses does form building inside its own application? I don't want to fight about who is better, what version to use, etc. I just want the straight up honest truth. If you need to know the pricing that the reader extensions would have to go by, assume there will be 500 client computers that will need to use it.

From your post it sounds like you are Central Pro (a product for which I am by no means an expert), but you say you want to upgrade to a newer product from your "legacy" one. Is there a reason for this? Have your requirements change so that it no longer fits them? Central is still in the current Adobe roster and as far as I know there is no plans to get rid of it any time soon, so if it does everything you want I don't see why you would want to change.
There is no product in the LiveCycle suite that merges xml data into a form from the command line. LiveCycle (with the exception of Designer) is a suite of server products, so the closest you would come is LiveCycle Forms (merge the xml and create a fillable PDF) or LiveCycle Print (merge the xml and print the form).
Hope this helps somewhat.
Chris
Adobe Enterprise Developer Support

Similar Messages

  • Filling PDF Form with XML data file

    Hello everybody.
    I need help.
    I created a form with LiveCycle Designer. I filled it and generated a XML data files. Now, I would like to fill the same blank PDF form with this XML data file.
    I know that I can do it with Adobe 8.0 but I must do it in an C# / .NET application that I have to create.
    (Forms I'm creating are not for me, I create the forms. Client uses them form but he don't have Adobe Acrobat 8.0, so he can't realise the automatic PDF filling with Adobe Acrobat 8.0)
    So I am looking for help with ".NET" "COM" or other library to help me to do it. If someone has other idea just give it.
    Thanks for your reply
    Jean Pierre (sorry for my bad English)

    Hello Mike
    Thank's for your reply. I used XPAAJ and it works very well but my company his develloping software with C# langage.
    I tried to convert XPPAJ to C#, I did it with the Java Langage Conversion Assistant but "Adobe Library" included in jar files cannot be translated to C#/.NET library. So, I can't use it.
    I found some C#/.NET API on the NET but they are very expensive and my company don't want to pay. They want me to create my own solution with library given by Adobe when you buy Adobe 8. So I am looking for this library.
    Is there an Adobe LiveCycle Designer SDK to help me.
    Thank you in advance for your reply
    Jean Pierre (student developing with LiveCycle Designer)

  • How to insert a new line character inside CDATA tag in the source xml data file?

    values for form fields in the xml data file is contained inside CDATA tags which is an Unparsed Format.
    Eg: [CDATA[IBM-01 ~ DSHFSJDSJ ~ FGFGFJ, ~ VA 665665]] delimited by "~" char
    Actual o/p:-
    IBM-01 ~ DSHFSJDSJ ~ FGFGFJ, ~ VA 665665
    Expected o/p is like :-
    IBM-01
    DSHFSJDSJ
    FGFGFJ,
    VA 665665
    live cycle product does not interpret ~ as a newline character. Please suggest which character should be used instead inside CDATA section or if there is any other way to fix this?

    I do not have any problem while using IE's XML parser
    for XML+XSLT merging.That is because IE's parser does not implement XML correctly.
    But when I use JAXP's Transformer object, it does not
    preserve the new lines inside attribute values and
    converts those into white spaces.That is exactly what the XML specifications say should happen.
    >
    ----If you have text that contains newlines, you
    should put it in an element, not in
    ----an attribute.
    That would be my last solution. But I'd really hate
    to change my logic just 'coz JAXP is not capable of
    handling new lines inside attribute values. I may be
    wrong... but If IE can keep those then there has to
    be a way to do the same from server side merging....Sure. Write your own parser with the same bug in it. But you don't have any right to demand that other people supply you with parsers that work incorrectly.

  • How to Edit a XML data file from AS3 class...

      Hi...
                 I need to edit an XML data file I have at the exit of application.... I have a demo code which is not working....
    This is the code :
    public function UpdateData():void
                   trace("Closing....");
                   var FileData:XML=<Hello>Hai</Hello>
                   var urlLdr:URLLoader = new URLLoader();
                   var urlRqst:URLRequest = new URLRequest ("AppData.xml");
                   urlRqst.data=FileData;
                    urlRqst.contentType = "text/xml";
                   urlRqst.method = URLRequestMethod.POST;
                   urlLdr.load(urlRqst);
    This AppData file already exist and has some data in it.
        Plus :
       How to find the application is exiting.

    use:  fscommand('Quit');
    to exit your app.
    and this is how you would use the urlloader class to save data:
    public function UpdateData():void
             trace("Closing....");
              var FileData:XML=<Hello>Hai</Hello>
    var urlVar:URLVariables=new URLVariables();
    urlVar.fileData=FileData;
                var urlLdr:URLLoader = new URLLoader();
               var urlRqst:URLRequest = new URLRequest ("this must be an executable to parse and write data");
               urlRqst.data=urlVar;
               urlRqst.contentType = "text/xml";
                   urlRqst.method = URLRequestMethod.POST;
                  urlLdr.load(urlRqst);
    but i don't think you can use an executable on a fl4 device so you will need to use a different class.  i don' know how you're storing an xml file on a fl4 device but you should be able to use the sharedobject to read and store xml.

  • Forms pulling Multiple Records from an XML Schema and XML data files - Adobe LiveCycle Designer

    I built a form in Adobe LiveCycle with an xml schema and data file.  The problem is with how the form renders the xml data file.
    I have a statement element that consists of about 6 fields (statementID, statementName, statementAddress, statementCountry, statementZip, statementDate, etc) of data in the schema that allows for multiple iterations - so one xml data file can contain multiple statements. These fields allow for null values.
    But here's the problem:  When any of the statements - say statement 2 of 6 - has a null value in one of the fields, if the xml data file doesn't have a placeholder
    (example of placeholder:  <statementName type="String"/>   )in the xml for that field, my form pulls the field value from the NEXT statement.
    This corrupts all the rest of the statement records, as this field is shifted up for all the rest.
    I know that in the past I haven't needed a placeholder when a field was null. But I'm wondering if when the data allows for multiple records the xml data file needs to generate the placeholder.  And where is the problem? In the Schema? The xml data file? My form?  And the 64-thousand-dollar question:  How to fix it?

    If your <statement> element is the one that repeats, it should be bound to a subform with the binding string of something like $.statement[*]. Then in that subform should be your fields and they should have bindings of $.statementID, $.statementName, $.statementAddress, etc.
    Kyle

  • Use of PL/SQL to populate table columns from XML data file

    I'm trying to find the easiest way to transfer data from a flat file that is in XML format into a traditional Oracle table. Not retaining the XML but actually map an XML element to a column so standard SQL, Forms, Reports, etc can access like it was created using a Form.
    Example: Table A has column names Tom, Dick and Harry and the XML file has elements Tom, Dick and Harry and I just want a function that maps and inserts/loads the data into Table As individual columns.
    The process needs to be easily initiated by an end user. The user gets the XML data file via an email attachment and needs to do something like a Concurrent Request to pull in the file and load it. Using PL/SQL would be great.
    I appreciate any help that can be provided.

    Hi,
    HELP!!!!!
    We are having the same problem and we are using oracle 10ir2.
    We create an object type (sql type globally not in a package):
    CREATE OR REPLACE TYPE G_EX AS OBJECT
    ( EX_ID NUMBER ,
    EX_CON VARCHAR2 ( 100 ) ,
    EX_L VARCHAR2 ( 30 ) ,
    EX_T VARCHAR2 ( 4000 ) );
    CREATE OR REPLACE TYPE G_EX LIST AS TABLE OF  GEX AS ;
    then we insert data through a bulk collect within the package with the table declared of this array of object types:
    v_table G_EX _LIST:= NULL;
    SELECT G_EX (ex_id
    ,ex_con
    ,ex_l
    ,ex_t )
    BULK COLLECT INTO v_table
    FROM exs_lookup;
    I am using the syntax (below) but it gives PL/SQL: ORA-00902: invalid datatype
    sometimes not always:
    SELECT G_EX ( ex_id
    ,ex_con
    ,ex_l
    ,ex_t )
    BULK INTO v_data_record
    FROM TABLE (v_table)
    WHERE ex_id = p_key;
    where p_key - is a number type
    and v_data_record is a G_EX object type.
    I was wondering if anyone else encountered a similar problem, and knows what we may have done wrong. Since we dont understand why this piece of code is throwing this ora-00902 errors occasionally not always.
    Also, if we restart the database up once this errors occurs it appears to stop throwing this ora_00902 error for a lenght of time. Then it comes up with the ora-00902 error again (why?)
    thanks

  • Variable not being included in XML data file output

    This seems like it should be obvious, but I've struggled with this for a couple of days.
    As a programming principle, I like to make the form as "smart" as possible and the resulting Word templates, or XML documents as simple as possible. I need to be able to set a "flag" that would be in the XML data file if certain conditions are met, e.g.,
    if (field1.rawValue == "0"){variable1 == "1"};
    if (field2.rawValue == "0") {variable1 == "1"}; etc.
    The problem that I'm having is that I can't seem to get variable1 to be included in the XML data file that the form creates.
    Help! This seems like it should be so simple but I'm baffled.
    Bill

    The variable you're setting does not fall within the scope of the xml output (it's scope is only within the execution of the form).
    Try creating a variable (Using File > Form Properties >Variable) and assigning your value to it (variableName.value = 1).
    One note of warning, you'll want to trigger the validation event every time the form is opened or your value will return to the default value when users re-open the form.

  • Load data from File on Client side (via Sqlplus)

    Server OS: RedHat, Oracle 10g rel 2.
    I am trying to load data from OS .txt files to clob field.
    I am able to do this successfully using:
    Oracle DIRECTORY
    BFILE
    DBMS_LOB.loadclobfromfile packageIssue is: this only works if my files and DIR are on database server.
    Is it not possible "load clob from file" from client side, files being on client and exec command via SQLPlus. Is there any other option to load data from client side.
    Thanks for any help.

    Options:
    1) Search for OraDAV
    2) Learn about Application Express.

  • Problem generating XML data file through XSD

    Hello there,
    I'm trying to generate an XML data file as per the below steps:
    Making a normal schema in query transform.
    Mapping desired source column into query schema.
    Right click on query transform and generating XML schema (XSD) in my local system.
    In object library XML file format adding the XSD with schema as a root element.
    Creating target instance from object library XML file.
    In target file specifying file creation path in my local system. 
    After performing above steps and executing the job getting below error.
    Any help on this will be much appreciated.
    Regards,
    Jagari

    I found some code looking at a similar issue - I don't know how to recover other data (in I guess) the rest of the HTML in the code. I need to find a better reference with details and examples.
    I fixed it by changing:
        ssDebug.trace(moreStuff.xliff.file.body.trans-unit); // - error
    to:
       ssDebug.trace(moreStuff.file.body['trans-unit']); //- no error
    with expected output (no error):
    <trans-unit id="001" resname="IDS_ZXP7_JAM_01">
      <source>If, while you are printing, your printer stops, ...</source>
    </trans-unit>
    <trans-unit id="002" resname="IDS_ZXP7_JAM_02">
      <source>look at the Operator Control Panel (OCP) for the fault description.</source>
    </trans-unit>
    <trans-unit id="003" resname="IDS_ZXP7_JAM_03">
      <source>If the fault is a card jam, open and close the Print Cover (or Options Cover).</source>
    </trans-unit>
    <trans-unit id="004" resname="IDS_ZXP7_JAM_04">
      <source>The printer will initialize and move the jammed card to the Reject Bin.</source>
    </trans-unit>
    <trans-unit id="005" resname="IDS_ZXP7_JAM_TITLE">
      <source>Card Jam</source>
    </trans-unit>

  • How to select path from an XML data file?

    I have an XML data file somewhat like the one below with up to five levels deep (variable). I want the user to be able to pick a path by navigating a tree (i.e. Canada/Alberta/Calgary) and have that path put into a data field. If they only navigate part way into the path (i.e. Mexico/Sonora) then that would go in the data field. I have some control of the structure of the XML as I am creating it from a CSV file.
    Any examples or good advice that you can provide is greatly appreciated. I'm OK manipulating XML but am quite a newbie at PDF forms & Javascript.
    <location>
        <country name="Canada">
            <prov-state name="British Columbia">
                <city name="Victoria" />
                <city name="Nanaimo" />
            </prov-state>
            <prov-state name="Alberta">
                <city name="Calgary" />
                <city name="Lethbridge" />
            </prov-state>
        </country>
        <country name="Mexico">
            <prov-state name="Sonora">
                <city name="Guaymas" />
            </prov-state>
        </country>
    </location>

    Not sure I follow ....are you going to give the user a visual representation of the XML and let them choose then you
    will put the path into a field?
    Paul

  • Want attach the XML data file with layout template in Oracle 10g

    Hi All,
    I need a help from you genius guys.
    I am genrating reports in BI with xml the procedure which I am following is as below.
    1. generating XML from the RDF
    2. creating a template in .rtf format
    3.after that loading the xml to the template then getting the required report.
    This all is doing through the given buttons
    But now my requirement is to create the gui from user can select the report and get the desire output file so how we would be able to attach the XML data file with layout template in Oracle 10g.
    If you require more detail please let me knnow.
    Thanks,
    Harry

    I am not using Oracle apps.
    I am using oracle 10g reports and I get something in it like one patch I downloded and one java code is having which creates the batch file ...still I am working on it ..
    If you will get some please share so that it will be helpful.
    Thanks,
    Harry

  • About the exporting and importing xml data file in the pdf form

    Hi all,
    I need help for importing xml data file in the pdf form. When I write some thing in the text field with fill color and typeface (font) and exported xml data using email button. When I imported that xml file in the same pdf file that is used for exporting the xml data then all the data are shown in the control but not color and font typeface. Anyone has suggestion for solving this problem. Please help me for solving this problem.
    Thank you
    Saroj Neupane

    Can you post a sample form and data to [email protected] and I will have a look.

  • Include xml data file in Flex Library Project

    Hi all,
    i've got a Flex Library Project in which I include some
    assets, as css files and some xml data files too. They are located
    in my project root, under /assets/css and /assets/data. Once
    compiled, if I use my library in other projects, the css styles
    from the css under /assets/css apply, but the xml data files are
    not found.Both are checked in the Flex Library Build Path window of
    the project's properties.
    There's any reason why the xml files are not included? Or
    should I reference them in some other way... In my library project
    I'm doing: ' theHTTPService.url = "assets/data/data_file.xml" '
    thanks in advance,
    Marc

    Hi Greg, thanks for answering.
    Yes, that's what I'd like to know also... I mark it to be
    added to the library, but how can I be sure if it's in the final
    .swc? Are they browseable somehow?
    thanks,
    Marc

  • XML Data File With Namespace

    Hi,
    I'm trying to create a template with the below xml data file. However, I'm struggling to get any of the field to show up in the report output. Does any have the same issue?
    <ns0:getCommunityPhaseMasterResponseElement xsi:type="ns0:CVO_CommunityPhaseMaster" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://oracle.e1.bssv.JP57M011/types/">
    <ns0:e1MessageList/>
    <ns0:routingCode xsi:nil="1"/>
    <ns0:integrationErrors xsi:type="ns0:CVO_IntegrationErrorsList">
    <ns0:transmissionAck xsi:type="ns0:CVO_TransmissionAck">
    <ns0:transmissionStatus>0</ns0:transmissionStatus>
    <ns0:transmissionId xsi:nil="1"/>
    </ns0:transmissionAck>
    <ns0:transmissionHeader xsi:type="ns0:CVO_TransmissionHeader">
    <ns0:routingCode xsi:nil="1"/>
    <ns0:originatingSystem xsi:nil="1"/>
    <ns0:transmissionUser xsi:nil="1"/>
    <ns0:transmissionDate xsi:nil="1"/>
    </ns0:transmissionHeader>
    </ns0:integrationErrors>
    <ns0:communityPhaseResult xsi:type="ns0:CVO_CommunityPhaseResult">
    <ns0:warrantyBusinessUnit> 11019999</ns0:warrantyBusinessUnit>
    <ns0:statusCode1>1</ns0:statusCode1>
    <ns0:averageOtherRevenue05>0.00</ns0:averageOtherRevenue05>
    <ns0:amountUserDefinedAmount06>0.00</ns0:amountUserDefinedAmount06>
    <ns0:dateCreated>2003-01-08T00:00:00.000-08:00</ns0:dateCreated>
    <ns0:planMasterProductType_Desc>Single Family Detached </ns0:planMasterProductType_Desc>
    <ns0:numberOfStartedLots>0</ns0:numberOfStartedLots>
    <ns0:amountUserDefinedAmount03>0.00</ns0:amountUserDefinedAmount03>
    <ns0:averageCostPercent5>0.00</ns0:averageCostPercent5>
    <ns0:addressNumberCommunity12>0</ns0:addressNumberCommunity12>
    <ns0:averageOtherRevenue04>10.00</ns0:averageOtherRevenue04>
    <ns0:addressNumberSalesOffice>0</ns0:addressNumberSalesOffice>
    <ns0:averageCostPercent3>0.00</ns0:averageCostPercent3>
    <ns0:addressNumberUserReserved02>0</ns0:addressNumberUserReserved02>
    <ns0:amountUserDefinedAmount10>0.0000</ns0:amountUserDefinedAmount10>
    <ns0:addressNumberCommunity07>1000571</ns0:addressNumberCommunity07>
    <ns0:statusCode2> </ns0:statusCode2>
    <ns0:timeCreated>142446</ns0:timeCreated>
    <ns0:statusCode3> </ns0:statusCode3>
    <ns0:addressNumberCommunity10>120006</ns0:addressNumberCommunity10>
    <ns0:homeBuilderRuleTypeConstruction_Desc>Detailed Construction. </ns0:homeBuilderRuleTypeConstruction_Desc>
    <ns0:planMasterProductType>SFD</ns0:planMasterProductType>
    <ns0:addressNumberCommunity05>1000643</ns0:addressNumberCommunity05>
    <ns0:numberOfSoldLots>0</ns0:numberOfSoldLots>
    <ns0:workStationId>T60-JVL </ns0:workStationId>
    <ns0:addressNumberCommunity02>120005</ns0:addressNumberCommunity02>
    <ns0:addressNumberUserReserved03>0</ns0:addressNumberUserReserved03>
    <ns0:addressNumberCommunity14>0</ns0:addressNumberCommunity14>
    <ns0:statusCode4> </ns0:statusCode4>
    <ns0:homeBuilderRuleTypeSales>100</ns0:homeBuilderRuleTypeSales>
    <ns0:addressNumberCommunity06>1000580</ns0:addressNumberCommunity06>
    <ns0:numberOfPhases>0</ns0:numberOfPhases>
    <ns0:addressNumberCommunity17>0</ns0:addressNumberCommunity17>
    <ns0:originalWorkStationId>TP23-GLENN</ns0:originalWorkStationId>
    <ns0:userDate7 xsi:nil="1"/>
    <ns0:addressNumberCommunity13>0</ns0:addressNumberCommunity13>
    <ns0:averageOtherCost04>5000.00</ns0:averageOtherCost04>
    <ns0:addressNumberUserReserved05>0</ns0:addressNumberUserReserved05>
    <ns0:amountUserDefinedAmount02>0.00</ns0:amountUserDefinedAmount02>
    <ns0:averageOtherCost03>10000.00</ns0:averageOtherCost03>
    <ns0:addressNumberConstructionOffice>0</ns0:addressNumberConstructionOffice>
    <ns0:amountUserDefinedAmount08>0.00</ns0:amountUserDefinedAmount08>
    <ns0:createdByUser>GLENN </ns0:createdByUser>
    <ns0:community> 11010000</ns0:community>
    <ns0:planMasterProductGroup> </ns0:planMasterProductGroup>
    <ns0:amountUserDefinedAmount09>0.00</ns0:amountUserDefinedAmount09>
    <ns0:userDate6 xsi:nil="1"/>
    <ns0:addressNumberCommunity16>0</ns0:addressNumberCommunity16>
    <ns0:addressNumberCommunity04>120002</ns0:addressNumberCommunity04>
    <ns0:addressNumberCommunity15>0</ns0:addressNumberCommunity15>
    <ns0:homeBuilderArea>110</ns0:homeBuilderArea>
    <ns0:numberOfLots>52</ns0:numberOfLots>
    <ns0:constructionSequence>048</ns0:constructionSequence>
    <ns0:incomeStatementBusinessUnit> 110110</ns0:incomeStatementBusinessUnit>
    <ns0:statusCode5> </ns0:statusCode5>
    <ns0:addressNumberCommunity18>0</ns0:addressNumberCommunity18>
    <ns0:amountFuture1>0</ns0:amountFuture1>
    <ns0:amountUserDefinedAmount07>0.00</ns0:amountUserDefinedAmount07>
    <ns0:addressNumberUserReserved01>0</ns0:addressNumberUserReserved01>
    <ns0:amountFuture2>0</ns0:amountFuture2>
    <ns0:addressNumberCommunity11>0</ns0:addressNumberCommunity11>
    <ns0:amountFuture3>0</ns0:amountFuture3>
    <ns0:averageCostPercent9>0.00</ns0:averageCostPercent9>
    <ns0:userDate2 xsi:nil="1"/>
    <ns0:description001>Treybrooke Village </ns0:description001>
    <ns0:amountFuture5>0</ns0:amountFuture5>
    <ns0:homeBuilderArea_Desc>Northwood Washington Division</ns0:homeBuilderArea_Desc>
    <ns0:dateUpdated>2008-10-27T00:00:00.000-07:00</ns0:dateUpdated>
    <ns0:averageOtherCost01>30000.00</ns0:averageOtherCost01>
    <ns0:addressNumberCommunity>1000141</ns0:addressNumberCommunity>
    <ns0:userDate8 xsi:nil="1"/>
    <ns0:numberOfClosedLots>0</ns0:numberOfClosedLots>
    <ns0:userDate9 xsi:nil="1"/>
    <ns0:addressNumberCommunity03>120004</ns0:addressNumberCommunity03>
    <ns0:averageCostPercent8>0.00</ns0:averageCostPercent8>
    <ns0:phase>000</ns0:phase>
    <ns0:averageOtherCost02>15000.00</ns0:averageOtherCost02>
    <ns0:programId>EP44H101 </ns0:programId>
    <ns0:addressNumberCommunity20>0</ns0:addressNumberCommunity20>
    <ns0:updatedByUser>JOE </ns0:updatedByUser>
    <ns0:homeBuilderRuleTypeSales_Desc>JDE Builder Standard </ns0:homeBuilderRuleTypeSales_Desc>
    <ns0:numberOfFinishedLots>0</ns0:numberOfFinishedLots>
    <ns0:averageCostPercent1>10.00</ns0:averageCostPercent1>
    <ns0:amountUserDefinedAmount01>0.00</ns0:amountUserDefinedAmount01>
    <ns0:addressNumberCommunity19>0</ns0:addressNumberCommunity19>
    <ns0:averageCostPercent7>0.00</ns0:averageCostPercent7>
    <ns0:amountUserDefinedAmount05>0.00</ns0:amountUserDefinedAmount05>
    <ns0:schedulingEnabled>0</ns0:schedulingEnabled>
    <ns0:userDate1>2004-02-16T00:00:00.000-08:00</ns0:userDate1>
    <ns0:averageCostPercent6>0.00</ns0:averageCostPercent6>
    <ns0:addressNumberCommunity01>1000686</ns0:addressNumberCommunity01>
    <ns0:homeBuilderRuleTypeConstruction>400</ns0:homeBuilderRuleTypeConstruction>
    <ns0:addressNumberUserReserved04>0</ns0:addressNumberUserReserved04>
    <ns0:addressNumberCommunity08>1000678</ns0:addressNumberCommunity08>
    <ns0:addressNumberCommunity09>120003</ns0:addressNumberCommunity09>
    <ns0:averageOtherCost05>0.00</ns0:averageOtherCost05>
    <ns0:closingWorksheetTemplate>TMP - 110 </ns0:closingWorksheetTemplate>
    <ns0:averageOtherRevenue03>100.00</ns0:averageOtherRevenue03>
    <ns0:planMasterProductGroup_Desc xsi:nil="1"/>
    <ns0:timeLastUpdated>193819</ns0:timeLastUpdated>
    <ns0:userDate10 xsi:nil="1"/>
    <ns0:userDate3 xsi:nil="1"/>
    <ns0:amountFuture4>0</ns0:amountFuture4>
    <ns0:averageOtherRevenue01>10000.00</ns0:averageOtherRevenue01>
    <ns0:originalProgramId>EP44H101 </ns0:originalProgramId>
    <ns0:phaseEnablingFlag>0</ns0:phaseEnablingFlag>
    <ns0:userDate4 xsi:nil="1"/>
    <ns0:averageOtherRevenue02>1000.00</ns0:averageOtherRevenue02>
    <ns0:userDate5 xsi:nil="1"/>
    <ns0:averageCostPercent10>0.00</ns0:averageCostPercent10>
    <ns0:amountUserDefinedAmount04>0.00</ns0:amountUserDefinedAmount04>
    <ns0:averageCostPercent4>0.00</ns0:averageCostPercent4>
    <ns0:averageCostPercent2>5.00</ns0:averageCostPercent2>
    </ns0:communityPhaseResult>
    </ns0:getCommunityPhaseMasterResponseElement>

    Yes, but probably for a different reason: limit of 63 columns for a table.
    Can you simply the XML source, make it look like the millions of examples in the documentation in terms of tags/structure?

  • Date time field will not bind over into XML data file

    am using the Current Date field in a form that is supposed to give me the current date & time. In the Object, Value, I am using a "calculated - Read Only" , with Run-time property of Date and Time. WHen I view this as a PDF, the current datae & time display on the form as well as when I view the body pages, the {current date/time} is displayed in the actual field of the form. My only problem is I want to bind this so I can export the data to an XML data file, to import to an Access Database. WHen I use these settings, I do not have a "binding" tab to use. WHen I change vaule to "calculation script), it then pops up the binding tab and let's me export the field to the XML data file, but the data in that field is not comming over (the date & time). The field comes into the database inport, but is blank. What am I doing wrong..?? Thanks in advance for any suggestions...

    Well, I'm assuming that when you change it to a calculation script you see the date in the PDF and therefore have the script to set the value written properly. So, if you change the binding from None to Normal or an explicit binding the date will be exported in the data. If all of that is correct, then the most likely problem is the data format you are exporting is not a format that your database will accept.
    Chris
    Adobe Enterprise Developer Support

Maybe you are looking for

  • Iphone 5c incoming calls on bluetooth car speakers not by default

    OK i have a vw jetta 2012, used to have incoming calls answered on bluetooth by default. Nowdays, since I have iPhone 5c, incoming calls, sound on speakers, but as soon as I answered, sound goes back to phone, then I need to change to vw phone by han

  • Messages won't activate after 10.9.3 Update

    Hi, I updated OSX on my late-2013 Macbook Pro Retina 15" last week. Since then I can not log into Messages. I get an error message - "Could not sign in to iMessage. An error occurred during activation. Try again.". I've tried many times. I've checked

  • Symbols do not flow into InDesign from standard text file

    Within our application, we have the option to type in symbols within a text editor. Symbols include the copyright, registered, and trademark symbols. We then take the text that is typed in and merge the text to a standard text file, then place that f

  • Creator and Factory

    Hello! I am not sure if i have understood the Grasp creator pattern right. I made a C++ program in school before. Some of the classes were supposed to have a method called create that created an object of its own class and returned it. Is it that met

  • Can't open .bin file (trying to install windows media player)

    I'm trying to install windows media player on my brand new macbook pro. I downloaded the .bin file and have installed Stuffit Expander. When i try to open the .bin file, stuffit opens to the progress window and tells me that its preparing but nothing