Dynamically Built Forms.

Greetings,
I've got two tables (questions and answers). With these two tables, I'm trying to construct a custom form (survey) that can have a random number of questions and answers. Questions can have multiple answers and may be either fill in the blank or multiple choice. Based on the question type,
(fill in the blank for example, I want to display the question and a textarea to allow the user to type in input and I'll process that and put it in a response field inside a useranswers table along with question ID.)
(multiple choice questions I want to be able to display the question and then present a series of checkboxes or radiobuttons with the relevant responses for that question from my answer database). Chosen response would once again be saved in the response field in a usersanswers table along with Question ID.
As this can be dynamic (ie a survey could have between 5 and 10 questions and a question 2-7 possible answers), it is possible to generate this with a sql query that would build the HTMLDB form for the user, or will it have to be generated using pl/sql and the htmldb_item API? If it can be generated using SQL and not PL/SQL, could someone provide me some examples of relevant code??
Currently tables are as follows:
Questions TABLE
QuestionID number
Question varchar2(255);
Answers TABLE
AnswerID number
Questionid number; (links to a question in above table)
Answer varchar2(255);
Value number (this is what would be saved for the response in the useranswers table)
UserAnswers TABLE
QuestionID
UserResponse varchar2(255);
Thanks in Advance for any help.
Clifford Moon
UTPA Webmaster.

Hi Pete,
I have done a questionniare that had a similar requirement - I needed to display a N/A field, then one of either a number, text, date or selectlist field.
I tried a good number of different methods to get everything to work properly. In the end, I created a normal tabular form (all of the questions are individual records on a table and each record has all of the data types as different fields so creating the tabular form was easy) and then used javascript to pick up the type of data required and hide all the other fields in the row. I also had to fix the widths of the column headings.
Unfortunately, my app would be too complicated to completely reproduce here. But the important bit was the javascript functionality. Here's mine:
<script type="text/javascript">
function hide(whatid)
var p;
p = whatid.parentNode;
while (p.nodeName != 'TD')
p = p.parentNode;
if (p.tagName == 'TD')
p.style.display = 'none';
function hidefields(items)
var field_TD_NA_A;
var item_TD_NA_A;
var field_TD_TYPE;
var item_TD_TYPE;
var field_TD_NUMBER;
var item_TD_NUMBER;
var field_TD_DATE;
var item_TD_DATE;
var field_TD_YN;
var item_TD_YN;
var field_TD_TEXT;
var item_TD_TEXT;
var field_TD_NA;
var item_TD_NA;
var i;
field_TD_NA_A = document.forms[0].f02;
field_TD_TYPE = document.forms[0].f03;
field_TD_NUMBER = document.forms[0].f04;
field_TD_DATE = document.forms[0].f05;
field_TD_YN = document.forms[0].f06;
field_TD_TEXT = document.forms[0].f07;
field_TD_NA = document.forms[0].f08;
if (items == 1)
item_TD_NA_A = document.forms[0].f02;
item_TD_TYPE = document.forms[0].f03;
item_TD_NUMBER = document.forms[0].f04;
item_TD_DATE = document.forms[0].f05;
item_TD_YN = document.forms[0].f06;
item_TD_TEXT = document.forms[0].f07;
item_TD_NA = document.forms[0].f08;
hideItems(item_TD_NA_A, item_TD_TYPE, item_TD_NUMBER, item_TD_DATE, item_TD_YN, item_TD_TEXT, item_TD_NA);
else
for (i = 0; i < items; i++)
item_TD_NA_A = field_TD_NA_A;
item_TD_TYPE = field_TD_TYPE[i];
item_TD_NUMBER = field_TD_NUMBER[i];
item_TD_DATE = field_TD_DATE[i];
item_TD_YN = field_TD_YN[i];
item_TD_TEXT = field_TD_TEXT[i];
item_TD_NA = field_TD_NA[i];
hideItems(item_TD_NA_A, item_TD_TYPE, item_TD_NUMBER, item_TD_DATE, item_TD_YN, item_TD_TEXT, item_TD_NA);
function hideItems(v_td_na_a, v_td_type, v_td_number, v_td_date, v_td_yn, v_td_text, v_td_na)
hide(v_td_type);
hide(v_td_na_a);
if (v_td_type.value == 'N')
hide(v_td_date);
hide(v_td_yn);
hide(v_td_text);
if (v_td_type.value == 'D')
hide(v_td_number);
hide(v_td_yn);
hide(v_td_text);
if (v_td_type.value == 'Y')
hide(v_td_number);
hide(v_td_date);
hide(v_td_text);
if (v_td_type.value == 'T')
hide(v_td_number);
hide(v_td_date);
hide(v_td_yn);
if (v_td_na_a.value != 'Y')
v_td_na.style.display = 'none';
function setHRWidths()
document.getElementById("HR1").style.width = "30px";
document.getElementById("HR2").style.width = "410px";
document.getElementById("HR3").style.width = "300px";
document.getElementById("HR4").style.width = "65px";
document.getElementById("HR5").style.width = "75px";
document.getElementById("HR6").style.width = "300px";
setHRWidths();
var divCounter;
var divItem;
var divItems;
var divParent;
if (document.getElementsByTagName("DIV"))
divItems = document.getElementsByTagName("DIV");
rowcount = divItems.length;
for (divCounter = 0; divCounter < rowcount; divCounter++)
divItem = divItems[divCounter];
if (divItem.id == "Q_SEQUENCE")
divParent = divItem.parentNode;
while (divParent.tagName != "TD")
divParent = divParent.parentNode;
divParent.style.width = "30px";
divParent.style.whiteSpace = "normal";
if (divItem.id == "Q_DESCRIPTION")
divParent = divItem.parentNode;
while (divParent.tagName != "TD")
divParent = divParent.parentNode;
divParent.style.width = "400px";
divParent.style.whiteSpace = "normal";
var tdCounter;
var tdItems;
var tdItem;
if (document.forms.length > 0)
if (document.forms[0].getElementsByTagName("TD"))
tdItems = document.forms[0].getElementsByTagName("TD");
rowcount = tdItems.length;
for (tdCounter = 0; tdCounter < rowcount; tdCounter++)
tdItem = tdItems[tdCounter];
tdItem.style.verticalAlign = "top";
var rowcount;
if (document.forms[0].f01)
rowcount = document.forms[0].f01.length;
if (rowcount > 0)
hidefields(rowcount);
else
if (document.forms[0].f01)
hidefields(1);
</script>
Basically, the script loops through all of the rows, picks up the data type needed (which is a single letter in column 3) and hide the columns that were not required. It's made slightly more complicated because you have to hide the TD's not just the fields, so the code also works out which TD each field is in.
The only thing I did on the tabular form definition itself was to have a PL/SQL header (as several fields would be hidden, the normal headers wouldn't work). My header was: BEGIN
     RETURN '<b> <br> </b>:<b> <br> No</b><hr id="HR1">:<b> <br> Question</b><hr id="HR2">:<b> <br> Response</b><hr id="HR3">:<b> Not<br> Applicable</b><hr id="HR4">:<b> Date<br> Updated</b><hr id="HR5">:<b> Response<br> last year</b><hr id="HR6">';
END;
I hope that makes sense!
Regards
Andy
Message was edited by:
ATD

Similar Messages

  • Cannot use Pages tools in Acrobat X for LC-built forms

    Does anyone know why I can't use any of the Pages tools (rotate, extract, insert, crop, etc) in Acrobat X for a fillable form built in LiveCycle?

    Because XFA-based PDFs have very limited editablity in Acrobat, especially for dynamic XFA forms.

  • Export/Import xml from dynamic pdf form using java

    Hi,
    I have been searching for the last 2-3 days on the internet for this. Some posts do talk about it, but none have provided the answer I was looking for. Hopefully this is the correct forum to post the question in.
    I am working on a desktop swing application that works on extracting and changing data in a XFA form, I would like to export the form's content modify it and import it back using java. This is so easy with the Adobe Reader, where it nicley exports the form content as an XML document, you can change it manually and the import the data back. I am searching for a way of doing this in java. I found XPAAJ.jar mentioned in some forums, that may make this easy. I havent been able to use it, since I cant find it anywhere.
    I found a blog from Mike Potter
    http://blogs.adobe.com/mikepotter/2006/07/download_xpaaj.html
    This says that XPAAJ is free as long as I use it on forms developed using livecycle. I dont own livecycle, but the forms that I am working has been built using livecycle.  So my questions are:
    1. Is XPAAJ the correct library to use, to export and import XML data from a dynamic pdf form?
    2. Is XPAAJ free to use and distribute as long as it works on pdf forms developed by livecycle?
    3. Where can I download XPAAJ from?
    4. If XPAAj is no longer available, is there any other free library that does this?
    5. If there isn't any free library, how much would cost me to use and distribute the library along with my desktop application?
    Thanks
    Sethu

    Hi Sethu;
    First, its important to know that xpaaj never was a supported piece of software.  It was supplied "as is" with no support from Adobe.  It has been pulled and is no longer available from the Adobe web site.  Mike's blog is from 2006, so its really old information.
    1. Is XPAAJ the correct library to use, to export and import XML data from a dynamic pdf form?
    While the xpaaj library will import and export data to/from a form on the client, Adobe now recommends using the LiveCycle ES Forms server.
    2. Is XPAAJ free to use and distribute as long as it works on pdf forms developed by livecycle?
    The license stated that you need to own one of Adobe's server side products (not LiveCycle Designer, but one of the server side LiveCycle products).
    3. Where can I download XPAAJ from?
    XPAAJ was pulled by Adobe.  They found a few bugs and since it was unsupported software they just pulled it from the web site.
    4. If XPAAj is no longer available, is there any other free library that does this?
    Not from Adobe.  Adobe recommends using the LiveCycle ES Forms software for merging data and forms.
    5. If there isn't any free library, how much would cost me to use and distribute the library along with my desktop application?
    As far as I know there Adobe doesn't have a client side library available for this (merging dynamic XDP based forms with data).

  • Referring to dynamically created form items

    I have a requirement where I do not know how many rows are going to be added into a table from a form. What I have done is used javascript to dynamically create form fields. This is along the same lines as a tabular form, however it should not save any of the data until the whole page is submitted.
    My problem is, how do I then refer to these form items within a PL/SQL procedure?
    Below is the piece of javascript that creates new rows on the form (the options for the select item are fed in using ajax). And following that, the pl/sql loop that I have attempted to use which doesn't work.
    NOTE: The onchange attribute on each of the form elements was to try to set a session state variable for each of the items. I got this from the following blog post.
    http://deneskubicek.blogspot.com/2009/01/ajax-setting-item-session-state.html
    Javascript
         var objectFormCount = 0
         function addObjectForm() {
              var newFormHTML = '<tr>';
              newFormHTML = newFormHTML + '';
              newFormHTML = newFormHTML + '<td><select onchange="f_setItem(this.id)" name="f01" id="f01_' + objectFormCount + '"></select></td>';
              newFormHTML = newFormHTML + '<td><input onchange="f_setItem(this.id)" type="text" name="f02" id="f02_' + objectFormCount + '"/></td>';
              newFormHTML = newFormHTML + '<td><input onchange="f_setItem(this.id)" type="text" name="f03" id="f03_' + objectFormCount + '"/></td>';
              newFormHTML = newFormHTML + '<td><input onchange="f_setItem(this.id)" type="text" name="f04" id="f04_' + objectFormCount + '"/></td>';
              newFormHTML = newFormHTML + '</tr>';
              $('#BackEndObjectTable').append(newFormHTML);
              objectFormCount++;
    PL/SQL
    FOR i IN 0..l_oracle_script_count
    LOOP
    --DEBUGGING VARS
    l_test1 := v('f01_' || i);
    l_test2 := v('f02_' || i);
    l_test3 := v('f03_' || i);
    l_test4 := v('f04_' || i);
    l_test5 := i+1;
    INSERT INTO MIGRATION_B_OBJECT (MIGRATION_B_ID,TARGET,SCHEMA,SCRIPT_LOCATION,SCRIPT_NAME,RUN_ORDER)
    VALUES (l_mig_seq,v('f01_' || i),v('f02_' || i),v('f03_' || i),v('f04_' || i),i+1);
    END LOOP;
    Edited by: Dopple on 28-Jul-2011 01:59 - text was stripped from the body of the post.

    For anyone with the same requirements. What I had to do was add the value of each form element into a temp table which was basically held key/value pair (form item/value) along with the username, the table that is to be updated and the row number.
    Once the actual page was saved, the procedure built up an insert sql string from the values in the temp table and inserted each row.
    Works a charm, although spitting the data back out into the dynamic forms is going to be a chore!!!!

  • Is there a way to use dynamic built string in the "from" clause

    Hi all, im having one problem and now, im not sure how to solve it easily at all... :) Is there someone that would be so kind and put a eye on it? ..thx
    I have plsql proc, in which i have a list of table_names. For each of that table i need to run a query that will retrieve me a list of values and for each of that value i need to do something.
    If i can be more specific about the problem -> each of that table is built as key_column, value_columns, day,starttime. For a key per table there are 4 records per hour - every quarter. Im truncating those quarters to full-quarter (minutes => 0->14 = 0min; 15->29 = 15min, 30->44 = 30, 45->59=45)
    example
    i get for one key and specific hour four records at 15:01;15:16;15:31;15:46 => i truncate em to 15:00;15:15;15:30;15:45..Sometimes there is a problem with the tool that is generating those data for me, and one quarter could be moved a little - so i get data like 15:01;15:16;15:29;15:46 => after i truncate the times i get duplicates in second quarter. It also can happen like this : 23:00; 23:14; 23:29; 23:44; 23:59 => totaly bad => cos the last one supposed to be as 0:00 next day, ..and 23:14 as 23:15...So...that was a problem - and solution -> i wanted to create plsql that will find those hours in each table i ve defined, and for each problem hour i make some fixes - update the bad time ...
    ..and i have problem - can i put an dynamic built table_name in the "from" clause?
    example how i wanted to do that:
    declare
         type t_objectName     is table of varchar2(030) index     by pls_integer;
         l_tableName              t_objectName;
    begin
    l_tableName(1) := 'tmphlrgl';
    l_tableName(2) := 'tmprcfgl';
    l_tableName(3) := 'tmprcfbs';
    l_tableName(4) := 'tmpvlrgl';
    for i in (select evtime from (select day,trunc_quarter(evtime) evtime,m_id from l_tableName(i) group by day,trunc_quarter(evtime),m_id having count(*)>1) order by evtime) loop
    --some other conditions and the update...
    end loop;
    end;
    /I cannot use the l_tableName(i) for FROM ...get an error...I was thinking to build it as dynamic sql and execute immediate into some kind of object that can store mutliple lines, from which i would in the FOR cycle get the data...But im not sure if this could be done in plsql...
    thanks for your time and help..
    d.

    declare
    c sys_refcursor;
    begin
    for i in 1..4 loop
    open c for 'day,trunc_quarter(evtime) evtime,m_id
    from ' || l_tableName(i) ||
    'group by day,trunc_quarter(evtime),m_id having
    count(*)>1) order by evtime';Just to high light SELECT is missing that all
    OPEN c FOR ' SELECT day,trunc_quarter(evtime) evtime,m_id
              FROM' || l_tableName(i) ||
    'GROUP BY day,trunc_quarter(evtime),m_id  HAVING  count(*)>1)   ORDER BY evtime';

  • How can you update the content of a textfield in a dynamic xml form from MSAccess and VBA

    I am trying to use the code below to update a field in a dynamic xml form created by Livecycle.
    I can read the field content but cannot change it.
    What am I missing?
    Thanks
    R
    Sub test()
    Dim oPDF As AcroPDDoc
    Dim FileDestName As String
    Dim jso As Object
    Dim ofld As Object
        FileSrcName = "C:\Documents and Settings\My Documents\ADOBE Forms\NoVB.pdf"
        Set oPDF = CreateObject("AcroExch.PDDoc")
        Set jso = oPDF.GetJSObject
        Set ofld = jso.getfield("form1.TopForm.Header.Subform1.Contact")
        Debug.Print ofld.Value
         ofld.Value = "HHH"
        Debug.Print ofld.Value
    oPDF.Save PSsavefull, FileSrcName
    oPDF.Close
    Set jso = Nothing
    Set oPDF = Nothing
    End Sub

    You need to research the difference between an AcroForm and an XFA form.  You're trying to access a "Field" object, which is an AcroForm object.  An XFA form does not have fields, it has nodes.  The JavaScript you are using is specific to AcroForms and you are working with an XFA form.

  • Adding rows in web dynpro ABAP Dynamic Interactive form.

    Hi Experts,
              I am having problem in web dynpro ABAP Dynamic Interactive form.
    This is my scenario....
    I have a dynamic interactive form that has buttons to add and remove rows in a table. It works fine when I preview it , but when I render, view or save it using ADS, it no longer works. The "add" button actually does instantiate more repeating rows, because I put some trace messages in to count them, but the added rows are not displayed. How do I make them visible?
    In web dynpro java we write some coding in modify view to set the pdf form as dynamic
    IWDInteractiveForm iForm =
    (IWDInteractiveForm)view.getElement("<ID>");
    iForm.setDynamicPDF(true);
    simillarly what we need to write in web dynpro ABAP.
    Please give me solution for the same.
    Thanks,
    Sathish

    hi all,
             expecting reply from u all. pls help me and give some sugesstion.
    regards,
    vinoth.

  • How to make dynamic PDF form flowable across 2 pages in LiveCycle?

    I have a dynamic PDF form that is flowable on each page but not both. By that I mean that the fields on the 2nd page won't move to the 1st page if there is available space. How can I make the entire document flowable? I am using Adobe LiveCycle ES2 Designer to create the form. Thank you in advance.

    Hi,
    you need just one page which is flowable and allows page breaks.

  • Adobe Livecycle Designer ES 2 - Adobe Dynamic XML Forms?

    How can you convert a dynamic XML form design in a static PDF Form design? I tried to save a dynamic XML Form as a static PDF Form, and then tried to preview it in Designer but the layout change scripts were working which should work only for dynamic xml forms and not for the static pdf forms. Please suggest another way to do it. Thanks in advance.

    You use Master Pages to set layout that you want to use on multiple pages.
    Design what you want in a Master Page and then assign it to the pages you want in Object>Pagination>Place: and choose On Page> whatever you called your Master Page.

  • Adobe Reader XI - dynamic PDF Form and the E-Mail Dialog

    Hi Community,
    I have a dynamic PDF Form and we use the E-Mail function to save the XML-Data to local harddrive. That works until Adobe Acrobat Reader 10.1.2. But with the Adobe Reader XI (11.0.4) the E-Mail Dialog has changed so I am One is forced to send the XML file with Outlook or the internal mailer and has no option to save the file locally.
    Does anyone know a workaround or something similar. The Live Cycle server with PDF extension is too expensive for our small project.
    E-Mail Dialog (10.1.2)
    If you choose Internet-E-Mail you get a Save-As File Dialog
    E-Mail Dialog (11.0.4)
    There is no way to save the XML-Data to local Harddrive.

    Hi Pat,
    Are you using Adobe Reader XI? And not Acrobat. It does not ask me to save the form if there are unsaved changes.
    I have used previous versions of reader for saving this form data and it did allow me to save it with ctrl+s. And those versions did prompt me to save the changes before closing.
    I guess I should not have updated the reader.

  • Hyperlink in a dynamic PDF form

    Hi guys,
    I've created a dynamic PDF form in LiveCycle designer, and I want to insert hyperlink in to this form - but I don't know how to do it. My Link Tool in Adobe Acrobat is inactive.
    Any advice?
    Cheers
    Marian

    Thanks,
    I just needed to change text field to rich text and now I'm able to insert an URL. But now another problem pops up - I'd like to open directly from this PDF a file stored on the DFS file sharing server. My links open in browser - how can I fix this please?
    Marian

  • Dynamically built query on execution How to save the data in Object Type

    Hi,
    In pl/sql I am building and executing a query dynamically. How can I stored the output of the query in object type. I have defined the following object type and need to store the
    output of the query in it. Here is the Object Type I have
    CREATE OR REPLACE TYPE DEMO.FIRST_RECORDTYPE AS OBJECT(
    pkid NUMBER,
    pkname VARCHAR2(100);
    pkcity VARCHAR2(100);
    pkcounty VARCHAR2(100)
    CREATE OR REPLACE TYPE DEMO.FIRST_RECORDTYPETAB AS TABLE OF FIRST_RECORDTYPE;Here is the query generated at runtime and is inside a LOOP
    --I initialize my Object Type*
    data := new FIRST_RECORDTYPETAB();
    FOR some_cursor IN c_get_ids (username)
    LOOP
    x_context_count := x_context_count + 1;
    -- here I build the query dynamically and the same query generated is
    sql_query := 'SELECT pkid as pid ,pkname as pname,pkcity as pcity, pkcounty as pcounty FROM cities WHERE passed = <this value changes on every iteration of the cursor>'
    -- and now I need to execute the above query but need to store the output
    EXECUTE IMMEDIATE sql_query
    INTO *<I need to save the out put in the Type I defined>*
    END LOOP;
    How can I save the output of the dynamically built query in the Object Type. As I am looping so the type can have several records.
    Any help is appreciated.
    Thanks

    hai ,
    solution for Dynamically built query on execution How to save the data in Object Type.
    Step 1:(Object creation)
    SQL> ED
    Wrote file afiedt.buf
    1 Create Or Replace Type contract_details As Object(
    2 contract_number Varchar2(15),
    3 contrcat_branch Varchar2(15)
    4* );
    SQL> /
    Type created.
    Step 2:(table creation with object)
    SQL> Create Table contract_dtls(Id Number,contract contract_details)
    2 /
    Table created.
    Step 3:(execution Of procedure to insert the dynamic ouput into object types):
    Declare
    LV_V_SQL_QUERY Varchar2(4000);
    LV_N_CURSOR Integer;
    LV_N_EXECUTE_CURSOR Integer;
    LV_V_CONTRACT_BR Varchar2(15) := 'TNW'; -- change the branch name by making this as input parameter for a procedure or function
    OV_V_CONTRACT_NUMBER Varchar2(15);
    LV_V_CONTRACT_BRANCH Varchar2(15);
    Begin
    LV_V_SQL_QUERY := 'SELECT CONTRACT_NUMBER,CONTRACT_BRANCH FROM CC_CONTRACT_MASTER WHERE CONTRACT_BRANCH = '''||LV_V_CONTRACT_BR||'''';
    LV_N_CURSOR := Dbms_Sql.open_Cursor;
    Dbms_Sql.parse(LV_N_CURSOR,LV_V_SQL_QUERY,2);
    Dbms_Sql.define_Column(LV_N_CURSOR,1,OV_V_CONTRACT_NUMBER,15);
    Dbms_Sql.define_Column(LV_N_CURSOR,2,LV_V_CONTRACT_BRANCH,15);
    LV_N_EXECUTE_CURSOR := Dbms_Sql.Execute(LV_N_CURSOR);
    Loop
    Exit When Dbms_Sql.fetch_Rows (LV_N_CURSOR)= 0;
    Dbms_Sql.column_Value(LV_N_CURSOR,1,OV_V_CONTRACT_NUMBER);
    Dbms_Sql.column_Value(LV_N_CURSOR,2,LV_V_CONTRACT_BRANCH);
    Dbms_Output.put_Line('CONTRACT_BRANCH--'||LV_V_CONTRACT_BRANCH);
    Dbms_Output.put_Line('CONTRACT_NUMBER--'||OV_V_CONTRACT_NUMBER);
    INSERT INTO contract_dtls VALUES(1,CONTRACT_DETAILS(OV_V_CONTRACT_NUMBER,LV_V_CONTRACT_BRANCH));
    End Loop;
    Dbms_Sql.close_Cursor (LV_N_CURSOR);
    COMMIT;
    Exception
    When Others Then
    Dbms_Output.put_Line('SQLERRM--'||Sqlerrm);
    Dbms_Output.put_Line('SQLERRM--'||Sqlcode);
    End;
    step 4:check the values are inseted in the object included table
    SELECT * FROM contract_dtls;
    Regards
    C.karukkuvel

  • Dynamic .pdf forms

    Hello everyone,
    I am trying to find an application for my Curve 3300 that is able to render Adobe Dynamic XML Forms (it's a .pdf form, but it is created using LiveCycle Designer and has dynamic content that makes finding a renderer difficult.)
    I've tried the free trial of beamberry, and it isn't able to render the form... I get a "you need a newer version of adobe reader" error.
    Has anyone else out there had the same issue? If so, how did you resolve it? Can PDF To Go read dynamic .pdf forms?
    I'd appreciate any help that any one can offer.
    - Scott
    P.S. does anyone know which version of Adobe Reader is functionally equivalent to the Blackberry .pdf reader apps? Is it possible to know that, or are they two different creatures altogether?
    P.P.S. I figure that alot of people won't have any experience with dynamic .pdf forms... Here is a link to a sample dynamic .pdf form that I created for testing purposes. If you think that you have an app that can read it, please try opening the linked .pdf file on your blackberry. If anyone out there is able to view it, please let me know what software you are using. Thanks alot for your help.
    Solved!
    Go to Solution.

    For anyone in the future who has a similar issue, I've come up with a fairly simple workaround. It adds an extra step of work, but it allows you to continue using dynamic forms in your workflow.
    The ideal solution is if your office has a server-side adobe document output service. You can push your form to the server, have it extract the data into a datawarehouse, then output a flattened .pdf. A flattened .pdf cannot be (easily) edited, and all code behind is removed. This solution is the 'best', (and it's the only way to flatten an xfa form, as far as Adobe is concerned) but it also costs some coin, especially if you don't have any existing infrastructure to support the server-side service.
    The free solution (which I have opted for) is to use a virtual printer to 'print' the document to a suitable format. There are many free virtual printers out there, but I have decided to go with CutePDF Writer. I print to the CutePDF writer, and the output is, essentially, a flattened Blackberry compatible .pdf form. The only issue is that you cannot edit a flattened document (a bonus in my situation, but still something to keep in mind... You can still edit the original document, as the flattened .pdf is a copy, not a transformation.)
    You can even add a print button to the form with some JavaScript to specify the printer as 'CutePDF Writer'. Altogether, it's easier than recreating all of the business forms that have been made in a static format, and you can still leverage all the benefits of a dynamic form.
    I know that this isn't central to the Blackberry, and I apologize for that, but I had a rough time with this issue, and I'm hoping to help someone with the same issue in the future. Again, thanks to those who helped.
    - Scott

  • Dynamically populating form -

    I need to make a dynamically populating form - I cannot find the instruction - is there a video on adobe tv? Please help me - I am desperate. Thanks a lot! K_S_

    Hi..
    I think you can do it with ADF .When you click field1 in your form get the value to bean using serverListner.And create method in AMImpl to filter records from TableB by passing your field1 value.make sure to add client interface to this filter method(clientInterface in yourAM.xml) and add it to page using bindings to as methodAction.Then you can show filtered TableB using popoup.

  • How can i exclude information pages from being printed in a dynamic XML form?

    Hi there,
    i am building a dynamic XML form in Adobe LiveCycle Designer ES2.
    In this form there are pages with information that help the end user fill out the form, but to use - those who process the forms after they have been sent to us - these pages with information are irrelevant.
    Is there a way to tell the form to omit these pages when printing.
    Currently i have set the pages mentioned to be only visable on-screen.  But doing so results in an empty page being printed (only the master page information is visable.)
    Any ideas how i can solve this issue?
    Thank you.

    Create a new master page and set that page to visible screen only. Set your subforms to use that master.

Maybe you are looking for

  • Group sort using 2 fields

    Is there any way that I can have two fields as a group sort in order that the first group sort field will repeat when the second field changes? Thanks. Leah

  • Planning reverse engineering failed-ODI

    Hello Gurus, We are attempting to do reverse engineer planning application but it is failing with below given error.We are on ODI 11.1.1.5g and hyperion Planning 11.1.2.1x. Our project is up and running, we are able to successfully load metadata into

  • Registering email password

    I have a BB 8520 corve .I was obliged by Yahoo to reset my email password a few days ago ,and since then I have not been receiving Yahoo emails on my BB .From other provider - OK on BB,and Yahoo ok on iMac . My broadband/mobile provider is Talktalk .

  • Multiple images onto frontpanel

    I try to simultainously display multiple images inside/onto a front panel. How is this posible without getting the images "floating" around onto the panel? (They shall stay on top, but be attached to the panel.) I have tried using a sub-vi called Mak

  • Sql Developper and Informix Database

    Hello It is possible to connect informix database from Sql Developper ? I download the JDBC driver an install it. I already setup the third party JDBC drivers, but when i create new connection (Advanced connection type), and test, it doesn't work. An