Webi Error - Driver not capable

Hello,
One of our users is getting "Driver not capable" error on 1 webi report, but can run another without the error. These 2 reports come off seperate BEx querier.
We have BO SP2 FP2.5.
SAP authentication is set on BO server and roles are imported.
All the universe connections are set to SSO.
BEx does not have any authorization variable.
There are some prompts created in the universe.
Any resolutions?
Thanks,
Nikhil

Hi Ingo,
The user gets the error while refreshing the webi report, after answering the prompts.
What do you mean by customized? I have created a couple of prompts in the universe.
I isolated the error to 1 objects "calendar day". if I have the object in my Webi query, the user gets the error. If I remove it from the webi query, the user can refresh the report without error.
BTW, the BEx query runs fine for the users with calander day.
We have another user getting the same error on 3 other reports. But none of them use calander day.
Nikhil

Similar Messages

  • Driver not capable error. Why?

    I try to access an Oracle 8i DB with the following code:
    <%@page language="java" import="java.sql.*"%>
    <%
    Driver DriverRecordset1 = (Driver)Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    Connection ConnRecordset1 = DriverManager.getConnection("jdbc:odbc:celsius","UID","PW");
    PreparedStatement StatementRecordset1 = ConnRecordset1.prepareCall("SELECT * FROM CELSIUS.PERSON");
    StatementRecordset1.setQueryTimeout(0);
    ResultSet Recordset1 = StatementRecordset1.executeQuery();
    boolean Recordset1_isEmpty = !Recordset1.next();
    boolean Recordset1_hasData = !Recordset1_isEmpty;
    int Recordset1_numRows = 0;
    %>
    But i always get an error : Driver not capable. Can anyone help.
    BTW how do i register the CLASSPATH for the oracle drivers lcated in the lib subdirectory of my JDeveloper??
    thanks in advance
    alex
    null

    go to project , project properties in main menu .
    click on add button next to java libraries ,
    you will see name of java libraries corresponding to the ones in ur jdev/lib dir

  • MS Query "Driver Not Capable" Error

    Has anyone experienced the error "Driver Not Capable" when trying to connect
    to a Citadel database from MS Query/Excel? I can get the query to work
    perfectly on one machine, but I installed a fresh copy of MS Office 97 on
    another machine and I get this error every time.
    If anyone knows how to fix this please reply.
    Thanks,
    Geoffrey B. Klotz
    GK Associates, Inc.
    TEL: (805) 523-8700
    FAX: (805) 523-1216
    EMAIL: [email protected]

    Make sure the "Use the Query Wizard..." option is unchecked in the 'Choose
    Data Source' dialog box when you are creating the query.
    Khalid
    "Geoffrey Klotz" wrote:
    >Has anyone experienced the error "Driver Not Capable" when trying to connect
    to a Citadel database from MS Query/Excel? I can get the query to work>perfectly
    on one machine, but I installed a fresh copy of MS Office 97 on>another machine
    and I get this error every time.
    If anyone knows how to fix this please reply.
    Thanks,
    --Geoffrey B. Klotz
    GK Associates, Inc.
    TEL: (805) 523-8700
    FAX: (805) 523-1216
    EMAIL: [email protected]

  • Driver not capable error

    Hai,
    I am facing the problem in websphere,
    [4/21/08 12:42:41:296 IST] 00000038 SystemOut O java.sql.SQLException: [TimesTen][TimesTen 7.0.4.0.0 ODBC Driver]Driver not capable
    I configured Websphere Datasource to Timesten database using direct driver, passthrough=3.
    Can you please tell me what is the solution for this problem.

    This is the Java Script calling Stored procedure SP_CHK_TIMESTEN,
    String m_no = "1001";
                   System.out.println(m_no);
                   String m_name = "DBA";
                   System.out.println(m_name);
              stmt = connDB.prepareCall("call SP_CHK_TIMESTEN(?,?,?)");
                   stmt.setString(1,m_no);
                   stmt.setString(2,m_name);
                   stmt.registerOutParameter(3, Types.VARCHAR);     
                   stmt.execute();
                   System.out.println(stmt.getString(3));
                   /* while(rs1.next())
                        System.out.println(rs1.getString(1));
                   catch(Exception e)
                        System.out.println("Exception in mschema "+e);
    And this is the error i am facing in Websphere,
    77ad48d0 PrivExAction W J2CA0114W: No container-managed authentication alias found for connection factory or datasource Data source 1.
    [4/24/08 19:13:37:500 IST] 77ad48d0 SystemOut O Timesten Check2
    [4/24/08 19:13:37:500 IST] 77ad48d0 SystemOut O com.ibm.ws.rsadapter.jdbc.WSJdbcDataSource@52f648c1
    [4/24/08 19:13:37:500 IST] 77ad48d0 SystemOut O 1001
    [4/24/08 19:13:37:500 IST] 77ad48d0 SystemOut O DBA
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O Exception in mschema java.sql.SQLException: [TimesTen][TimesTen 7.0.4.0.0 ODBC Driver]Driver not capable
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O LSIL
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O bank12
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O 192.168.1.81
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O GOKULNATH
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O Timesten Check4
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O Timesten Check5
    [4/24/08 19:13:39:266 IST] 77ad48d0 SystemOut O Timesten Check6
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R java.sql.SQLException: [TimesTen][TimesTen 7.0.4.0.0 ODBC Driver]Driver not capable
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbc.createSQLException(JdbcOdbc.java:3187)
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbc.standardError(JdbcOdbc.java:3321)
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbc.standardError(JdbcOdbc.java:3286)
    [4/24/08 19:13:39:281 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbc.SQLBindOutParameterString(JdbcOdbc.java:252)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbcCallableStatement.registerOutParameter(JdbcOdbcCallableStatement.java:233)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.timesten.jdbc.JdbcOdbcCallableStatement.registerOutParameter(JdbcOdbcCallableStatement.java:134)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.rsadapter.jdbc.WSJdbcCallableStatement.registerOutParameter(WSJdbcCallableStatement.java:611)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at lsi.common.ob.entry.SPAccessManager.getSpValue(SPAccessManager.java:1198)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at lsi.common.ob.entry.XMLHTTPListener.doPost(XMLHTTPListener.java:79)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:983)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:564)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:200)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:119)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:276)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    [4/24/08 19:13:39:391 IST] 77ad48d0 SystemErr R      at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)

  • Err: CLI0150E Driver not capable. SQLSTATE=S1C00 when dragging a table...

    <p>Hello everyone,</p><p> first i wanna tell you that I love your CR4E product! You did an awesome job!</p><p> Now, I am having a problem with creating a report using DB2 data. I have a ODBC connection, and I successfully connect to DB2. I can see all the tables; however, when I try to see sample data from a table i get java.sql.SQLException: General error message.</p><p>Also, if I try to drag a table to a report it gives me  CLI0150E Driver not capable. SQLSTATE=S1C00 error.</p><p> </p><p>I have downloaded new DB2 drivers, and when i create a new Data connection I pick db2jcc.jar file.</p><p>I really dont know what the problem is.</p><p>Please help.</p><p>thanks,</p><p> </p><p>nn </p>

    <p>Hi, you mention that you have an ODBC connection, but you also talk about connecting to the db2jcc.jar, can you provide me with some more details regarding what your database connection string looks like in the Database Explorer view? Are you connecting to the ODBC DSN using the JDBC driver or connecting directly to the DB2 server? We have tested the DB2 connections with CR4E so it should work without too many issues. Unfortunately, I do not have a DB2 server installed on my machine and I am on the road this week so I cannot test this at this time. However, I will give this a try when I get in next week against our test database servers and let you know the connection details that we used for our testing. In the meantime any more detail you can give me on exactly how you are setting up your connection will be useful. <br /></p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>          </p>

  • Driver not capable

    My Delphi application runs fine on Oracle8 and Oracle9 (SQLServer, Informix, Sybase, Access) databases but when connecting to an Oracle7.34 database the ODBC driver (Oracle2.05.03.01B)(Manager 3.520.5303.2) returns; "Oracle][ODBC Oracle Driver] Driver not capable".
    I'm using the following connection settings for all databases: CursorLibrary = UseODBC, IsolationLevel = ReadCommitted, CursorType = Static, ConcurrencyType = Values.
    Any ideas?

    Oracle 7.3.4 is pretty old and has been unsupported for some time. It would surprise me if things that work with Oracle 9i don't work with 7.3.4.
    Cheeers, APC

  • Web cam driver not found

    i have a hp pavillion dv6700 laptop,product no is KD311PA#ACJ.ITS WEB CAM IS NOT WORKING.i tried using youcam n lenovo web cam but no help.also the driver for this computer is also not displayed on your hp site. i'm currently using windows7 as os.

    Hi anshikatandon7,
    Here's a good place to start, information on how to find your webcam software and downloads and more. Post back if you have any questions!
    Say "thanks" by clicking the Kudos thumbs up!
    Was your question answered? Mark it as an Accepted Solution!
    I work on behalf of HP

  • Solaris 8 on netra T1 error - drive not ready

    Hi I am hoping someone can help shed light on a problem we have encountered. I inherited a couple of very old netra t1 with solaris 8 on them.  We had a major power outage whcih resulted in an issue with this server coming backup.  On first looking at it i was able to get into the server via lom command prompt, i ran the power down command to gracefully shutdown and reboot but on starting backup the server is reporting 'drive not ready' and just hangs at this point.
    apologies but i am a solaris novice, any help would be much appreciated. I am hoping this is something trivial....
    thanks.

    Just to update we suffered another power outage and returned to look at hte server to find different error messages appearing, this time the server was giving me the option to try and boot or go into single user mode, which i did and ran the metastat and got the following:-
    # metastat
    d50: Mirror
        Submirror 0: d0
          State: Okay
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 43846353 blocks
    d0: Submirror of d50
        State: Okay
        Size: 43846353 blocks
        Stripe 0:
            Device              Start Block  Dbase State        Hot Spare
    WARNING: /pci@1f,0/pci@1/scsi@8/sd@1,0 (sd1):
            Error for Command: load/start/stop         Error Level: Retryable
            Requested Block: 0                         Error Block: 0
            Vendor: SEAGATE                            Serial Number:
            Sense Key: Not Ready
            ASC: 0x4 (LUN not ready), ASCQ: 0x0, FRU: 0x2
    WARNING: /pci@1f,0/pci@1/scsi@8/sd@1,0 (sd1):
            Error for Command: load/start/stop         Error Level: Retryable
            Requested Block: 0                         Error Block: 0
            Vendor: SEAGATE                            Serial Number:
            Sense Key: Not Ready
            ASC: 0x4 (LUN not ready), ASCQ: 0x0, FRU: 0x2
    WARNING: /pci@1f,0/pci@1/scsi@8/sd@1,0 (sd1):
            Error for Command: load/start/stop         Error Level: Retryable
            Requested Block: 0                         Error Block: 0
            Vendor: SEAGATE                            Serial Number:
            Sense Key: Not Ready
            ASC: 0x4 (LUN not ready), ASCQ: 0x0, FRU: 0x2
    WARNING: /pci@1f,0/pci@1/scsi@8/sd@1,0 (sd1):
            Error for Command: load/start/stop         Error Level: Retryable
            Requested Block: 0                         Error Block: 0
            Vendor: SEAGATE                            Serial Number:
            Sense Key: Not Ready
            ASC: 0x4 (LUN not ready), ASCQ: 0x0, FRU: 0x2
    WARNING: /pci@1f,0/pci@1/scsi@8/sd@1,0 (sd1):
            offline
    c0t0d0s0                   0     No Okay
    d51: Mirror
        Submirror 0: d1
          State: Okay
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 8389656 blocks
    d1: Submirror of d51
        State: Okay
        Size: 8389656 blocks
        Stripe 0:
            Device              Start Block  Dbase State        Hot Spare
    c0t0d0s1                   0     No Okay
    d53: Mirror
        Submirror 0: d3
          State: Okay
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 4194828 blocks
    d3: Submirror of d53
        State: Okay
        Size: 4194828 blocks
        Stripe 0:
            Device              Start Block  Dbase State        Hot Spare
    c0t0d0s3                   0     No Okay
    d54: Mirror
        Submirror 0: d4
          State: Okay
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 8340543 blocks
    d4: Submirror of d54
        State: Okay
        Size: 8340543 blocks
        Stripe 0:
            Device              Start Block  Dbase State        Hot Spare
    c0t0d0s4                   0     No Okay
    d55: Mirror
        Submirror 0: d5
          State: Okay
        Pass: 1
        Read option: roundrobin (default)
        Write option: parallel (default)
        Size: 6292242 blocks
    d5: Submirror of d55
        State: Okay
        Size: 6292242 blocks
        Stripe 0:
            Device              Start Block  Dbase State        Hot Spare
            c0t0d0s5                   0     No Okay
    d10: Concat/Stripe
        Size: 43846353 blocks
        Stripe 0:
            Device              Start Block  Dbase
    c0t1d0s0                   0     No
    d11: Concat/Stripe
        Size: 8389656 blocks
        Stripe 0:
            Device              Start Block  Dbase
    c0t1d0s1                   0     No
    d13: Concat/Stripe
        Size: 4194828 blocks
        Stripe 0:
            Device              Start Block  Dbase
    c0t1d0s3                   0     No
    d14: Concat/Stripe
        Size: 8340543 blocks
        Stripe 0:
            Device              Start Block  Dbase
    c0t1d0s4                   0     No
    d15: Concat/Stripe
        Size: 6292242 blocks
        Stripe 0:
            Device              Start Block  Dbase
      c0t1d0s5                   0     No

  • Save for Web error: Could not complete operation

    Hi everyone.
    I'm having trouble using the Save For Web function on Photoshop CS6. The initial dialog opens fine and I can select any file type to save to etc.
    Once I click 'Save...' I get the error "Could not complete this operation. An unknown operating system error has occurred."
    I have looked up this error and from previous threads I have tried deleting the Save for Web library files and restarting, however this doesn't work (Unless I am deleting the wrong file?).
    I'm running a 2.6 GHz Retina Macbook Pro with the latest update installed for Photoshop. I have 16 GB ram.
    Strangely, I have a PC running the same version of Photoshop CS6 and it works fine for this function.
    Any idea what this could be? I have posted my system info below.
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64
    Operating System: Mac OS 10.8.2
    System architecture: Intel CPU Family:6, Model:58, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 2600 MHz
    Built-in memory: 16384 MB
    Free memory: 9800 MB
    Memory available to Photoshop: 14647 MB
    Memory used by Photoshop: 70 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 (Sep 20 2012 17:42:28)
    OpenGL Version: 2.1
    Video Rect Texture Size: 16384
    OpenGL Memory: 980 MB
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GT 650M OpenGL Engine
    Display: 2
    Display Depth: 32
    Display Bounds: top=-73, left=-1920, bottom=1127, right=0
    Video Renderer ID: 16918087
    Video Card Memory: 1024 MB
    Display: 1
    Main Display
    High DPI Monitor
    Display Depth: 32
    Display Bounds: top=0, left=0, bottom=900, right=1440
    Video Renderer ID: 16918087
    Video Card Memory: 1024 MB
    Serial number: 90970206655000210709
    Application folder: /Applications/Adobe Photoshop CS6/
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 233.0G, 70.2G free
    Required Plug-ins folder: /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/
    Primary Plug-ins folder: /Applications/Adobe Photoshop CS6/Plug-ins/
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.20743   66.507768
       AdobeAGM.framework   AdobeAGM   4.26.20.20743   66.507768
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.20743   66.507768
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.507768
       AdobeCoolType.framework   AdobeCoolType   5.10.33.20743   66.507768
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120720  
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206  
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   5.0.4   79.517869
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   7.0.0.1686  
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1  
       amtlib.framework   amtlib   6.0.0.75  
       boost_date_time.framework   boost_date_time   6.0.0.0  
       boost_signals.framework   boost_signals   6.0.0.0  
       boost_system.framework   boost_system   6.0.0.0  
       boost_threads.framework   boost_threads   6.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.1.0.20577   146758
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0  
       dvacore.framework   dvacore   6.0.0.0  
       dvamarshal.framework   dvamarshal   6.0.0.0  
       dvamediatypes.framework   dvamediatypes   6.0.0.0  
       dvaplayer.framework   dvaplayer   6.0.0.0  
       dvatransport.framework   dvatransport   6.0.0.0  
       dvaunittesting.framework   dvaunittesting   6.0.0.0  
       dynamiclink.framework   dynamiclink   6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1681  
       mediacoreif.framework   mediacoreif   6.0.0.0  
       PlugPlug.framework   PlugPlug   3.0.0.383  
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework        
    Required plug-ins:
       3D Studio 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 7.3 (71), Copyright © 2012 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2002-2012 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1997-2012 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Entropy 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2001-2012 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       STL 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.1.2 20130105.r.224 2013/01/05:23:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       FontShop
       GuideGuide
       Kuler
    Installed TWAIN devices: NONE

    I found the solution (took forever to consolidate all the answers) for OS X 10.9 + Maverick. Finally!
    1. Change permissions (as AOTPR says) to your User/Library/Preferences file so that your admin and user (the one you are using) has read + write permissions within the Get Info pane (command+I). You may have to add them with the sign.
    2. Delete Adobe save for web 12.0 Prefs & Adobe save for web 13.0 Prefs files within the User/ Library/ Preferences folder. These may be hidden for some people, so when in a finder window, hold Option(alt) and click Go from the main top menu (keep holding Option/Alt) and click Library — the full Preferences folder should open for you.
    3. Change the view when in Save for web pane in PS. If you have it in Cover Flow — it won't work. Change it to another view like List or Columns view.
    Presto! Works for me on Maverick.
    Thank god. It took forever to get this cleared up!!
    If you have any questions, email me [email protected]

  • WR DVD Drive not capable of writing

    i have a ThinkPad W520 (4276-37U).   In the product spec it says the following regarding the DVD drive "CDRW/DVDRW",  which I assume means read / write.   I'm trying to burn and ISO image to a DVD.    Windows reports that the drive is not capable of writing and infact the device driver says ROM in the description
    "Optiarc DVD ROM DDU7710H SCSI CdRom Device"
    Do I have the wrong driver?   If so,  please point me to the correct RW driver because I have not been able to find it on your site.    If not,   how do I get the drive I purchased?

    You need to buy a DVD-RW or DVD+RW. DVD-R or DVD+R is not writeable. You probably inserted a DVD+R or DVD-R. Or maybe it was written already.
    Jonas
    Microsoft MVP: Windows Consumer Expert
    Yoga Tablet 2 10 || ThinkPad X1 Carbon (20A7007MPH) || ThinkPad Helix (3698-6EU) || IdeaCentre B540
    Twitter: @jonashendrickx

  • WEBI Error " Universe not found"

    When refreshing a webi report from infoview on QA client I get the following error; Universe not found, see your business objects  administrator (Error: WIS 00501).
    Anybody with a suggestion please help

    Hi,
    When using the migration wizard, you may experience this error when trying to run a Web Intelligence report.
    u201CUniverse not found (Error WIS 00501)u201D
    One quick solution that seems to work for me is that you need to:
    1. close the u201CUniverse not found (error WIS 00501)u201D error message
    2. Save the webi report
    3. close the browser
    4. Re-open the report and try again
    Also try changing the user preferences and check u201Cno default universeu201D and that may allow the report to work.

  • The database error text is: (CS) "Driver not capable" (WIS 10901)

    Hi all,
    We have an OLAP universe basically built on BW query and we are creating a web intelligence report on it. We added a new field to the cube "Date Changed" the infoobject used is delivered 0CPR_CHON which has 0DATE as ref. characteristic.
    When we used this dimension in webi it came over as characteristic rather than date so we went to the universe and changed the properties to Date and we have started getting this error. I looked up and there are some notes and posts on this and apparently it is not supported by SAP.
    Has anyone found a workaround? Another thing I am confused is ...in the same cube we have Valid From and valid to dates and those dimensions come over as dates in webi..so what is different between the two?
    If I create a new universe on this same connection (query) then it does come over as date so how can we make it working on old universe?
    Thanks.

    Hi Henry,
    0CPR_CHON is attribute of changed version but how would that matter....it is used as standalone infooobject in the cube and that is the reason it coming over as dimension by default but the type is coming over as Char...instead of Date.
    I am making that to date and getting that error. It works if I build the universe all over again (brand new).
    These are some of the notes: 1457821,1184983, 1432272, 1384547, 1407631, 1466213.
    Thanks,

  • When i execute this code i get an error " SQLException: Driver not capable"

    Hi,
    I have a piece of code that should update DB2 Database
    The code is as follows :
    try {
    con = DriverManager.getConnection(url,"administrator", "PCTEAM2000");
    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
         ResultSet.CONCUR_UPDATABLE);
    ResultSet uprs = stmt.executeQuery("SELECT * FROM GEETHA");
    uprs.moveToInsertRow();
    uprs.updateString("NAME", "Kona");
    uprs.insertRow();
    uprs.moveToInsertRow();
    uprs.updateString("NAME", "SAI");
    uprs.insertRow();
    uprs.beforeFirst();
    while (uprs.next())
    String s = uprs.getString("NAME");
    }uprs.close();
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    Thanks

    con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.);
    some drivers wont support CONCUR UPDATABLE...
    by defualt all drivers are TYPE_SCROLL_SENSITIVE.so its not a problem.
    check your driver documentation whether is support CONCUR_UPDATABLE r not.
    chek for jdbc 3.0 complaint jdbc driver ..
    sree

  • Eclipse plug-in error - driver not found error with DB2

    Hi,
    i am using websphere studio developer and the kodo 3.0 implementation.
    I have set up the kodo plug in and i get an error when i try to create the
    database schema:
    kodo.util.FatalDataStoreException: No suitable driver
    It can't find the DB2 driver. This is the information I have in the kodo
    properties:
    javax.jdo.option.ConnectionDriverName: COM.ibm.db2.jdbc.app.DB2Driver
    javax.jdo.option.ConnectionURL: jdbc:db2:baokodo
    The DB2 driver jar is in the kodo eclipse plugin directory and I am
    referencing this jar file in the plugin xml file.

    The plug in is finding the driver class but it does not like the driver
    for some reason. It tells me no suitable driver found.
    Here is my plugin.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <plugin id="kodo"
         name="%name"
         version="1.0.1"
         provider-name="%provider-name"
         class="kodo.jdbc.integration.eclipse.KodoPlugin">
         <runtime>
              <library name="db2java.jar"/>
              <library name="kodo-jdo.jar"/>
              <library name="jakarta-commons-collections-2.1.jar"/>
              <library name="jakarta-commons-lang-1.0.1.jar"/>
              <library name="jakarta-commons-logging-1.0.3.jar"/>
              <library name="jakarta-commons-pool-1.0.1.jar"/>
              <library name="jakarta-regexp-1.1.jar"/>
              <library name="jca1.0.jar"/>
              <library name="jdbc2_0-stdext.jar"/>
              <library name="jdo-1.0.1.jar"/>
              <library name="jta-spec1_0_1.jar"/>
              <library name="xalan.jar"/>
              <library name="xercesImpl.jar"/>
              <library name="xml-apis.jar"/>
              <library name="jfreechart-0.9.13.jar"/>
              <library name="jcommon-0.8.8.jar"/>
         </runtime>
         <requires>
              <import plugin="org.eclipse.ui"/>
              <import plugin="org.eclipse.core.resources"/>
              <import plugin="org.eclipse.jdt.core"/>
              <import plugin="org.eclipse.jdt.launching"/>
         </requires>
         <extension point="org.eclipse.ui.actionSets">
              <actionSet id="kodo.jdbc.integration.eclipse.actionSet"
                   label="%action-set-name"
                   visible="true">
                   <menu id="kodo.menu"
                        label="%group-label">
                        <separator name="baseGroup"/>
                   </menu>
                   <action id="kodo.removeBuilder"
                        label="%remove-builder-label"
              class="kodo.jdbc.integration.eclipse.RemoveBuilderAction"
                        tooltip="%remove-builder-tooltip"
                        menubarPath="kodo.menu/baseGroup"
                        enablesFor="1">
                   </action>
                   <action id="kodo.addbuilder"
                        label="%add-builder-label"
                   class="kodo.jdbc.integration.eclipse.AddBuilderAction"
                        tooltip="%add-builder-tooltip"
                        menubarPath="kodo.menu/baseGroup"
                        enablesFor="1">
                   </action>
                   <action id="kodo.mapping.build"
                        label="%mapping-build-label"
                        tooltip="%mapping-build-tooltip"
                   class="kodo.jdbc.integration.eclipse.MappingToolAction$BuildSchema"
                        icon="icons/BuildSchemaMappingTool.gif"
                        menubarPath="kodo.menu/baseGroup"
                        toolbarPath="Normal/Kodo"
                        enablesFor="1">
                        <selection class="org.eclipse.core.resources.IFile"
                             name="*.jdo">
                        </selection>
                   </action>
                   <action id="kodo.mapping.drop"
                        label="%mapping-drop-label"
                        tooltip="%mapping-drop-tooltip"
                        class="kodo.jdbc.integration.eclipse.MappingToolAction$Drop"
                        icon="icons/DropMappingTool.gif"
                        menubarPath="kodo.menu/baseGroup"
                        toolbarPath="Normal/Kodo"
                        enablesFor="1">
                        <selection class="org.eclipse.core.resources.IFile"
                             name="*.jdo">
                        </selection>
                   </action>
                   <action id="kodo.mapping.refresh"
                        label="%mapping-refresh-label"
                        tooltip="%mapping-refresh-tooltip"
              class="kodo.jdbc.integration.eclipse.MappingToolAction$Refresh"
                        icon="icons/RefreshMappingTool.gif"
                        menubarPath="kodo.menu/baseGroup"
                        toolbarPath="Normal/Kodo"
                        enablesFor="1">
                        <selection class="org.eclipse.core.resources.IFile"
                             name="*.jdo">
                        </selection>
                   </action>
                   <action id="kodo.enhance"
                        label="%enhance-label"
                        icon="icons/EnhancerAction.gif"
                   class="kodo.jdbc.integration.eclipse.EnhancerAction"
                        tooltip="%enhance-tooltip"
                        menubarPath="kodo.menu/baseGroup"
                        toolbarPath="Normal/Kodo"
                        enablesFor="1">
                        <selection class="org.eclipse.core.resources.IFile"
                             name="*.jdo">
                        </selection>
                   </action>
              </actionSet>
         </extension>
         <!-- lock our actions into the base perspective -->
         <extension point="org.eclipse.ui.perspectiveExtensions">
              <perspectiveExtension targetID="org.eclipse.ui.resourcePerspective">
                   <actionSet
                        id="kodo.jdbc.integration.eclipse.actionSet">
                   </actionSet>
              </perspectiveExtension>
         </extension>
         <!-- put our extensions in -->
         <extension point="org.eclipse.ui.preferencePages">
              <page name="%preference-name"
                   class="kodo.jdbc.integration.eclipse.KodoPreferencePage"
                   id="kodo.jdbc.integration.eclipse.preferences.KodoPreferencePage">
              </page>
         </extension>
         <!-- lock in our eclipse-generated xml editor -->
         <extension point="org.eclipse.ui.editors">
              <editor name="%mappingeditor-name" extensions="mapping"
                   icon="icons/mapping.gif"
                   contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
                   class="kodo.jdbc.integration.eclipse.editor.XMLEditor"
                   id="kodo.jdbc.integration.eclipse.editor.XMLEditorMapping">
              </editor>
              <editor name="%editor-name" extensions="jdo,schema"
                   icon="icons/metadata.gif"
                   contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
                   class="kodo.jdbc.integration.eclipse.editor.XMLEditor"
                   id="kodo.jdbc.integration.eclipse.editor.XMLEditor">
              </editor>
         </extension>
         <!-- lock in our "view" -->
         <extension point="org.eclipse.ui.views">
              <view id="kodo.jdbc.integration.eclipse.KodoView"
                   name="%view-name"
                   category="org.eclipse.jdt.ui.java"
                   icon="icons/kodosmall.gif"
                   class="kodo.jdbc.integration.eclipse.KodoView">
              </view>
         </extension>
         <!-- lock in our builder -->
         <extension point="org.eclipse.core.resources.builders"
              id="kodo.jdbc.integration.eclipse.EnhancerBuilder"
              name="%builder-name">
              <builder>
                   <run
                   class="kodo.jdbc.integration.eclipse.EnhancerBuilder">
                   </run>
              </builder>
         </extension>
         <!-- put our view onto the bottom bar -->
         <extension point="org.eclipse.ui.perspectiveExtensions">
              <perspectiveExtension
                   targetID="org.eclipse.debug.ui.DebugPerspective">
                   <view id="kodo.jdbc.integration.eclipse.KodoView"
                        relative="org.eclipse.debug.ui.ExpressionView"
                        relationship="stack"/>
                   <viewShortcut id="org.eclipse.jdt.debug.ui.DisplayView"/>
              </perspectiveExtension>
         </extension>
    </plugin>
    Here is the kodo.properties file:
    # Kodo JDO Properties configuration
    # To evaluate or purchase a license key, visit http://www.solarmetric.com
    kodo.LicenseKey: xxxxxxx
    javax.jdo.PersistenceManagerFactoryClass:
    kodo.jdbc.runtime.JDBCPersistenceManagerFactory
    javax.jdo.option.ConnectionDriverName: COM.ibm.db2.jdbc.app.DB2Driver
    javax.jdo.option.ConnectionUserName: db2admin
    javax.jdo.option.ConnectionPassword: db2admin
    javax.jdo.option.ConnectionURL: jdbc:db2:baokodo
    javax.jdo.option.Optimistic: true
    javax.jdo.option.RetainValues: true
    javax.jdo.option.NontransactionalRead: true
    # By default, Kodo stores object-relational mapping information in .mapping
    # files. Other common options are storing the information in a special
    # database table Kodo creates or as extensions in JDO metadata. Uncomment
    # one of the properties below to use one of these options. See the
    reference
    # guide for a full list of mapping factories to choose from.
    #kodo.jdbc.MappingFactory: db
    #kodo.jdbc.MappingFactory: metadata
    # Kodo provides a management / monitoring capability. It can be enabled
    # locally (in the same JVM) by setting the kodo.ManagementUI property to
    # "gui". Remote management / monitoring can be enabled by setting the
    # kodo.ManagementServer property, and by running the remotemanagementtool
    # in another process.
    # kodo.ManagementUI: gui
    # kodo.ManagementServer: true(host="localhost",port=1234)
    Stephen Kim wrote:
    Can you post your plugin.xml? We have tested against WebSphere Studio 4
    and 5.
    TD wrote:
    I am specifying a properties file in the preferences pane.
    Still not sure why this doesn't work...
    Have you been able to get it to work in websphere studio.
    Stephen Kim wrote:
    The plugin does not use any kodo.properties by default. You have to
    configure it through the Preferences pane (which you can point to your
    kodo.properties file)
    TD wrote:
    Hi,
    i am using websphere studio developer and the kodo 3.0 implementation.
    I have set up the kodo plug in and i get an error when i try to create the
    database schema:
    kodo.util.FatalDataStoreException: No suitable driver
    It can't find the DB2 driver. This is the information I have in the kodo
    properties:
    javax.jdo.option.ConnectionDriverName: COM.ibm.db2.jdbc.app.DB2Driver
    javax.jdo.option.ConnectionURL: jdbc:db2:baokodo
    The DB2 driver jar is in the kodo eclipse plugin directory and I am
    referencing this jar file in the plugin xml file.
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • DVD-RW for Satellite 2800-500: IDE1 error, drive not recognized

    Installation of a DVDRW slim drive NEC ND6500 has caused an "IDE1 error" message on boot and the drive was not recognized.
    Would the Toshiba SD-R6472 DVDRW drive be compatible with my Satellite 2800-500?
    Does anyone know a way to make anyone of them work?
    [Edited by: admin on 22-Jul-05 17:57]

    If you took some effort in reading this:
    http://www.cdrinfo.com/Forum/tm.asp?m=84345&mpage=15??
    you would have known already.
    Well, you always have people who know better, and ofcourse there are always people who know better....
    (euh, never mind, hihi)
    Ok about the IDE error.
    Vasdiak has an ide error-notification.
    I didn't.
    In my case it was not recognized with the ND6500 connected and the 2nd controller dissapeared in bios and OS.
    Nevertheless was there the same solution for what appeared the same problem.
    This (and reading lot's of info on the web) got me thinking.
    In case of NEC equipment(and maybe other brands as well) basically you have to look for a real OEM drives, which are configured as Master/Slave
    Bulk & Retail drives are most of the time deliverd as CLS (even though retailers/dealers say otherwise), and that's no good for Satellite Pro 4600 (and many other toshiba laptops).
    Just to cut to the chase:
    The GNR-version of the NEC-ND6500A will work in a Toshiba Satellite Pro 4600 (2100 & 6100 too, and I think many more will).
    As for the Toshiba SD-R6472 DVDRW:
    My guess is it's the same problem with the same solution:
    1.Buy a Master/Slave configured drive OR
    2.modify it yourself by:
    2a.soldering pin45&47 together (like I did).
    2b.flashing the proper firmware (which is not always available/hard to get), which will result in reversed ATA.
    Problem is that the NEC, Toshiba and many others do NOT sell (real)OEM-parts to the end-users, even though many retailers believe they do.
    But that's merely because of the lack of consensus on how to interpret the meaning of "OEM".
    Fact is that many retailers sell bulk-parts as if there where OEM, but that's wrong !
    In my particular case:
    I bought a NEC-ND6500A which was OEM-specified on the website (dealer), and after informing with the dealer I bought the drive.
    The NEC did not work and I,amongst a lot of other things -->, contacted NEC.
    I mentioned the "OEM-story" and NEC explained.
    They won't deliver GNR-version to the end user, but he also told me the reverse ATA trick and send the proper firmware via email.
    Then again I decided not to use reverse-ATA-firmware because it cannot be undone, and there is less available firmware in reverse-ATA mode (no problem if you want to use official firmware only, by the way).
    To make things more confusing:
    GEN-version is specified as master, also by Nec, but the Toshiba does not cope with it well.
    And so do a lot of other laptops that cannot recognize CSEL-drives (which it really is !!).
    Kinds of errors one can get: IDE-error, unpredictable behaviour, no DMA possible, etc...
    The GNR-version (or GEN-version with soldering trick or reverse ATA-firmware) IS however recognized as master (or slave) drive on the 2nd controller....
    Enfin, if people here are really interested in solving their problem I think I really got them started here.
    My advise: put some effort into it (by reading link above and search the web).
    Good luck to y'all !
    Ger

Maybe you are looking for

  • How to get the filename of the current active document in InDesign CS4?

    Hi, If I open a document from File->Open, I can get the document's file name using IOpenedFileInfo->GetOpenedFilePath(). But, if I create a new document and perform File->SaveAs, GetOpenedFilePath is returning invalid IDFile reference. What is the ri

  • PSE 10 Multiple crashes on Windows 7 & restore hangs up

    multiple crashes of Photoshop Elements 10 on Windows 7.  Also, restore gets hung up saying the hard drive or flash drive used needs new firmware installed.  Any ideas?

  • Moving columns in an internal table

    Hi Gurus, I have this ALV program which displays the cost element and its corresponding groups (up to 10th level only). My problem is on how to display the report where the first column is the cost element and the succeeding columns the cost element

  • Override page size??

    Hello, I am creating postscript files to be converted into pdfx. They will then be plotted on roll plotters. In that context page size doesn't really have any meaning. I know how big my document is and I would like the page size to be the size of the

  • Problem on propose aggregate from query

    hi experts I want to propose aggregate from query, but in the pop up window, i can't find my query, but the query does really exits, why?