Connectivity odbc

Does anybody knows connectivity java to Oracle9i database using JDBC?

yes
if you want to learn it own your own - and find out a whole pile of tricks around using jdbc properly in an oracle environment as well - i recommend reading the "JDBC Developer's Guide and Reference". For 9i it's really, really well described in Chapter 2 "Getting Started" at http://www.oracle.com/pls/db92/db92.docindex?remark=homepage
and the self-help tutorials at http://otn.oracle.com > Tutorials (menu link)

Similar Messages

  • How to use a connection ODBC in  crystal reports viewer?

    Hi Guys!
    I need to know if for update a report in crystal reports viewer, is necessary, have a connection SAP Business Objects Business Intelligence. How to use a connection ODBC in  crystal reports viewer?

    Hi Guys!
    I need to know if for update a report in crystal reports viewer, is necessary, have a connection SAP Business Objects Business Intelligence. How to use a connection ODBC in  crystal reports viewer?

  • How to do a Generic Connectivity (ODBC) ?

    Hello,
    Generic Connectivity provide Oracle Database to connect another
    database via ODBC. In my case, it is Oracle 8.1.6 which connects
    to Sybase Enterprise 11 on Win NT. The Module "Generic
    Connection" is installed. I view it by the Oracle Universal
    Installer and I have configured the Windows ODBC Manager to
    connect to Sybase.
    This is what I've done step by step:
    1. C:\Oracle\Ora81\hs\Admin\iniths_syb.ora
    HS_FDS_CONNECT_INFO = SPS_NACIONAL
    HS_FDS_TRACE_LEVEL = ON
    HS_FDS_TRACE_FILE_NAME = hs_syb.log
    2. C:\Oracle\Ora81\Network\Admin\Listener.ora
    LISTENER =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = nacional)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = oracle)
    (ORACLE_HOME = c:\Oracle\Ora81)
    (SID_NAME = oracle)
    (SID_DESC =
    (SID_NAME = hs_syb)
    (ORACLE_HOME = c:\Oracle\Ora81)
    (PROGRAM = hs_syb)
    I reload the listener by the following command :
    lsnrctl
    stop
    start
    3. C:\Oracle\Ora81\Network\Admin\Tnsname.ora
    ORACLE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = host)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = oracle)
    hs_syb =
    (DESCRIPTION=
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = host)(PORT = 1521))
    (CONNECT_DATA =
    (SID=hs_syb)
    (HS = OK)
    I test the tnsname at the prompt command line :
    tnsping hs_syb
    (It's OK)
    4. Database Link
    CREATE PUBLIC DATABASE LINK syb
    USING 'hs_syb';
    5. Test database link
    select * from emp@syb;
    And Errors occur :
    ORA-28509: unable to establish a connection to non-Oracle system
    ORA-02063: preceding line from SYB
    6. I read again the documentation
    http://technet.oracle.com/doc/oracle8i_816/server.816/a76960/hs_g
    enco.htm
    and I found some tables to be feed with data by the HS_ADMIN
    packtage :
    This is what I have added :
    EXEC DBMS_HS.CREATE_FDS_CLASS ('hs_syb','Uses ODBC Driver')
    EXEC DBMS_HS.CREATE_FDS_INST ('hs_syb','hs_syb','SYC Sybase
    System 10/11')
    EXEC DBMS_HS.CREATE_INST_INIT
    ('hs_syb','hs_syb','HS_DB_NAME','SYBDATA','F')
    (Drop procedure :
    EXEC DBMS_HS.DROP_INST_INIT
    ('hs_syb','hs_syb','HS_FDS_CONNECT_INFO')
    EXEC DBMS_HS.DROP_FDS_INST ('hs_syb','hs_syb')
    EXEC DBMS_HS.DROP_FDS_CLASS ('hs_syb');
    I test one more time the connection,
    And I have the same error message as step 5.
    7. I put in the initialization file (initoracle.ora) the
    parameter
    Hs_Autoregister = true (It is true by default and it doesn't
    change errors. Is it another parameters for HS ?)
    In fact, I don't really understand the notion of "AGENT" for HS
    (Heterogeneous Services) in Oracle. Is it something to enable or
    is it automatic because the iniths_syb.ora file is in the path
    ORACLE_HOME\hs\admin ???
    What is it missing for the Generic Connectivity ? Any
    suggestion ? Say me what is the wrong step in this process or
    what I have forgotten.
    Thank you in advance.
    Jobar Team

    Hello
    You're right, step two needs to set (PROGRAM = hsodbc). I understand this when I saw hsodbc.exe in the path ORACLE_HOME\Bin (and at prompt I try agtctl.exe but without sucess, an utility for Heterogeneous Services).
    Now when I test the connection I can hear Oracle running something.
    This is what I've done step by step (following my previous message)I test with Sybase Entreprise and Sybase Anywhere :
    8. C:\Oracle\Ora81\Database\initoracle.ora
    I set a parameter in init file and I reload Oracle database :
    global_names = false
    OR in SQL+
    alter session set global_names=false;
    WITH SYBASE ENTREPRISE
    9. C:\Oracle\Ora81\hs\Admin\iniths_syb.ora
    At the beginning my iniths_syb.ora file was wrong then I correct parameters by viewing errors in C:\Oracle\Ora81\hs\trace :
    #Using a dsn file generate by the Windows ODBC Manager
    HS_FDS_CONNECT_INFO="FILEDSN=C:\sybase.dsn"
    HS_FDS_TRACE_LEVEL = ON
    HS_FDS_TRACE_FILE_NAME = C:\hs_syb.log
    set SYBASE=C:\\Sybase\\ASE
    Contents of sybase.dsn
    [ODBC]
    DRIVER=Sybase System 11
    UID=USERNAME
    SRVR=SVRNAME
    DB=master
    10. Test Database link
    CREATE PUBLIC DATABASE LINK syb
    CONNECT TO USERNAME IDENTIFIED BY SECRET
    USING 'hs_syb';
    select * from anytable@syb;
    ORA-00942: table or view does not exist
    [Transparent gateway for ODBC]393330(0,0,1[[]])
    ORA-02063: preceding 2 lines from SYB
    I try to set parameters in iniths_syb.ora without success :
    HS_DB_DOMAIN=SVRNAME
    HS_DB_NAME=master
    HS_FDS_DEFAULT_OWNER=USERNAME
    WITH SYBASE ANYWHERE
    11. C:\Oracle\Ora81\hs\Admin\iniths_any.ora
    #Using a dsn file generate by the Windows ODBC Manager
    HS_FDS_CONNECT_INFO="FILEDSN=C:\anywhere.dsn"
    HS_FDS_TRACE_LEVEL = ON
    HS_FDS_TRACE_FILE_NAME = C:\hs_any.log
    Contents of anywhere.dsn
    [ODBC]
    DRIVER=Adaptive Server Anywhere 6.0
    UID=USERNAME
    Integrated=No
    AutoStop=Yes
    EngineName=SERVICE
    12. Test Database link
    CREATE PUBLIC DATABASE LINK anywhere
    CONNECT TO USERNAME IDENTIFIED BY SECRET
    USING 'hs_any';
    select * from anytable@anywhere;
    In SYBASE ANYWHERE I've got this data
    select * from anytable
    go
    dateini col1 col2
    2002-02-01 00:00:00.0000 1.5000 1.4000
    In ORACLE I've got
    SQL> select * from anytable@anywhere;
    dateini col1 col2
    01/02/02 1 1
    There isn't the decimal.
    The reason doesn't like to be 1.4 or 1,4 because in Anywhere and in Oracle It is the same insert "insert into anytable values ('02/02/01', 1.5, 1.4)".
    13. Now I try a select of one column
    select col1 from anytable@anywhere;
    this error occur :
    ORA-00904 invalid column name
    I am sure that this column exist ! "select * from anytable@anywhere;" and "select count(*) from anytable@anywhere;" are OK.
    14. And this doesn't work anymore :
    insert into bx_surcharge@anywhere values ('01/02/02',1,2);
    ORA-02047: cannot join the distributed transaction in progress
    15. Step 6 and 7 doesn't mean to be necessary ? And Where are used parameters of the "ODBC Connectivity Requirements" in the documentation. http://technet.oracle.com/doc/oracle8i_816/server.816/a76960/hs_genco.htm (And How to use Datatype Mapping ?)
    So How to successful a ODBC connection (Maybe I forget some parameters) ? For me, using a connection with ODBC is generic and have to work fine with any type of datasource, isn't it ?
    Have you got any idea to deal ? Thanks a lot.
    Jobar Team

  • SQL Server Expres 2008R2 on Windows 7 peer to peer network using MS Access to connect - ODBC Login Timeout

    Hello,
    I have had a Microsoft Access database that was running on Windows XP against a SQL Server 2000 database.  We are running on a peer to peer network.  This all worked fine.  Recently I upgraded all the systems to Windows 7 and the Access database
    to Office 2013 and setup SQL Server Express 2008R2.  I am running into strange problems trying to connect the access database to SQL Server Express.
    SQL Server Express was setup with mixed authentication mode. 
    What is strange to me is that if I run the Access database on the same server as SQL Server Express 2008R2, everything works fine. However, if I run the Access database from a separate system (Windows usernames and passwords are identical on all systems
    for all accounts).  I get a spinning circle, then after 5 minutes or so I get an error box that says "Connection Failed SQL State S1-T00 - ODBC Login Timeout Expired.
    I click OK and then there is a ODBC login box,  It has trusted connection  box checked.  So, I just click ok and everything runs fine.
    I have checked with the Access database the ODBC connection string (How do you change this to imbed a username and pwd?) and the connection specifies that trustedconnection = yes.
    I have tried setting the odbc connection up to use a SQL Account, I have setup all of the security in SQL so that Windows accounts have access and either works on the system that is hosting the SQL database.  But when I try to connect from a separate
    machine we have to wait with the timeout and then click okay.
    Any Ideas.
    Thank you!!!

    I have TCP/IP and named pipes.
    I will take a look at the kb article.
    What puzzles me is that odbc connection is set for trusted connection, the access database is set for trusted connection.  But yet it seems that it wants to do a SQL authentication.  Then it fails, and then if you simply hit okay to do the Trusted
    Connection then it is fine.
    I will read about setting the UID and PWD in code.  Been a long time since I have done that, but very doable.  Then see if the Access DB is setup with the UID and Pwd in the odbc connection string, then switch the odbc connection to be a SQL Server
    connect, then maybe it will work..  Crossing my fingers.
    I will be back on site next week and will give it a try then.
    I will check the ports, but suspect they are fine as it works fine after it has it timed out and you hit okay to connect with a trusted connection.
    Thanks for your ideas.

  • Connecting ODBC under Win7 64 Bit

    Hi ,
    I'm under win 7 64bit , i can't define in the ODBC a database for MS Access only sql server.
    I have a MS data base which i want connect to my CVI Soft through the ODBC Any idea how can i do that ?
    Kobi Kalif
    Software Engineer
    Solved!
    Go to Solution.

    Well after some time i see the problem is working under 64 bit...
    just run the ODBC under C:\Windows\SYSWOW64\ODBC.....
    In there there are all the drivers..
    Kobi Kalif
    Software Engineer

  • JSF connect ODBC by WEBSPHERE

    hi
    i have created a jsf project,it's simple,but now i want to do a connect to my database with bridge ODBC-JDBC.
    i create a class:
    import java.sql.*;
    import sun.jdbc.odbc.*;
    public class Connect {
         private Statement stmt;
         private String url;
         private ResultSet rs;
         private Connection con;
         Connect(){
                           try
                                         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                                          url = "jdbc:odbc:scrutinio";
                                          con = DriverManager.getConnection (url,"dba","sql");
                                          stmt = con.createStatement();
                                     catch (ClassNotFoundException e)
                                          e.printStackTrace();
                                     } catch (SQLException e) {
                                          e.printStackTrace();
              public Statement getStatement()
                   return stmt;
    }now in my backbean i call getStatement()(i try a login web ):
    import java.sql.*;
    import sun.*;
    public class BackLogin {
         private String Nome;
         private String Password;
         private Statement stmt;
         private ResultSet rs;
        public void setNome(String Nome){
             this.Nome=Nome;
         public void setPSW(String PSW){
                 this.Password=PSW;
         public String getNome(){
                 return Nome;
            public String getPSW(){
                     return Password;
         public String id_Login(){
           Connect cn=new Connect();
              stmt=cn.getStatement();
              try {
                   rs=stmt.executeQuery("SELECT CODICE,password FROM SECURITY_UTENTI");
                while(rs.next()){
                     if((rs.getString(1).equalsIgnoreCase(Nome))&&(rs.getString(2).equalsIgnoreCase(Password)))
                    return "success";
              } catch (SQLException e) {
                   e.printStackTrace();
              return "failure";
    }but the console return:
    [03/03/05 13.45.00:281 CET] 560ebb9c WebGroup I SRVE0180I: [ArgoNet1.0] [ArgoNet1.0] [Servlet.LOG]: /login.jsp: init
    [03/03/05 13.45.07:531 CET] 5271fb9c SystemErr R java.lang.ClassNotFoundException: sun.jdbc.odbc.JdbcOdbcDriver
    please can we help me?

    my error isn't in compilation but it is in run-time

  • OWB : Connection ODBC to MYSQL failled

    hello everybody,
    I use Oracle Wrehouse builder like ETL in my project. So i database source is a MySQL database.
    I proceeded as follow :
    I Create a System DSN pointing to my MYSQL database
    I Create a Listener entry in the listener.ora
    I Create a tnsnames entry in the tnsnames.ora
    I create a new file in ORACLE_HOME/hs/admin (initSIDNAME.ora)
    After this, i reload the listener and i check his status : the status is unknown.
    But i create database link using my SIDNAME
    So when i execute this code : select table_name from [all_tables@SIDNAME|mailto:all_tables@SIDNAME]; i have this error : ora-12154 : the identifier of this connection can't resolve
    Can you help me plese.
    Thanks

    Hello,
    I think I solved my problem. My url was incorrect. I just typed in the my connect url like "mycompany-dbname.mycompany.de".
    But you have to type first "jdbc:mysql://"mycompany-dbname.mycompany.de:3306" I also stumbled on an other problem - "ACCESS DENIED for user .." I also was able to resolve this error. The cause was that OWB sets the user name in upper-case letters - my login user name is in lowercase letters.

  • ODBC Connectivity with Crystal Reports 2009 and MySQL

    Hi,
    I'm hoping someone can help me. We are currently running Crystal Reports CR Developer version 9.2.2.693 with an ODBC connection (ODBC 3.51 driver) to a My SQL database, version 4.0.18.*
    We want to upgrade to Crystal Reports 2008, CR Developer version 12.0.0.683, however when I try to run reports to the current database, I get the following error:
    *Database Connector Error: 2300:[MySQL][ODBC 3.51 Driver][mysqld-4.0.18-nt]You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near  .client where 0=1  at line 1 [Database Vendor Code: 1064] *
    Has anyone encoutered this before? Do I need to get a different rev. ODBC driver? Thanks in advance for your help.

    Thanks for your suggestion, but since the same query works when I use Crytal Reports 9 to the same MySQL database, I don't think that's the issue. I wonder if it has to do with the driver.

  • Teradata destination ODBC connections failing in SSIS job

    Windows Server 2012 R2
    SQL Server Integration Services 2012
    Teradata 13.10.00.14, Driver 14.10.00.06
    We have a situation where ODBC connections to Teradata destination database keep getting errors from time to time, not every night though.
    Some nights regular load jobs execute successfully and sometimes they get errors "There was an error trying to establish an Open Database Connectivity (ODBC) connection with the database server." -
    one or more component failed validation.
    The faulty component is usually different, not the same every time. Package may also differ. There are 4 packages starting parallelly at the same time, each having 1 or 2 sequences of dataflows and sql tasks (about 60 dataflows and 40 sql tasks in total in
    those packages). Packages have been migrated from DTS to SSIS and this kind of error-situation has never occurred before.
    So we checked what happens on the Teradata side - many simultaneous sessions, validation sessions at first then TPT Load and ODBC sessions, but the number of concurrent open sessions never exceeds something like 30-40. And there is a parameter in Teradata indicating
    that max allowed sessions is 120.
    Two different kinds of connection managers used - Teradata Connection Manager, used in Attunity Teradata Destination component for TPT Loading and ODBC Connection manager to execute SQL Tasks and also for loading to Teradata destination tables in case of low
    number of records being transfered.
    TPT Loads take 14 sessions each, ODBC destination and validation sessions apparently 1 per validation/component.
    What could be the reason for this error? Where to look, what to check?
    Thanks for any advice!

    Sorry the information given doesnt help much to understand the root cause. Anyways something you could do is to set delay validation to true so that actual error you will get at runtime rather than a validation failed message as above. One more thing you
    can try is running packages one at a time and see if error occurs. Also see if multiple packages running in parallel are using same object.
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • ODBC connection remains open after disconnect

    Hello,
    in my application I use 2 ODBC connects to 2 different ODBC drivers.
    My problem:
    When I close one connection (with DBDisconnect), the connection on the database remains open until I close the second one.
    Is this a known behavior?
    Is there a way to force the closing or to make it independant of the other connection?
    Regards
    Fred
    Solved!
    Go to Solution.

    As ODBC connections are not inherently included in the CVI environment, I looked up the DBDisconnect function and it says that the DBDisconnect function disconnects the last connected ODBC database. So it is expected behavior.
    Ian M.
    National Instruments

  • Cisco Access Registrar ODBC connection

    I have enabled 8 ODBC connections for my accounting packets in CAR 4.1.2 and they are not utilized falling into a lot of ODBC timed out. I have played around with the timeouts but no result.
    What is you ideas?

    Cisco AR supports Open Database Connectivity (ODBC), an open specification that provides application developers a vendor-independent API with which to access data sources. Cisco AR provides a new type of RemoteServer object and a new service to support ODBC. You can use Cisco AR to authenticate and authorize access requests by querying user information through ODBC.
    http://www.cisco.com/en/US/products/sw/netmgtsw/ps411/products_user_guide_chapter09186a008043fd38.html

  • ODBC 10.2 test connection success but MSAccess/Office throws ORA-12154

    I've run into a difficult-to-solve problem. I'm troubleshooting an MSAccess to Oracle connection via Oracle ODBC driver issue.
    MSAccess was giving ORA "long" datatype error (can't remember error number) when using 11.2.1 driver against a years-old, tried-n-true app that was previously well behaved (only diff is use of that app with newer Oracle ODBC driver). Web search revealed problems with 11.2 ODBC driver and MSOffice tools so decided to swith to older ODBC driver. Had 10.2 ODBC driver also installed so switched to that. Now get ORA-12154 every time I try to connect with MSAccess via Oracle ODBC. Using the ODBC Admin (32 bit) allows SUCCESSFUL connection as does tnsping & other tools that use Oracle Net. Only MSAccess (or other MSOffice tools) do not.
    I've verified no other tnsnames.ora files or sqlnet.ora files available and have even gone as far as completely removing all things Oracle from the PC and reinstalling only the 10.2 client (custom mode; installed only the Oracle NET and ODBC 10.2 driver). I've turned on tracing to ADMIN level and read the trace files. trace for MSAccess call vs trace for ODBC administrator call yields nearly identical trace files till "niotns" step where the ODBC admin proceeds to connect and the MSAccess call just gives a few other coments then stops. NO apparent error messages. tnsnames IS found so don't understand why giving ORA-12154.
    All tools connect (tnsping works, SQL*Plus connects, ODBC admin test sucessful, TOAD connects) EXCEPT MSAccess. Problem is I have many, many MSAccess legacy apps/tools and cannot go without the fully working ODBC connection between MSAccess and Oracle.
    Help... desparate for new ideas to try since I've spent many hours searching and tried all known troubleshooting steps.
    Any ideas appreciated.
    Thanks,
    Mike

    Hi Mike,
    I have a similar error. I can connect to database with TNSPING, and I can also connect with SQL Developer. But I am unable to connect with Access using ODBC, I get ORA-12154 error. Am also completely stumped. So if anyone can help, I would appreciate it too.
    (P.S. I have tried on a number of PCs here in the office, on one PC I have here I can connect using Access and ODBC, I can see the tables, I pick on a table, it says "linking", but it never links - it just hangs forever.)
    Thanks for any pointers,
    Tom

  • Unexpected Behavior error while creating a connection in IDT

    Hi Everyone,
    I have created a connection on top of a database using ODBC.
    I could able to see the connection in IDT.
    I have mentioned the user name and pw correctly  and tried testing the connection and got the error "unexpected behavior"
    PFA error.
    what could be the reason? any idea?
    Thanks.

    I find this 32-bit vs. 64-bit ODBC somewhat confusing.  I know you aren't dealing with Crystal Reports, but this blog post does provide some clarity.  It has a link to this Microsoft knowledge base article from which I quote...
    A 64-bit version of the Microsoft Windows operating system includes the following versions of the
    Microsoft Open Database Connectivity (ODBC) Data Source Administrator tool (Odbcad32.exe):
    The 32-bit version of the Odbcad32.exe file is located in the %systemdrive%\Windows\SysWoW64 folder.
    The 64-bit version of the Odbcad32.exe file is located in the %systemdrive%\Windows\System32 folder.
    One other warning.  In my experience I have found that you cannot run both the 32-bit and 64-bit ODBC admin tools at the same time.  If you have one running and try and start the other one it will just bring up the one you already had running.
    To make sure I know which instance I am in at any give time I have created a dummy data source that corresponds to the instance; 32-bit or 64-bit.
    Let us know how it goes.
    Noel

  • Connecting Enterprise Directly to Pervasive

    Good Afternoon,
    I'm working as a remote consultant with a firm that wants me to find out about running pervasive direct from the BO Server.  They are migrating from simple client server with an Enterprise Server to Data Warehousing. 
    Right now though, the big question is, what do we need to do to run our Pervasive reports by the server.  There are several reports talking to a Pervasive  database that users run from their desktops that they would like to schedule and run automatically with the server.
    My gut tells me, all they need to do to accomplish this is install the pervasive odbc drivers on the server and rock and roll.  But I would like to get the best answer and any gotchas I can let them in on before they proceed.
    What follows are a list of questions I asked in anticipation of talking with BO Suppport to get some specific answers.  When I called BO Support (now sap support), they redirected me here, first.
    What software package are you implementing that uses Pervasive as a back end?   TitleExpress by TSS in Maryland.
    I take it the package in an attempt to protect its data structure wants to export to excel or use some other method to mask its table structure.  Do they provide any sort of Pervasive connection ODBC or native?   They have a DDF and allow access to most tables.  There is an ODBC driver that is installed on the client.
    What version of pervasive?   SQL 9
    What OS is Pervasive installed on?   Windows Server 2003
    What version of BO server are you running?   See below
    Build Date:      2006/08/14 22:24:35
    Build Number:      2205
    Product Version:      11.0.0.2205
    What OS is BO Server installed on?   Windows Server 2003
    I think that should get me started.  It seems like they always ask questions I don't have the answers to, even though I've tried to be thorough.
    So, the actual question is, What do I need to do to BO enterprise server to get direct access to Pervasive?
    Thanks.

    Bump.
    Has not anyone used Pervasive with BO Report Server?

  • Generic Connectivity - can't name an existing column in a query

    I set up my Oracle 8.1.6 database server to support an ODBC connection
    ( using MERANT DataDirect Connect ODBC 3.70)
    to an external MSSQLServer. The connection works but I have the following problem:
    select * from KUAF@hsodbc; --> works fine
    select name from KUAF@hsodbc; --> returns ORA-00904 ( invalid column ), but column exists
    select USERNAME from all_users@hsodbc --> works fine
    In the second case I never got any entry in my trace file so I assume that a local parse is responsible for that behaviour.
    Is there anyone who can give me a hint what's going wrong? Do I have to make some further configuration settings?

    Put double quotes around the column name-seems to work

Maybe you are looking for

  • Two visits from engineers can't find problem, BT d...

    Would really appreciate any help with this. Problem has been going on a while. Internet speed two mths ago dropped to half a meg. (Am meant to get 11Mb).  The problem was 24hrs a day unuseable speed back then.. BT engineers came out about a month ago

  • IN R/3 SYS logical system creation

    Hi people          in idoc2file scenario i created logical system for 2 clients           1. is for r/3 system for example 800 (LS800)           2. is for pi system for example 100(LS100)  in r/3 system only i created this two LS so creation is compl

  • New Problem with ALV grid

    Hi, I am working an ALV grid in my report. after executing my report ALV grid is displaying all columns with all records. But if i am trying to see print priview or if i am trying to do export to spreadsheet, many columns are missing & records also j

  • Is there a specific two characters at the beginning of all gift card codes?

    I bought a $50 iTunes gift card today and when I scratched it, I accidentally removed the first two characters, I was just wondering, is there a way I can find out what they were? Thank you in advance!

  • Getting error "Statement not accessible"! Please help!

    We upgraded from 4.6C to ECC6.0 and some warnings in 4.6C are "syntax errors" in ECC6.0! I have the following code: SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE TEXT-T04. UNIX_SINGLE 'MYPAR1' MYPAR3 P_BDWAVE  TEXT-SS3. SELECTION-SCREEN END OF