Cache Connect TimesTen v7.0.5 and Oracle DB 11.1g error

I tested Cache Connect on HP-UX v11.31. I have error when running the command
"call ttCacheUidPwdSet" with error "Cannot load backend library
'libclntsh.so' for Cache Connect." as below:
$ sh bin/ttIsql demo
Copyright (c) 1996-2008, Oracle. All rights reserved.
Type ? or "help" for help, type "exit" to quit ttIsql.
All commands must end with a semicolon character.
connect "DSN=demo";
Enter password for 'testuser':
Connection successful:
DSN=demo;UID=testuser;DataStore=/home/timesten/demo;DatabaseCharacterSet=US7ASCII;ConnectionCharacterSet=US7ASCII;DRIVER=/etc/TimesTen/timesten70/lib/libtten.so;OracleId=demodb;PermSize=128;TempSize=128;TypeMode=0;
(Default setting AutoCommit=1)
Command> call ttCacheUidPwdSet('testuser','testuser');
5102: Cannot load backend library 'libclntsh.so' for Cache Connect. OS
error message 'Unsatisfied code symbol 'sem_destroy' in load module
'/u01/app/oracle/product/11.1.0/lib/libclntsh.so'.'.
The command failed.
Command>
We use Timesten version 7.0.5, Oracle Enterprise Database 11.1g, HP-UX
Itanium 64bit v11.31, Oracle Client 11.1g.
ORACLE_HOME=/u01/app/oracle/product/11.1.0/
I have tried for several days but to no results. Please advise how to solve the problem. Thank you very much

Dear all,
I have found a solution for this error. We could use Oracle 10.2 g on HP-UX v11.31. However, when you do the installation, command will be: "./runInstaller -ignoreSysPrereqs".
The steps to install oracle client are following ( $ORACLE_CLIENT_HOME):
1) su - oracle
2) Download Oracle 10.2g HP-UX Itanium "10gr2_client_hpi.zip"
3) unzip the file : "jar xvf 10gr2_client_hpi.zip " . The new folder name "client"
4) cd client; ./runInstaller -ignoreSysPrereqs
After that, you need to remove the $ORACLE_HOME/lib/libclntsh.so and link to new file
5) rm $ORACLE_HOME/lib/libclntsh.so
6) ln -s $ORACLE_CLIENT_HOME/lib/libclntsh.so.10.1 $ORACLE_HOME/lib/libclntsh.so
7) export LD_LIBRARY_PATH=$ORACLE_CLIENT_HOME/lib:$TIMESTEN_HOME/lib:$ORACLE_HOME/lib
8) export PATH=$ORACLE_CLIENT_HOME/bin:$PATH
Then you need to restart the TimesTen Daemon so that it could get the new system parameters
9) ttDaemonAdmin -restart
if you do not restart the TimesTen Daemon, you could get the error:
Command> call ttCacheStart;
10024: Could not start cache agent for the requested data store. Could not initialize OCI function pointers. Error: none
The command failed.
And finally, the CacheConnect is up
$ ttIsql demo
Copyright (c) 1996-2008, Oracle. All rights reserved.
Type ? or "help" for help, type "exit" to quit ttIsql.
All commands must end with a semicolon character.
connect "DSN=demo";
Enter password for 'testuser':
Connection successful: DSN=demo;UID=testuser;DataStore=/home/timesten/demo;DatabaseCharacterSet=US7ASCII;ConnectionCharacterSet=US7ASCII;DRIVER=/etc/TimesTen/timesten70/lib/libtten.so;OracleId=demodb;PermSize=128;TempSize=128;TypeMode=0;
(Default setting AutoCommit=1)
Command> call ttCacheUidPwdSet('testuser','testuser');
Command> call ttCacheStart;
Command> CREATE READONLY CACHE GROUP readcache
AUTOREFRESH INTERVAL 5 SECONDS
FROM readtab
(a NUMBER NOT NULL PRIMARY KEY, b VARCHAR2(31));Command> LOAD CACHE GROUP readcache COMMIT EVERY 256 ROWS;
2 cache instances affected.
Command> SELECT * FROM readtab;
< 1, hello >
< 2, world >
2 rows found.
Command>
Thank you for all of your help.

