Need help with ODBC Connections in Adobe LiveCycle

Hello I have designed a form for my company that uses a database to populate a few fields on the form. I am unable to get it to work correctly without acrobat pro installed. I am using using xfa.sourceSet.DataConnection but as I said it will only work with acrobat pro installed. We do not have acrobat pro on any of the machines at my company and installing it is not an option is there any other way to accompish this?

Please see this article for what options you have for deployment of your form:
http://assuredynamics.com/index.php/2010/11/using-livecycle-forms-in-acrobat-and-reader/

Similar Messages

  • I need help with a download from Adobe

    I need help with Adode photoshop elements that I bought from Adobe. The download take forever. I can't get signed in very easy. It take forever

    Hi Kathy1963-1964,
    Welcome to Adobe Forum,
    You have photoshop elements 12, you can try downloading without the akamei downloader .
    http://prodesigntools.com/photoshop-elements-12-direct-download-links-premiere.html
    Please read the " very important instruction" prior to downoload.
    I would request you to disable the firewall & the antivirus prior to download.
    Let us know if it worked.
    Regards,
    Rajshree

  • [8i] Need help with hierarchical (connect by) query

    First, I'm working in 8i.
    My problem is, I keep getting the error ORA-01437: cannot have join with CONNECT BY.
    And, the reason I get that error is because one of the criteria I need to use to prune some branches with is in another table... Is there anyway to work around this? I tried an in-line view (but got the same error). I thought about using the connect by query as an in-line view and filtering off what I don't want that way, but I'm not sure how to filter out an entire branch...
    Here is some simplified sample data:
    CREATE TABLE     bom_test
    (     parent          CHAR(25)
    ,     component     CHAR(25)
    ,     qty_per          NUMBER(9,5)
    INSERT INTO     bom_test
    VALUES     ('ABC-1','101-34',10);
    INSERT INTO     bom_test
    VALUES     ('ABC-1','A-109-347',2);
    INSERT INTO     bom_test
    VALUES     ('ABC-1','ABC-100G',1);
    INSERT INTO     bom_test
    VALUES     ('ABC-1','1A247G01',2);
    INSERT INTO     bom_test
    VALUES     ('ABC-100G','70052',18);
    INSERT INTO     bom_test
    VALUES     ('ABC-100G','M9532-278',5);
    INSERT INTO     bom_test
    VALUES     ('1A247G01','X525-101',2);
    INSERT INTO     bom_test
    VALUES     ('1A247G01','1062-324',2);
    INSERT INTO     bom_test
    VALUES     ('X525-101','R245-9010',2);
    CREATE TABLE     part_test
    (     part_nbr     CHAR(25)
    ,     part_type     CHAR(1)
    INSERT INTO     part_test
    VALUES     ('ABC-1','M');
    INSERT INTO     part_test
    VALUES     ('101-34','P');
    INSERT INTO     part_test
    VALUES     ('A-109-347','P');
    INSERT INTO     part_test
    VALUES     ('ABC-100G','M');
    INSERT INTO     part_test
    VALUES     ('1A247G01','P');
    INSERT INTO     part_test
    VALUES     ('70052','P');
    INSERT INTO     part_test
    VALUES     ('M9532-278','P');
    INSERT INTO     part_test
    VALUES     ('X525-101','M');
    INSERT INTO     part_test
    VALUES     ('1062-324','P');
    INSERT INTO     part_test
    VALUES     ('R245-9010','P');This is the basic query (with no pruning of branches):
    SELECT     LEVEL
    ,     b.component
    ,     b.parent
    ,     b.qty_per
    FROM     bom_test b
    START WITH          b.parent     = 'ABC-1'
    CONNECT BY PRIOR     b.component     = b.parentThe query above gives the results:
          LEVEL COMPONENT                 PARENT                        QTY_PER
          1.000 101-34                    ABC-1                          10.000
          1.000 A-109-347                 ABC-1                           2.000
          1.000 ABC-100G                  ABC-1                           1.000
          2.000 70052                     ABC-100G                       18.000
          2.000 M9532-278                 ABC-100G                        5.000
          1.000 1A247G01                  ABC-1                           2.000
          2.000 X525-101                  1A247G01                        2.000
          3.000 R245-9010                 X525-101                        2.000
          2.000 1062-324                  1A247G01                        2.000
    9 rows selected....but I only want the branches (children, grandchildren, etc.) of part type 'M'.
    e.g.:
          LEVEL COMPONENT                 PARENT                        QTY_PER
          1.000 101-34                    ABC-1                          10.000
          1.000 A-109-347                 ABC-1                           2.000
          1.000 ABC-100G                  ABC-1                           1.000
          2.000 70052                     ABC-100G                       18.000
          2.000 M9532-278                 ABC-100G                        5.000
          1.000 1A247G01                  ABC-1                           2.000Any suggestions?

    Hi,
    user11033437 wrote:
    First, I'm working in 8i.
    My problem is, I keep getting the error ORA-01437: cannot have join with CONNECT BY.
    And, the reason I get that error is because one of the criteria I need to use to prune some branches with is in another table... Is there anyway to work around this? I tried an in-line view (but got the same error). Post your query. It's very hard to tell what you're doing wrong if we don't know what you're doing.
    ...but I only want the branches (children, grandchildren, etc.) of part type 'M'.
    e.g.:
    LEVEL COMPONENT                 PARENT                        QTY_PER
    1.000 101-34                    ABC-1                          10.000
    1.000 A-109-347                 ABC-1                           2.000
    1.000 ABC-100G                  ABC-1                           1.000
    2.000 70052                     ABC-100G                       18.000
    2.000 M9532-278                 ABC-100G                        5.000
    1.000 1A247G01                  ABC-1                           2.000
    You mean you want don't want the descendants (children, grandchildren, etc.) of any component whose part_type is not 'M'.
    The part_type of the component itself doesn't matter: component '101-34' is included, even though its part_type is 'P', and component 'X525-101' is excluded, even though its part_type is 'M'.
    >
    Any suggestions?Sorry, I don't have an Oracle 8.1 database at hand now. All three of the queries below get the correct results in Oracle 10.2, and I don't believe they do anything that isn't allowed in 8.1.
    You can't do a join and CONNECT BY in the same query on Oracle 8.1.
    I believe you can do one first, then the other, using in-line views. The frist two queries do the join first.
    --     Query 1: Join First
    SELECT     LEVEL
    ,     component
    ,     parent
    ,     qty_per
    FROM     (     -- Begin in-line view to join bom_test and part_test
              SELECT     b.component
              ,     b.parent
              ,     b.qty_per
              ,     p.part_type     AS parent_type
              FROM     bom_test     b
              ,     part_test     p
              WHERE     p.part_nbr     = b.parent
         )     -- End in-line view to join bom_test and part_test
    START WITH     parent     = 'ABC-1'
    CONNECT BY     parent          = PRIOR component
         AND     parent_type     = 'M'
    ;Query 2 is very much like Query 1, but it does more filtering in the sub-query, returning only rows hose part_type or whose parent's part_type is 'M". Your desired result set will be a tree taken entirely from this set. Query 2 may be faster, because the sub-query is more selective, but then again, it may be slower because it has to do an extra join.
    {code}
    -- Query 2: Join first, prune in sub-query
    SELECT     LEVEL
    ,     component
    ,     parent
    ,     qty_per
    FROM     (     -- Begin in-line view to join bom_test and part_test
              SELECT     b.component
              ,     b.parent
              ,     b.qty_per
              ,     p.part_type     AS parent_type
              FROM     bom_test     b
              ,     part_test     p
              ,     part_test     c
              WHERE     p.part_nbr     = b.parent
              AND     c.part_nbr     = b.component
              AND     'M'          IN (c.part_type, p.part_type)
         )     -- End in-line view to join bom_test and part_test
    START WITH     parent     = 'ABC-1'
    CONNECT BY     parent          = PRIOR component
         AND     parent_type     = 'M'
    {code}
    Query 3, below, takes a completely different approach. It does the CONNECT BY query first, then does a join to see what the parent's part_type is. We can easily cut out all the nodes whose parent's part_type is not 'M', but that will leave components like 'R245-9010' whose parent has part_type 'M', but should be excluded because its parent is excluded. To get the correct results, we can do another CONNECT BY query, using the same START WITH and CONNECT BY conditions, but this time only looking at the pruhed results of the first CONNECT BY query.
    {code}
    --     Query 3: CONNECT BY, Prune, CONNECT BY again
    SELECT     LEVEL
    ,     component
    ,     parent
    ,     qty_per
    FROM     (     -- Begin in-line view of 'M' parts in hierarchy
              SELECT     h.component
              ,     h.parent
              ,     h.qty_per
              FROM     (     -- Begin in-line view h, hierarchy from bom_test
                        SELECT     component
                        ,     parent
                        ,     qty_per
                        FROM     bom_test
                        START WITH     parent     = 'ABC-1'
                        CONNECT BY     parent     = PRIOR component
                   ) h     -- End in-line view h, hierarchy from bom_test
              ,     part_test     p
              WHERE     p.part_nbr     = h.parent
              AND     p.part_type     = 'M'
         )     -- End in-line view of 'M' parts in hierarchy
    START WITH     parent     = 'ABC-1'
    CONNECT BY     parent     = PRIOR component
    {code}
    I suspect that Query 3 will be slower than the others, but if the CONNECT BY query is extremely selective, it may be better.
    It would be interesting to see your findings using the full tables. Please post your observations and the explain plan output.
    As usual, your message is a model of completeness and clarity:
    <ul>
    <li>good sample data,
    <li> posted in a way people can use it,
    <li>clear results,
    <li> good explanation
    <li> nciely formatted code
    </ul>
    Keep up the good work!

  • Need help making odbc connection to db2

    I'm tying to connect to an ODBC connection and am getting an error, while running on NT V4, and Oracle v8.0.3.
    I cannot connect by issuing the following from the Command line
    PLUS80W.EXE user/passwd@odbc:db2_dev
    I get the following error message:
    ORA-12154: TNS:could not resolve service name
    Yet I can connect using Oracle's "Oracle ODBC Test", selecting the proper 'machine data source' and typing in the username and password.
    Any ideas on how to proceed?
    Do I need to add a service name to the tnsnames.ora file, if so, can someone provide a sample for an ODBC source?
    Thanks
    GL

    SQL*Plus is an Oracle tool. At one point, I believe there was a facility that let you connect SQL*Plus to other data sources via ODBC (the acronym for this was OCA, Open Client Adaptor, I believe). As I understand it, though, this has been desupported.
    There may be some folks in the SQL*Plus group that know the proper incantation to get this to work.
    Justin

  • Need help with iphone4 connecting to computer

    On the weekend my friend had put her iphone4 on my computer and now wen i connect my iphone4 to my computer it keeps saying that my iphone is her iphone but its not...
    I really need help coz its doin my head in, i have uninstalled the driver and itunes and reinstalled both and it still does the same thing

    try changing the following wireless settings
    radio band - wide
    wide channel - 9
    standard channel - 11
    if this doesn't work , ensure that the router has the latest firmware ..

  • Need help with WRT300N connecting to a Wireless-G Adapter

    I currently purchased the WRT300N router. I have everything working and it connects to my hardwired pc and my laptop. Only problem I am running across is that I cannot get my other computer to recognise the connectino when the router is set to mixed. Now the computer will recognise the connection if I set the router to wireless - g mode only. But that defeats the purpose becaus I need the wireless-n connection for another computer that has the wireless - n adapter. Anyone know a fix for this, or maybe is havint the same problem?

    try changing the following wireless settings
    radio band - wide
    wide channel - 9
    standard channel - 11
    if this doesn't work , ensure that the router has the latest firmware ..

  • Need help with database connection and trasaction!

    Hi, I'm trying to load data from a huge report to DB2. My old way of doing this is: 1. using DriverManger.getConnection to get a connection.
    2. Then set autoCommit to false.
    3. Keep the connection open.....
    4. con.commit once I reach a section, let's say around 5000 records per section.
    5. Close the connection once I finish loading, (Finally block)
    I'm still new in the java world and kind of concern of the way of what I'm doing. Then I did some research. Perhaps using javax.sql.DataSource is a better approach. But I couldn't use it in WSAD. Do I need do some configuration? I heard it's in j2ee 1.4 . Is that the reason I couldn't use it?
    And.......I tried to use DAO pattern to talk with DB. By that way, I have to open and close connection everytime I invoke the dao method. Then how can I control the transaction? Because I don't want to insert each record data in to the table right away. I want to do the commit once I get all records for one section. No idea how can I achieve this.
    Any suggestion will be really appreciated!!!

    I'm still new in the java world and kind of concern
    of the way of what I'm doing. Then I did some
    research. Perhaps using javax.sql.DataSource is a
    better approach. But I couldn't use it in WSAD. Do I
    need do some configuration? I heard it's in j2ee 1.4
    . Is that the reason I couldn't use it?What you need to do is configure a Connection datasource. WSAD has that. You just need to go through the documentation and find out. I never worked on it.
    And.......I tried to use DAO pattern to talk with DB.
    By that way, I have to open and close connection
    everytime I invoke the dao method. Then how can I
    control the transaction? Because I don't want to
    insert each record data in to the table right away. I
    want to do the commit once I get all records for one
    section. No idea how can I achieve this.Since you want to simply insert multiple records, you might want to insert them in a batch. This is available in PreparedStatements.
    $ Carol.

  • Need help with G5 connected to AirPortExpress!

    I simply can't find the source of this problem, and any help is very welcome:
    When my G5 2x2,5GHz and OS 10.4.8 is connected to my AirPort Express network, the connection suddenly becomes very slow and it takes forever to download a simple page. The message "You are not connected to Internet" often shows up, and trying to reconnect fails. The only solution is to restart both the ADSL modem and the Airport Express.
    - The funny thing is that with my brand new MacBookPro and the old iMac G4, this never happens. They stay connected both to the network and Internet without any similiar problems.
    Could it be the wireless antenna on the back of the G5, or could it be some security settings or OSX problems on the G5? I am not sure how to find the source of the problem...
    Helge K.

    Hello Helge,
    I have a couple of questions.
    How is the speed during a file transfer between the G5 and the imac ( say a large file) compared to the iMac and the Macbook?
    Forget the web for a minute here and let zero down on the problem. Is it the current network, or a specific machine, or is it that basted ADSL modem?
    Try transferring a file over your network and compare if there is a noticeable difference then lets move that G5 away from the wall ( the ant is in the back) and try with the G5 turn 180 degrees around, any better? If not double check the ant lead that connects to the card or take in for service and have the unit inspected for a pinched/ loose cable.
    If moving a file around the network is ok then we have a web issue. Run a trace-route to Apple's main site and compare it to the macbook. What's different?
    Nothing? Then there is the famous reset Safari and test or see what Firefox does.
    Good Luck,
    Cowsweat

  • Hi..I need help with an application in Adobe Illustrator..can you help me?

    I just want to type something in Adobe Illustrator and rastersize the image so I can upload onto a transfer designing site to have a transfer made of the image. How do I do that?

    I'm not sure what your skill level is, so please forgive these instructions if they are too simplistic.
    1) Type some text using the Type tool, highlighted in the image below:
    2) Go to File > Export.
    3) And, like Steve said, select the file format the transfer designing site indicates.
    Please let us know if you need any more help.

  • Need help with calculated fields in Adobe Interactive Forms

    Hi Gurus,
    I have an Adobe Interactive form in which i have radio buttons. Upon selecting any of the radio buttons, value in text box should be changed( Calculqated filedS). How i can achieve this?
    Regards,
    Srini
    Moderator message: wrong forum, please post again in Adobe Interactive Forms, but always try yourself before asking.
    Edited by: Thomas Zloch on Jul 13, 2010 11:58 AM

    Hi Tapan
    No, it's working ,with  one remark.
    I've done a mistake, in the final formula. The logic remain the same! ;)
     The calculation values for second column ( COL2 ) are 1,2,3 and not 0,1,2 as I wrote  before and as for COL1 are so the formula is
    =3*if(COL1="ABC",0,IF(COL1="DEF",1,2)+if(COL2="RST",1,IF(COL2="YYZ",2,3)
    and not
    =3*if(COL1="ABC",0,IF(COL1="DEF",1,2)+if(COL2="RST",0,IF(COL2="YYZ",1,2)
    I created also a real example  for you, with 2 dif calculation ways . First I created 2 calc_columns for COL1 and COL2 ( CALC_COL1+CALC_COL and after I added both these 2 column , and second way is to calculate directly) .
    Check this image
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • I need help with socket connection pooling please

    I need a basic connection pooling system for the code below users sets number connections 5 etc.
    <main class>
    s = new ListService(ssock.accept(),serverDir); //give list to client
    Thread t = new Thread(s);
    t.start();
    <main class>
    class ListService implements Runnable
    Socket client;
    String serverDir;
    public ListService(Socket client,String serverDir)
    this.client = client;
    this.serverDir = serverDir;
    public void run()
    try
    BufferedWriter out = new BufferedWriter(new OutputStreamWriter(client.getOutputStream()));
    // send something to client
    catch(Exception e)
    System.out.println(e);
    System.out.println("client disconnected\n");
    catch(Exception e){}
    Thank you so much

    My code already accepts multi clients I need pooling only 5 clients can be using the server at a time when one client disconnects that means another incoming client can enter the pool to use the server.
    I tried to do a counter so when a connection is made it increments and then if counter>=numOfClients
    set a variable to true or false and this is sent with the server setup so it determines if the server code is run or it just closes the connection but there is no way I can access the counter variable from within a runnable class thread when a client closes connection it should -1 from the variable
    thanks

  • Please I need help with my kobo and adobe

    I am authorized on both my computor and my koboglo and it goes into my reader fine but will not open (black cover). I keep getting a message that it is protected by DRM and is not authorized by my adobe id. It tells me to sign in with authorized id and try again. These are books from my local library. Can anyone help?

    I too have the same problem and have been waing for adobe for help for over a week.  there must be a better provider

  • Need help with intenet connection in east europe

    I've got as  a present blackberry 7130c, nice phone, but unfortunately in our country does not exist blackberry service.
    Everything works like a charm in this phone, besides internet, and MMS, I entered the APN, but it says: "data connection refuse", my service provider says bleckberry is unable to work with their internet settings.
    A few words about our network, we've got GPRS and EDGE here. it's GSM 900.
    So how to configure my blackberry to work properly?
    May be somone knows, I've got "cingular" version of 7130c.

    seems as you  did not understood the questtion.... I dont need to configure blackberry services  i just want to configure internet on my blackberry device in Moldova.
    Our  mobile operators does not have  blackberry services.
    Victor 

  • Need help with Vietnamese Text in Adobe Premiere CS4

    I just switch from PC to Mac and using Adobe CS4 to edit. Most of my client required Vietnamese Text for their wedding movies. On PC is very easy to type vietnamese text right on Adobe Premiere titles but in Mac is not. Anyone knows how to type vietnamese text in Premiere on Mac Please help. Thanks very much

    Try resetting your preferences.
    Easiest way I know is just delete the entire Preferences folder. Make sure PP and AME are both closed.
    If you have workspaces you want to save - not have to rebuild - then drag the entire Prefs folder out of Program Files.
    When you restart PP it will build a new prefs folder. You can then - one by one - import the saved workspaces from your old Prefs folder (and whatever else you want).

  • Need help with ODBC ...

    I'm new to this whole ODBC thing .. I'm supposed to make my software ODBC compliant, so that it's able to pass the data captured onto a CitectSCADA unit .. and i have no idea on how to get started .. can someone who is more experienced help ?
    I'm using vb.net.
    - Kumar

    If, as you indicated previously, you trying to write software that exposes an ODBC interface to your own data source, then yes, you would presumably want to write an ODBC driver. Based on your latest reply, though, I am not convinced that you are really trying to expose an ODBC interface to your own data source.
    Your program gets an XML feed and has to send the data to another system. Does the destination system expose an ODBC interface? Is there an ODBC driver for that other system? If you answer yes to either of those questions, it would seem that you are trying to use ODBC to write data into a database.
    Frankly, this is probably a question that ought to be addressed to whoever gave you your requirements in the first place. They are probably in a better position to explain the goals than we are.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

Maybe you are looking for

  • Share iPod over a network

    Hello. Will this work? I want to plug an iPod in my iBook (which contains zero mp3s) and share it over my schools network. Will this work? Right now I have my mp3s on my iBook but I want to transfer it to my pc for harddrive space. However, I like sh

  • HTML to RTF

    Hi all I rename an HTML to RTF and if I use WORD DOC I see what I want to see. If I use WORD PAD I see the HTML code.That's bad. Any usefull idea with xsl or sort of? Regards

  • Unauthorised in app purchase

    My 5 Yr old was playing a free game this morning.  When I returned from taking him to school I checked my emails and found that I had been charged for 3 in app purchases in a fee game I downloaded for him yesterday.  He does not know my itunes accoun

  • How to make actual file for TV Shows on ipod

    I have a 30g ipod, and I would like to know if it is possible to make a actual file for tv shows. When you go under video on the ipod, there is one for music videos, and one for movies, but when you set the videos to tv shows, it only shows up under

  • Tecra R10-10W - Can't create partition during installation

    I got Tecra R10-10W and I switched from Vista to XP. I used Windows XP Toshiba recovery disk for this. I was not able to create partition on hdd during the installation. I wonder did I miss something? How can I split my hdd into 2 parts? Should I re-