Livecycle Designer 8.2 and Access 2007

work in engineering... we have a change process that we have to go through to make a change on our product. I have a form - ECR that I can send to an engineer to start the process. I fill in the ECR #, the product name and the date (there are lots of other fields but I want to keep this simple). They fill in the reason they need the change and what it is.
I have an MS Access Dabase that I have written to store the information.
I have been able to sucessfully get the form to populate with "my input" from the database (ECR #, name, date). I can distribute it to the engineer and they can fill in "their input" (reason and change) and they can submit it back to me.
Here is where my questions begin.
How can I, once I receive back the form, get the reason and change information into the Access Database? Is there even a way to do this directly? I will be the only one to have access to the database. I just need to know if there is a way for the form and the database to "communicate" so the form places the "reason/change" information back into the correct record in the table.
Ideally I would like to click on a button that I placed on the form and have some sort of statement that tells the form to "connect" to the database where the form ECR # = the database ECR # but so far the only thing that happens is that it opens the connection and the text in my form "reason/change" field goes away. (I assume because the database "reason/change" field is empty in the database and the form is updating to the database instead of the database updating to the form).
I have searched for a solid week on this topic and cannot find the answer. I have gone through all of the tutorials that I can find regarding database and pdf but I can only find references and examples for drop down boxes, not fields. Can anybody point me in the right direction, or at the very least tell me it cannot be done so I can go find another way to accomplish what I need to get done.
Thank you in advance for any information.
Jenn D.

The issue is that you have set up the connect to the db to be connected as soon as the form is loaded. You will want to delay the connection to the db until you are ready. There is a delayed open checkbox on the last page of the connection wizard. Set this on. To update the db you will have to write a sql statement to execute. Once the sql statement has been executed you will need to do an update command to commit the data. If you post your email address I can send you a sample that shows the different commands and how to enter the sql statement into the connection set.

Similar Messages

  • LiveCycle Designer 8-scripting search Access DB records

    Hi
    I am new to LiveCycle Designer 8 having it included with Acrobat Pro 8. I have been trying to set up a basic form that can interact with an Access 2007 DB. Following the help guide, online tutorials, I have been able to set up the data connection, figure out how to establish a "trusted environment" and added several buttons as a test. Using JS, the next, previous, update, first and last buttons work, populating the form fields with the sample DB data and updating the DB (update). Can't get the add new record button to work even though the JS scripting is precisely that shown in the same tutorials for the other buttons. If I delete the text in the on screen cells in the .pdf form, enter new text, click add, all that I added disappears. Checking the DB, nothing has been added. Same difficulty with deleting a record, and the current opened record does not delete.
    Reading a posting suggesting setting up an SQL query instead, leaving of any auto-incrementing item (like ID), and using the JS scripting for the button (don't yet know how to use SQL for next, previous, update, etc.), still couldn't get the add new or delete to work. Tried every combo of no user name, no password to user name, password blank, etc. No success.
    The other needed capability for the test form is the ability to search the DB records, for example by name or ID, for example by the user entering a name or ID in a text input box, clicking a "search" button and the record (if it exists) displaying in the other cells. Then, once found, it could be updated or deleted. One tutorial aims to populate a drop down list box with the data from a specific DB column. It doesn't use JS, rather FormCalc (which kept generating error messages, when I tested it out))and is far too complex for my limited novice skills. If I could display a drop down list box with all of the names and ID's in a DB, the user could choose one and once the record would populate the cells, they could update or delete it.
    So, I'm stuck. Can't get the add new or delete to work and can't figure out how to set up a search to identify records for update or delete. I've read and read anything I can find online, in the Adobe knowledge base, forum, blog postings, trying out many ideas without any success.
    I am hoping someone can help with some suggestions, sample scripts, hopefully understandable by a beginner.
    Any help would be appreciated.
    Kind Regards,
    Stephen
    [email protected]

    Here are some good blog entries
    http://forms.stefcameron.com/2006/09/18/connecting-a-form-to-a-database/
    http://forms.stefcameron.com/2006/09/29/selecting-specific-database-records/
    I also did a tech talk for the Acrobat Users Group where we talked about Database connectivity. Here is a link to that webinar for the replay
    http://adobechats.adobe.acrobat.com/p69655795/
    Paul

  • Acrobat and Access 2007

    I got 2 problems, when i have an access 2007 report and use the function "create and attach to email", on the following mail window, i want that the transmission confirmation and the return receipt check boxes are activated already, unfortunately Outlook 2007 settings have nothing to do with it.
    Well, i have to send 40-50 reports each day by email, so it's kinda annoying to hit those 2 check boxes for every mail.
    Another problem, after i've sent the mail, the mailwindow isn't closing automatically, i have to close it every time by hitting the X button. Thats annoying too.
    Before, i used Acrobat 7 and Office 2003, and the mail window was closed after sending each time, now with Acrobat 9 and Office 2007 it isn't anymore :(
    Anyone got a solution for these problems?
    Kind regards and merry xmas.
    Chris

    The first problem which you mentioned is more likely a MS Outlook bug. Try this. Launch Word and open any document. Now go to 'Office Button-> Send-> Email' option. This will create a new mail window with attached word document. Now check the options for transmission confirmation and the return receipt in the mail. Both of them are unchecked. So it's outlook which is not honoring the settings. This behavior is reproducible from MS Access as well (Office button-> Email option). Please check with MS support on this issue. Thanks.

  • JSP and Access 2007 database

    i've been trying to look for codes on how to access the Access 2007 database (.accdb).
    i've done a previous JSP app with Access database, but it is of a lower version (.mdb).
    i need something like the following, but for the 2007 version. is it just a matter of changing the extension for both statements, or is there more to it?
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String DBQ = request.getRealPath("sales.mdb");
    String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=" + DBQ + ";DriverID=22;READONLY=true";thanks.

    <%@page import="java.sql.*" %>
    <table boder="1">
    <%
    Statement statement;
    Connection conn;
    String url = "jdbc:mysql://localhost/dbName";
    String user = "username";
    String pass = "password";
    try {
        class.forName("com.mysql.jdbc.Driver");
        conn = DriverManager.getConnection(url, user, pass);
        statement = conn.createStatement();
    String query = "SELECT images FROM database";
    ResultSet results = statement.executeQuery(query);
    while(results.next()) {
    %>
        <tr>
            <td><img src="<%= results.getString("images") %>"></td>
        </tr>
    <% } %>
    </table>The while loop will loop through your result set and print the table row for each image it finds in the query.
    Hope this helps,
    Jon

  • Adobe LiveCycle Designer License terms and conditions

    Hello Guys,
    I am aware that Adobe LiveCycle Designer is available on SAP market place and following are the notes which has information about it.
    962763   Adobe LiveCycle Designer 7.1 Installation
    1121176 - Adobe LiveCycle Designer 8.0 - Installation
    But is there anything in writing who can download this software (ADS available in landscape ) and how should not ? (ADS not available). Or is it available to anyone who has SAP installation. I am looking for terms and conditions to use this product which is provided by SAP.
    Nitesh

    Hello,  you can install it as a part of SAP gui, so I guess there is no extra licence needed except the one for running SAP gui. You cannot produce anything "immediately useful" with LCD (no Reader Right can be included as in the Acrobat which is paid). So I don´t expect any problems with the licence. BTW this is the first time somebody asks about that and there are like tousands of people using this software:)) Otto

  • I'm having issues with oracle ODBC and access 2007

    Hello all,
         I'm having an issue with using an ODBC connection with a pass-through query in access 2007. I have Oracle 9i installed and am on Windows 7 32 bit. This only seems to be effecting Windows 7 users and not XP users.
    The error in the SQL Log is this.
    CLDemoFE        1694-162c EXIT  SQLDriverConnectW  with return code -1 (SQL_ERROR)
      HDBC                0x00787430
      HWND                0x000501FC
      WCHAR *             0x6D3A8B34 [      -3] "******\ 0"
      SWORD                       -3
      WCHAR *             0x6D3A8B34
      SWORD                       -3
      SWORD *             0x00000000
      UWORD                        0 <SQL_DRIVER_NOPROMPT>
      DIAG [NA000] [Microsoft][ODBC driver for Oracle][Oracle]ORA-01019: unable to allocate memory in the user side (1019)
      DIAG [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed (0)
      DIAG [IM006] [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed (0)
    I've been looking all over the internet and can't find an answer to the issue and decided to post it to see what other people thought.
    Thank you in advance.

    I've had exactly the same problem for weeks now.   When using Safari, it stalls, freezes, then starts working again.  I checked the console and exactly when it freezes.  I get the following:
    2015-02-25 5:51:59.000 PM kernel[0]: process com.apple.WebKit[405] caught causing excessive wakeups. Observed wakeups rate (per sec): 216; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 849849
    and:
    2015-02-25 9:21:46.834 PM com.apple.launchd[1]: (com.apple.WebKit.WebContent.FC16A539-929A-43E5-91EB-34A5669B70FD[1265]) Could not terminate job: 3: No such process
    2015-02-25 9:21:46.834 PM com.apple.launchd[1]: (com.apple.WebKit.WebContent.FC16A539-929A-43E5-91EB-34A5669B70FD[1265]) Using fallback option to terminate job...
    2015-02-25 9:21:46.834 PM com.apple.launchd[1]: (com.apple.WebKit.WebContent.1004D4B5-112D-4D90-9779-B2BEFB570C7F[1262]) Could not terminate job: 3: No such process
    2015-02-25 9:21:46.834 PM com.apple.launchd[1]: (com.apple.WebKit.WebContent.1004D4B5-112D-4D90-9779-B2BEFB570C7F[1262]) Using fallback option to terminate job...
    2015-02-25 9:21:46.834 PM com.apple.launchd[1]: (com.apple.WebKit.WebContent.9F72A6A1-63F5-41B2-B02F-40D4CB0925A2[1261]) Could not terminate job: 3: No such process
    2015-02-25 9:21:46.834 PM com.apple.launchd[1]: (com.apple.WebKit.WebContent.9F72A6A1-63F5-41B2-B02F-40D4CB0925A2[1261]) Using fallback option to terminate job...
    2015-02-25 9:21:46.864 PM com.apple.launchd[1]: (com.apple.WebKit.Networking.8CDDD2D1-B6B6-4F09-B8DE-5C4A4E9F653E[1260]) Exited with code: 1
    2015-02-25 9:21:46.998 PM com.apple.launchd[1]: (com.apple.WebKit.Plugin.64.39152B03-68E5-463E-A6C0-A9734AF733A2[1268]) Exited with code: 1

  • Livecycle Designer  - Design View and Hierarchy  Blank - Assistance Sought

    12 months ago I succesfully installed Livecycle designer 8.0. Recently tried again on a new laptop with GUI 720 and decided to try Livecycle 8.2. It installs OK.
    I am using Livecycle from an ABAP SAP system.
    The problems come when I fire up the layout of an existing form from transaction SFP. Livecycle Designer starts OK. However the Design View is blank and the Hierarchy only contains a blank subform. The DataView however does list all the data fields on the form.
    I have tried installing Livecycle Designer 8.0 and 8.1 as well but always get this same result.
    Interestingly if I take a copy of an active form saved as a pdf (as it being displayed as part of an application in the portal) and open it using Livecycle Designer outside of the GUI (by executing command formdesigner.exe located in the windows "program files" installation directory) then I get all the details of the form showing correctly.
    Any ideas greatly appreciated.
    Thank you.

    Thank you very much Otto.
    This a very useful tip but sadly does not apply in this case where both the logon language and language of the forms are English. The locale setting on the form display is also English.I have tried English Euro and English US as just in case this does make any difference, but without success.
    When I attempt to create or change a form I get a run time error MESSAGE_TYPE_X with message class CNDP and message number 006. This suggests incorrect GUI, Kernel or GUI patch. I do not know of any required GUI 720 patches and can find nothing relevant on OSS.
    If no-one responding on SDN can assist in a week or so I will raise a call with SAP. I will post the results (even if they are embarrassing for me).

  • Form created with Livecycle Designer with a SQL database - do you need LiveCycle Forms installed?

    Hello,
    I'm REALLY hoping someone here can help me, I have spent over four hours on the phone to Adobe in the last 3 days and I'm getting no where what-so-ever. I can't even find out where /how to complain about it! (but thats another story)
    Here's my situtation:
    I work for a company with approx 140 staff. On one computer, we have Adobe Livecycle Designer ES installed, and we have used that program to create a form which has a link to a SQL database.
    The link in this form doesn't work on the other computers which has the basic (free) Adobe Reader. From doing research within these forums
     , I have found that the form will not work on other computers unless they have Adobe Livecycle forms installed on their machines. 
    What I need to know (and what they cannot seem to tell me when I call), is two things:
    Is it correct that in order to use a form created in Livecycle Designer which has a link to a SQL database, that the machine must have LiveCycle forms installed?
    How much does Adobe LiveCycle Forms costs?
    PLEASE, if you can answer this question, I would REALLY appriciate it....
    Thank you!

    I presume you are asking if you need Livecycle Forms ES? Forms ES is a component of the livecycle software suite intended as a document service which will be installed on a server within the organisation. A couple of things this document service can do is to render XDP into multiple formats (PDF, html, etc.), execute script server side (for example the database connection) on behalf of the client (reader, etc.), integrate with backend components, etc. So no you do not install this on each client.
    For database connections to work, you either have a server with Forms ES installed which can connect on each clients behalf (ie. Client->Forms ES Server->Database), or you have a reader-extended PDF to allow connections to be use in the free basic Reader (i.e. direct calls to the database or using web service calls to your own database components). However, reader-extended pdf would probably require Reader Extensions ES component installed on a server (you once off extend your developed pdf through this and then hand it out to each of the end users). Not sure if the Acrobat Reader extensions will cover this functionality since I have not tried that. I dont think it does. Otherwise you would need full acrobat on each client.
    How much database integration is your form actually doing at the moment? read only? Full access? And how many clients do you expect to hit your database? Depending on what you need the form to do, there is always the option to try and build the integration yourself. Do simple http submits from the browser (hosting reader as a plugin) to some component somewhere which in turn hits your database. Wouldnt require additional licensing but alot more development work.
    As for cost for the various components, thats a question only Adobe can answer for you since they all sit squarely in the enterprise space and licensing for that is not as simple as off the shelf products.
    Maybe someone else has a view on it or has an alternative.

  • Adobe LiveCycle Designer ES closes every time I open it :(

    Hello all, I want to thank you beforehand for the help regarding this matter. I use Windows Vista and my Adobe LiveCycle Designer was working before but for the last week and a half or so I have not been able to get it to work! I have done scandisk/defrag/and have multiple software to keep my computer clean so I have taken those precautions beforehand. To the problem...:
    My Adobe LiveCycle Designer opens up and it was working previously as mentioned, but when I try to open it by either opening or converting a form or creating a new form with a template, I am not able to as it gives me an error message and closes! It gives me an error message of "Adobe LiveCycle Designer ES has stopped working" and a screenshot of this is provided at the following link:
    http://www.mediafire.com/imgbnc.php/bc59d422150595157c212a5b181313244g.jpg
    I don't know what to do and wanted to see if I could solve this problem before I was forced to try to manually reinstall it so hopefully I don't have to go through that. I appreciate the help once again!

    I am dealing with the same problem. I called Adobe technical support and spent hours to fix the problem but none worked. I tried to explain them the error might be caused by the Activation process but they just made me uninstall and install application several times.
    When I start LiveCycle it gives the following error: adobe livecycle designer es has stopped working.
    I start debugger to see what's going on and get the following exception: Unhandled exception at 0x773db663 in FormDesigner.exe: 0xC015000F: The activation context being deactivated is not the most recently activated one.
    Does anyone know how to deactivate this product manually? Because deactivate menu is dimmed and I cannot deactivate product from the program. I believe if I can just remove activation info and activate it again this problem might disappear.
    Thanks

  • My Adobe LiveCycle Designer ES closes when I open it....:(

    Hello all, I want to thank you beforehand for the help regarding this matter. I use Windows Vista and my Adobe LiveCycle Designer was working before but for the last week and a half or so I have not been able to get it to work! I have done scandisk/defrag/and have multiple software to keep my computer clean so I have taken those precautions beforehand. To the problem...:
    My Adobe LiveCycle Designer opens up and it was working previously as mentioned, but when I try to open it by either opening or converting a form or creating a new form with a template, I am not able to as it gives me an error message and closes! It gives me an error message of "Adobe LiveCycle Designer ES has stopped working" and a screenshot of this is provided at the following link:
    http://www.mediafire.com/imgbnc.php/bc59d422150595157c212a5b181313244g.jpg
    I don't know what to do and wanted to see if I could solve this problem before I was forced to try to manually reinstall it so hopefully I don't have to go through that. I appreciate the help once again!

    Hi,
    I have a few screenshots here that show Windows XP and Vista: http://forums.adobe.com/message/2226510#2226510.
    C:\Users\Username\AppData\Roaming\Adobe\Designer\8.2\
    In addition it is the same location for Windows 7:
    Good luck,
    Niall

  • Adobe LiveCycle Designer ES closes when I open it...

    Hello all, I want to thank you beforehand for the help regarding this matter. I use Windows Vista and my Adobe LiveCycle Designer was working before but for the last week and a half or so I have not been able to get it to work! I have done scandisk/defrag/and have multiple software to keep my computer clean so I have taken those precautions beforehand. To the problem...:
    My Adobe LiveCycle Designer opens up and it was working previously as mentioned, but when I try to open it by either opening or converting a form or creating a new form with a template, I am not able to as it gives me an error message and closes! It gives me an error message of "Adobe LiveCycle Designer ES has stopped working" and a screenshot of this is provided at the following link:
    http://www.mediafire.com/imgbnc.php/bc59d422150595157c212a5b181313244g.jpg
    I don't know what to do and wanted to see if I could solve this problem before I was forced to try to manually reinstall it so hopefully I don't have to go through that. I appreciate the help once again!

    Shawn,
    This may be a couple of known things; one is related to your specific installation (may have become corrupted if you did an upgrade from a previous version, especially if you upgraded from Beta?) Or, it may be related to a known SQL Server compatibility bug for which a hotfix will shortly be posted. (Problem with some Microsoft DLLs that get updated if you install SQL server).
    If you have SQL Server installed, try looking on these forums for a patch that should be posted within the next 2 days. If not - please contact me directly, as I'd like to get someone on my development team to help look through your installation and see what the problem is, so we can fix this properly.
    Mike

  • Writing data programmatically into PDF template created in LiveCycle designer

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

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

  • Adobe LiveCycle Designer Samples - problem

    Hello,
    i've just downloaded the DataImportExport.zip from
    http://partners.adobe.com/public/developer/livecycle/designer/index_samples.html
    and i have one question.
    Why i am unable to run first example: "Export Data: User to specify the file name" ?
    Does anyone have the same problem ? I have Reader 7.0.5.
    Also the third example works.
    Please help me !

    You need Acrobat, not Reader, to export data.
    Carl Young
    www.pdftrain.com

  • Creating Bookmarks in Livecycle Designer 7.1

    Greetings All,
    Is it possible to create bookmarks in Livecycle Designer 7.1 and link it to pages, sections within pages and text fields. If it is possible, could anyone show how to do that, provide examples or a reference on how to do that. Appreciated your help.
    Thanks.

    Hi Muhammad,
    I am not sure about availability of bookmarks in LiveCycle Designer 7.1. But you have setFocus method available in designer. This method you can use to set the cursor position.
    Syntax for this method is:
    xfa.host.setFocus("xfa[0].form[0].form1[0].#subform[2].TextField2[0]");
    Regards,
    Amit

  • SQL Developer and Access with password issue

    I have Windows 7 64bits, Developer Version 2.1.1.64 and Access 2007.
    Created a MDB file added 2 tables, enabled de system tables and set a password.
    I try to configure connection but it gives a "Not Valid Password" error.
    I use on username: Admin
    And the password I'd set.
    What could be the error?
    I unset the password and it works fine.

    The password I had set was Database password and not user login so maybe there's no hope on this one, for now...

Maybe you are looking for

  • Copy HTML Code into DW?

    In CS6 I create a simple rectangle and increase the roundness of the rectangle. I then select the shape and choose edit > copy HTML code and I open Dreamweaver CS6 and paste the code into the code window. I thought it was supposed to write code to re

  • How to tar a folder into a tar file

    I have a folder on my local system which I want my Java code to tar. But I want to also add a file filter so that only one particular subfolder gets added into that tar. How do I do that. How do I create an OutputStream to tar. e.g Say I have the arc

  • How can I know which IP port is free for use?

    I am doing a internet project that the sender need to send voice at a port and receive the voice from another port. I want to assign the port to the send function and receive function automatically, so I want to use some API to determine which port i

  • How can I resolve installer errors for iCloud Control Panel?

    I tried to install the latest iCloud Control Panel setup from the web on my Windows PC but keep getting installer errors that prevent iCloud's configuration.  Can anyone assist?

  • Mutliple clicks sends me into "group" or "sticky" mode

    Hello! Just upgraded to CS3. I know that CS2 had added a very annoying feature people were calling the "sticky box," where multiple clicks on an object would sometimes get you a white box. I would easily get out of this by clicking on something outsi