Similar Messages

  • How to connect using netbean 6.5 and oracle lite 10g

    Hello everyone.. I am really really new in this kind of thing. My task is that I need to develop a simple system using netbean and oracle lite 10g..Does anyone can at least give me a little bit tutorial for a head start in order to connect them.. I really appreciate for those who answer this.. Thank you guys...

    you mean to connect from java to oracle lite server or client?
    -if it is server you mean then you probably need to run some oracle apis (e.g. the consolidator aps).
    String url="MOBILEADMIN/123@jdbc:oracle:thin:@MYSERVER:1521:MYDB" ;
    ResourceManager.initialize(url);
    rm = ResourceManager.getInstance();
    User usr = rm.getUser(user);
    for (Enumeration e = usr.getDevices(); e.hasMoreElements();) {
    Device dev = (Device)e.nextElement();
    }//AND you may continue from here in order to send commands to the devices
    -if you have a oracle repository at the back end and you want to connect to that then you can connect like:
    DriverManager.registerDriver ((Driver)Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance ());
    String url="jdbc:oracle:thin:@myserver:port:database;
    c=DriverManager.getConnection( url,"username", "password" );
    s=c.createStatement();
    s.executeQuery("Select TRIM(CODES) AS CODES,TRIM(SURNAME)||'_'||TRIM(FIRSTNAME) AS NAME from MYDB.USERS");
    ResultSet rs =s.getResultSet();
    -now if you want to connect to the oracle lite client database then you may connect using the polite
    you should write something like (i havent tried it because i use handheld clients)
    String ConnectMe=("jdbc:polite:SCOTT/tiger:polite;DataDirectory=c:\Oracle_Home;Database=polite;IsolationLevel=SINGLE;USER;Autocommit=ON;CursorType=DYNAMIC")
    try {
    Connection conn = DriverManager.getConnection(ConnectMe)
    catch (SQLException e)
    (check the internet for jdbc:polite connection strings)
    gl

  • Connectivity Problem with WPF Viewer and Oracle based imbedded reports

    I've been using code to modify the Database, Username and Password in imbedded reports for quite a few years.  Whether I was using C++ V6 or C# in VS2008, the process has been basically the same.  Now I am trying to use the WPF Viewer in VS2010 and am getting an "ORA-00942: table or view does not exist" error.  I perform a successful Connectivity Test and receive the error when I'm trying to view the report. 
    If I comment out all of the code that sets the source of the data and performs the connectivity test, the report shows up in the viewer and I'm presented a logon window similar to what I see when i design the RPT file in Crystal Reports. i.e the "Server Name:" shows the name of the Oracle Database I used when I designed the report; the "Database: " is empty; the "Login ID:" displays an edit box and contains the User ID I used when designing the report; and the "Password: " displays an edit box in which I type the password.  Once I click on the OK button, the report is displayed in the WPF viewer.
    Here is the code starting after I have loaded the report into a ReportDocument:
    if(report.IsLoaded)
      CrystalDecisions.Shared.TableLogOnInfo crTableLogonInfo;
      CrystalDecisions.CrystalReports.Engine.Tables crTables = report.Database.Tables;
      foreach(CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
        crTableLogonInfo = crTable.LogOnInfo;
        crTableLogonInfo.ConnectionInfo.LogonProperties.Clear( );
        crTableLogonInfo.ConnectionInfo.Attributes.Collection.Clear( );
        crTableLogonInfo.ConnectionInfo.DatabaseName = null;
        crTableLogonInfo.ConnectionInfo.ServerName = MyDatabase;
        crTableLogonInfo.ConnectionInfo.UserID = MyUsername;
        crTableLogonInfo.ConnectionInfo.Password = MyPassword;
        crTable.ApplyLogOnInfo(crTableLogonInfo);
      report.SetParameterValue("StartingCPID", "AAAAAA");
      report.SetParameterValue("EndingCPID", "ZZZZZZ");
      if(report.Database.Tables[0].TestConnectivity())
        reportViewer.ViewerCore.ReportSource = report;
        reportViewer.ToggleSidePanel = SAPBusinessObjects.WPF.Viewer.Constants.SidePanelKind.None;
      else
        MessageBox.Show("Unable to Connect to Database in report.");
    Any idea what I'm doing wrong or what is different in this version?

    See if the KB [
    [1448013  - Connecting to Oracle database. Error; Failed to load database information|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433343338333033313333%7D.do] helps.
    Also the following may not hurt to have a look at (if only for ideas):
    [1217021 - Err Msg: "Unable to connect invalid log on parameters" using Oracle in VS .NET|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313337333033323331%7D.do]
    [1471508 - Logon error when connecting to Oracle database in a VS .NET application|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333433373331333533303338%7D.do]
    [1196712 - Error: "Failed to load the oci.dll" in ASP.NET application against an Oracle database|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333133393336333733313332%7D.do]
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • CF 9.0.2 and Oracle - On update returns error "Auto-generated keys were not requested..."

    We have a simple update statement to Oracle 11g Database. When running the statement the data is not getting updated and we are getting an error "Auto-generated keys were not requested, or the SQL was not a simple INSERT statement. ErrorCode=0 SQLState=HY000". We found this error by dumping the SQL to a file.
    But most other Update statements are working fine.
    Also, the same statment works for Oracle 10g and Coldfusion 9.0.0.
    Any idea if this is a problem with Coldfusion or Oracle? Is there any resolution.
    I found the CF 8 had a similar issue and was fixed in a hotfix (http://helpx.adobe.com/coldfusion/kb/error-auto-generated-keys-requested.html).

    Hi,
    Thanks. I compiled my code using JDeveloper 10.1.2, didn't dare to use the latest. It works in 10g apps server. When I deployed to 9ias apps server, those weird errors showed up. Unfornately, our dev environment is at a newer version than the production one.
    So, you think the error is generated because I referenced some newer technologies that was not provided by 9ias?
    Jia

  • Connectivity between sql server 2000 and oracle 9i

    Hi friends....
    i am developing application in which i require some data from sql server2000 tables...
    tell me how i can establish connection in between these 2 database and how can i transfer specific rows to oracle....tell me how it is possible to writting stored procedures in sql....or procedures in oracle.....i used DTS (data transfer scheme) but it transfer whole database ot table...but i want to transfer only specific rows in table...
    help me out from it?
    thanx in advance...

    There are a number of ways...
    You can certainly use DTS to extract a subset of rows and move them to Oracle. You'll need to define the WHERE clause when defining your DTS steps.
    You can use Oracle Heterogeneous Connectivity to create a database link to SQL Server from Oracle and pull the data over via straight SQL, i.e.
    INSERT INTO local_table
      SELECT * FROM remote_table@sql_server_dblink WHERE extract_conditionYou can do a similar thing in SQL Server where you use linked servers to connect to Oracle from SQL Server and push the data
    This list can go on, but these should get you started.
    Justin

  • Inactivity timeout of connection pool - Sun ONE 7 and Oracle 8i

    Friends,
    I have a JDBC connection configured, looked up by JNDI working fine with servlets.
    The question is: I have a firewall between my appserver and the database server that closes all idle connections longer than 10 minutes.
    The appserver assumes the connection is still alive, and when there is made an attempt, it keeps trying for a long time.
    Is there any way I can keep that connection alive?
    Or, any way to 'tell' the appserver to reestablish the connection?
    Thanks in advance

    Use Connection Validation

  • HT4623 my iphone 5 stoped working. i connected to itunes to restore and i am getting the error message -1 saying unknwon error. Help

    I phpne 5 not working; connected to itunes and restored and now getting error message -1 and phone does nothing.

    Was there something I did? the phone has been acting strange for a few days. When i brought it to best buy they turned off the LTE but that did nothing for the problem. Did i do something? it was working when i connected to itunes then all of a sudden theres nothing on the phone. I have a friend who "hacks" iphones. He thinks he might be able to fix it. Should i let him or will that make matters worse? I dont understand why connecting to itunes made it worse either.

  • Oracle 11.1g  client error with TimesTen

    Dear all,
    I am not sure this is the correct forum to post. I suspect that I have problem with Oracle Client 11.1g for HP-UX 64 bit v11.31. I configured Cache Connect of TimesTen v7.0.5 to use with Oracle DB 11.1g.
    I have the error that is related to Oracle Client library as following:
    5102: Cannot load backend library 'libclntsh.so' for Cache Connect. OS
    error message 'Unsatisfied code symbol 'sem_destroy' in load module
    '/u01/app/oracle/product/11.1.0/lib/libclntsh.so'.'.
    I suspect that the error is due to the built of Oracle Client 11.1g. Any help to solve this error is highly appreciated. Thank you.
    $ sh bin/ttIsql demo
    Copyright (c) 1996-2008, Oracle. All rights reserved.
    Type ? or "help" for help, type "exit" to quit ttIsql.
    All commands must end with a semicolon character.
    connect "DSN=demo";
    Enter password for 'testuser':
    Connection successful:
    DSN=demo;UID=testuser;DataStore=/home/timesten/demo;DatabaseCharacterSet=US7ASCII;ConnectionCharacterSet=US7ASCII;DRIVER=/etc/TimesTen/timesten70/lib/libtten.so;OracleId=demodb;PermSize=128;TempSize=128;TypeMode=0;
    (Default setting AutoCommit=1)
    Command> call ttCacheUidPwdSet('testuser','testuser');
    5102: Cannot load backend library 'libclntsh.so' for Cache Connect. OS
    error message 'Unsatisfied code symbol 'sem_destroy' in load module
    '/u01/app/oracle/product/11.1.0/lib/libclntsh.so'.'.
    The command failed.
    Command>
    ##############################

    I have found a solution for this issue. Thanks for reading.
    Cache Connect TimesTen v7.0.5 and Oracle DB 11.1g error

  • Cache Connect in cluster

    Hi!!!
    We have 4-nodes linux cluster based on MC Service Guard.
    T10 works as a standalone in the packet "pack1" with other apps. Apps uses t10.
    Packet "pack1" (with t10 and apps) can be moved to any of 4 cluster nodes, and it doesn't have a home node (it may live on node 1 year, 3 month on node 2, 1 day on node 3, etc...).
    Is there any possibilities to set up cache connect in that kind of cluster configuration?
    We don't want to install additional T10 instance on all nodes :)

    Chris,
    but then pack1 moved to another node, a host name (where t10 now works) is changed.
    And since pack1 has moved to another node, values like BOOKMARK and REPORTS in TT_03_AGENT_STATUS for that t10-subscriber remains the same, and off course it turns to growth TT_03_34575_L table.
    Maybe, it is because t10-subscriber identified in TT_03_AGENT_STATUS by hostname?
    In t10 cache connect works fine.
    But in oracle we have growing table and we can't make our own monitoring of cache connect based on BOOKMARK and REPORTS.
    I believe that I've done something wrong. But what exactly?
    Linux Cluster:
    node1 pack1(T10 7.0.5 64bit, Oracle client 11 64bit, other apps...)
    node2 pack2
    node3 pack3
    node4 pack4
    Oracle 11G R1 64 bit is installed on remote linux machine
    Cache Connect:
    CREATE READONLY CACHE GROUP MYCACHE
    AUTOREFRESH INTERVAL 15 SECONDS ...
    Alexander

  • How to configure SharePoint 2010 / 2013 Search for SQL Database Contents and Oracle Database Contents?

    Hi All,
    We are planning to maintain the contents in SQL / Oracle. Could you please suggest anyone which is best for SharePoint 2010 / 2013 Search. How to configure the search for external content source?
    Thanks & Regards,
    Prakash

    This link explains supported and non supported scenarios to use Oracle for BCS
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/453a3a05-bc50-45d0-8be8-cbb4e7fe7027/oracle-db-as-external-content-type-in-sharepoint-2013
    And here is more on it
    http://msdn.microsoft.com/en-us/library/ff464424%28office.14%29.aspx 
    And here how you can connect Oracle to SharePoint for BCS functionality
    http://lightningtools.com/bcs/business-connectivity-services-in-sharepoint-2013-and-oracle-using-meta-man/
    Overall it seems SQL doenn't require any special arrangement to connect BCS to SharePoint.
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • RWB - Cache Connectivity Test - Adapter Engine shows error

    Hello Friends,
    In our one production system (PI 7.1), while do 'Cache Connectivity Test' from RWB -> Component Monitoring, it shows the following error for Adapter Engine under Integration Directory.
    Error:
    Cache notification from Integration Directory failed Error when accessing the System Landscape Directory.
    No SLD elements of type SAP_XIAdapterFramework found
    But, Integration Server - ABAP, Integration Server - JAVA shows green color. The messages are flowing through the Adapter Engine fine. i.e I am seeing 2 Adapter Engines under Integration Server in Component Monitoring. One Adapter Engine is in grey and another Adapter Engine shows green color.
    When I click the grey color adapter engine, it immediately turns to red color and some different host name url is displayed (http://<wronghost>:53000/AdapterFramework/rtc).
    So, what could be the problem ?
    Kindly clarify, friends.
    Thanking you.
    Kind regards,
    Jegathees P.

    Hello Jegathees
    Apply the solution in note #804124 HTTP communication with XI Adapter Engine fails. Set the parameters:
    SLD.selfregistration.hostName     
    SLD.selfregistration.httpPort     
    SLD.selfregistration.httspPort    
    as described in the note.
    Regards
    Mark

  • TimesTen Cache Connect support for Oracle 11g

    The latest 7.0.5 readme mentioned that "Oracle Release 11gR1 is supported with TimesTen Cache Connect to Oracle on Linux x86 32-bit and 64-bit platforms, and on Windows 32-bit."
    What about Solaris 10? It looks like on Solaris 10 only Oracle 10gR2 being supported. What is so specific about Oracle 11?
    Thank you,
    Alex

    TimesTen 7.0.5 can be used to cache data from different versions of Oracle database.
    The reason why the support for Solaris, AIX, and HP-UX were not at the same time as the Linux platform was because Oracle database 11g was not available on those platforms initially. So TimesTen 7.0.5 was certified to support only the ones available first, and support for other platforms was added as 11g became available on those platforms. It was just timing of the certification, code base is the same.
    Susan

  • Oracle Timesten Unable to stat Cache Connect

    Hi,
    Can Anyone help me out with this error
    http://localhost:16004/cache/
    I give DSN,username,password and when I give login , the following error is displayed
    ERROR in ttBackEnd.c, line 887: prepare failed
    ODBC Error/Warning = S1000, Additional Error/Warning = 5221
    TT5221: Oracle syntax error in OCIStmtExecute(): ORA-00923: FROM keyword not found where expected rc = -1 -- file "bdbConnect.c", lineno 1010, procedure "isRACEnabled()"

    What exact version of Oracle client is installed on the TimesTen machine? Are the permissions for the Oracle client directory and files set correctly? Do you have your Oracle environment properly setup (i.e. can you connect to Oracle using SQL*PLUS)? When you installed TimesTen, did the user you used to install it have a valid Oracle environment?
    This type of error is almost always due to an unsupported version of the client or an incorrect environment either at runtime or at installation time.
    Chris

  • Please recommend solutions for  Cache Connect and ?

    ---> Solution I
    2 servers create Cache Connect to RDBMS
    ---> Solution II
    1 server create Cache Connect to RDBMS and create active standby pair with another server

    Hi,
    If you only need READONLY caching in TimesTen and all updates will be made in Oracle then you have two main options:
    Multiple READONLY Caches
    For this you have one or more separate TimesTen caches each with a READONLY cache group defined against the oracle DBMS. Each cache can cache different tables/data or they can can cache the same tables/data as required.
    This architecture is very flexible (adding or removing TimesTen servers is very simple) and very scalable. It also provides very good HA; if one cache is down applications can just access a different cache.
    However, due to the asynchronous, time based nature of the refresh from Oracle to Timesten at any moment in times the data in all the caches may not be 100% consistent with each other or Oracle.
    By this I mean the following:
    - Assume that you have 2 (or more) READONLY caches caching the same data from Oracle, with an AUTOREFRESH interval of T1
    - At some time, T2, you update, in Oracle, one of the rows cached by the caches.
    - At some later time, T3, you query the updated row via both caches
    If (T3 - T2) < T1 then the values returned by your query may differ between the caches (depending on where exactly they are in the autorefresh interval when the update is done).
    Active/Standby pair using 2-SAFE replication with READONLY cache group and optional read-only subscribers
    With this architecture you define a TimesTen Active/Standby replicated pair using 2-safe replication and containing the READONLY cache group. 'Scale out' is accomplished in one of three ways:
    1. Adding further A/S pairs with a READONLY cache group
    2. Adding read-only subscriber datastores to the original A/S pair
    3. A mixture of (1) and (2)
    The main advantages of this architecture are as follows:
    1. When 2-Safe is used within the A/S pair, queries to either cache will always return consistent results (i.e. the consistency issue that I described for the first scenario does not exist in this configuration). However, threr can still be inconsitencies in results between the A/S pair and any readonly subscribers (since the replication to them is asynchronous) but given the high performance of TimesTen replication the latency between a change appearing at the A/S pair and the readonly subscribers will typically be a few ms rather than potentially several seconds for the multiple-cache scenario.
    2. The loading on the central Oracle DBMS arising from AuTOREFRESH processing is reduced compared to the multiple-cache scenario. The difference in loading between this solution and the multiple cache solution will be larger as more TT servers are deployed.
    It should be noted that the operational management of this solution is a little more complex than for the first scenario since the A/S pair must be monitored and a 'failover' trigerred if there is some fauilure within the pair.
    Hope that helps a little.
    Chris

  • Unable to use Cache connect to oracle

    Hi Friends,
    I am using TimesTen Cache connect to oracle to connect to Oracle 9i. When I tried to
    Command> call ttCacheUidPwdSet('testuser','mypsswrd'); it gave me an error saying
    "con1: Command> call ttCacheUidPwdSet('TestUser', 'prashant');
    Warning 5105: OCI initialization failed: Error due to failure of ttOCIEnvNlsCre
    ate (called from ttBDbEnvAlloc/ttBDbInit).
    Warning 5109: Cache Connect general error: BDB connections not open."
    can anybody tell me what could be the problem.
    And to use cache connect is there a separate installation ? or setting ?
    Thanks,
    Prashant

    What exact version of Oracle client is installed on the TimesTen machine? Are the permissions for the Oracle client directory and files set correctly? Do you have your Oracle environment properly setup (i.e. can you connect to Oracle using SQL*PLUS)? When you installed TimesTen, did the user you used to install it have a valid Oracle environment?
    This type of error is almost always due to an unsupported version of the client or an incorrect environment either at runtime or at installation time.
    Chris

Maybe you are looking for

  • Creative Zen 8Gb-Unknown Device!

    Creative Zen 8Gb-Unknown Device!? Player: Creative Zen 8gb Firmware Version: .20.02e OS: Win XP with Service Pack 3 (Unknown Origin) Windows Media Player: Version .0.572.545 Motherboard: ASUS P5Q PRO My problem is that when I connect the player to my

  • BFOK_A R/3 Table - Data Source and Standard Business Content

    Hi All,     For the R/3 Table BFOK_A (FI subsequent BA/PC adjustment: Vendor items) please let me know which datasource should be used.    Also let me know the standard business contents related to this table. Thanks, Srinivas.

  • Error when "run" the "helloworld" project

    Hello the expert, I am a newbie to the Weblogic. I am trying to setup a helloworld project on Eclipse using Weblogic server. When I "run" the project, I got the following error below. Could anyone please point me out what I did wrong on my setup? Tha

  • How to read line number text from PDF using plugin?

    Hi, I would like to know how to read line number text from PDF using plugin? Thanks in advance.

  • Creating a custom colorpicker / item_roll_over issues

    Greetings all! I am trying to make a color picker that displays the name of the color that the mouse is over in a label.  While this works fine in my test file, the item_roll_over event does not fire in its working environment (its embedded into an h