SQLJ runtime error ORA-29541

I am running on an Oracle 8.1.5 database using SQLJ Release 8.1.5.0.0 and JDBC version 8.1 (8.1.5.0.0). My SQLJ program precompiles and compiles successfully, resulting in a .class file which I load without error using the loadjava utility. I then create a procedure to run the stored procedure. All this works just fine. However, when I run the procedure, I get the error:
"ORA-29541: class <class name> could not be resolved"
I can't find this error message documented anywhere. (I'm not saying it's not - I'm saying I can't find it.) This same process of loading .class files with loadjava and running them through a wrapper procedure works without errors for JDBC but not SQLJ. Any suggestions on how to fix this?

Any one of the three following things should help:
(1) Add the generated .ser file(s) to be loaded by loadjava.
(2) Use the -ser2class option when translating your SQLJ source and add the additional .class files to be loaded by loadjava.
(3) Use loadjava to load SQLJ source rather than .class (and .ser) files.

Similar Messages

  • Sqlj runtime error with oracle 10G in Websphere6 or 5.1

    We are trying to migrate from oracle 9i to 10G and we are compiled all our sqlj code with codegen = -oracle option.(previously we used to use codegen=-jdbc which for some reason doesnot work).it compiles fine with out any erros.. But when we try to run then get this exception.
    java.lang.IllegalArgumentException: SQLJ programs translated with the option -codegen=oracle must be run under Oracle JDBC 9.0.0 or higher. If the Oracle JDBC driver is wrapped, then the wrapper must implement all of the oracle.jdbc.OracleXxxx interfaces. Alternatively, you can translate SQLJ programs either with -codegen=iso. java.lang.IllegalArgumentException: SQLJ programs translated with the option -codegen=oracle must be run under Oracle JDBC 9.0.0 or higher. If the Oracle JDBC driver is wrapped, then the wrapper must implement all of the oracle.jdbc.OracleXxxx interfaces. Alternatively, you can translate SQLJ programs either with -codegen=iso.
    at sqlj.runtime.ref.ConnectionContextImpl.getOracleConnection(ConnectionContextImpl.java:167)
    at sqlj.runtime.ExecutionContext$OracleContext.prepareOracleStatement(ExecutionContext.java:1397)
    We are using ojdbc14.jar that came with oracle 10G.
    Hope any one can give any pointers.

    I'm having same issue - but I'm having it when I try to invoke a method that contains a database Object type from a Tibco Business Works Process called a Java Method.
    How exactly do you do the codegen=iso configuration?
    I've tried:
    1. Project Properties / Compiler SQLJ and then select from Code Generation drop down iso.
    2. From Connections / Database / Navigate to package / right-click / Generate Java / Browse to my custom jpub.properties file where I have tried multiple entries such as (by themselves and in some combination.:
    - jpub.codegen=jdbc
    - jpub.codegen=iso
    - jpub.compatible=9i
    - jpub.compatible=8i
    - compatible=both8i
    - jpub.usertypes=oracle
    - jpub.compatible=customdatum
    - jpub.compatible=sqlj
    I've also played with changing from the default some of the Mapping Options in Connections / Database / Navigate to package / right-click / Generate Java / Mapping Options.
    This doc here, says that code should change (section 6 JPublisher Input Files - based on configuration of Input files)
    Oracle® Database
    JPublisher User's Guide
    10g Release 2 (10.2)
    B14188-01
    No matter what I do, the code that gets generate is the same.
    Also, the documentation talks about running things from the command line but how exactly do you do that? Do I need to be in specific directory? I tried the c:\ C:\jdev\system and c\jdev\ and c:jdev\bin and always get error message: 'jpub' is not recognized as an internal or external command, operable program or batch file.
    I've built a java client in JDeveloper to successfully call the same method and I don't see the error.
    Edited by: disaak on Mar 9, 2010 11:51 AM

  • JAVA error ORA-29541??

    Dear All:
    I want to use xml to direct print .pdf file, so I use Delivery Manager.
    But when I exec procedure, there have some errors!!
    Below this step、java and procedure is what I do, please someone can
    tell me how can solve it, thnaks!!
    1. create java file EBSEmailDelivery.java
    2. loadjava EBSmailDlivery.java
    3. javac EBSmailDlivery.java
    4. create procedure EBSSendEMail
    5. SQL> exec EBSSendEMail('aa');
    BEGIN EBSSendEMail('aa'); END;
    ERROR at line 1:
    ORA-29541: class APPS.EBSEmailDelivery could not be resolved
    ORA-06512: at "APPS.EBSSENDEMAIL", line 0
    ORA-06512: at line 1
    CREATE OR REPLACE PROCEDURE EBSSendEMail (cmd VARCHAR2)
    AS LANGUAGE JAVA
    name 'EBSEmailDelivery.main(java.lang.String[])';
    //package oracle.apps.xdo.ebsdelivery;
    import oracle.apps.xdo.delivery.*;
    //import oracle.apps.xdo.delivery.DeliveryManager;
    //import oracle.apps.xdo.delivery.DeliveryRequest;
    //import oracle.apps.xdo.delivery.DeliveryPropertyDefinitions;
    import java.io.*;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class EBSEmailDelivery {
    public EBSEmailDelivery() {
         System.out.println("AAAAAA");
    //int userid = Integer.parseInt(rUser);
    // int requestid = Integer.parseInt(rRequestID);
    try {
         // create delivery manager instance
              DeliveryManager dm = new DeliveryManager();
              // create a delivery request
              DeliveryRequest req = dm.createRequest
    (DeliveryManager.TYPE_IPP_PRINTER);
              // set IPP printer host
              req.addProperty(DeliveryPropertyDefinitions.IPP_HOST, "192.168.1.13");
              // set IPP printer port
              req.addProperty(DeliveryPropertyDefinitions.IPP_PORT, "9100");
              // set IPP printer name
              req.addProperty(DeliveryPropertyDefinitions.IPP_PRINTER_NAME, "/printers/HP LaserJet 4050 Series PCL 6");
              req.addProperty(DeliveryPropertyDefinitions.IPP_ATTRIBUTE_CHARSET,"UTF-8");
              //req.addProperty(DeliveryPropertyDefinitions.IPP_USE_FULL_URL,"true");
              //req.addProperty(DeliveryPropertyDefinitions.IPP_USE_CHUNKED_BODY,"true");
              // set the document format
              req.addProperty(DeliveryPropertyDefinitions.IPP_DOCUMENT_FORMAT,
              DeliveryPropertyDefinitions.IPP_DOCUMENT_FORMAT_PLAINTEXT);
              // set the document
              req.setDocument("/u02/VIS10/AP/viscomn/document/xml_test.txt");
              // submit the request
              req.submit();
              // close the request
              req.close();
    } catch (Exception e) {
    e.printStackTrace();
    static Connection getConnection() throws SQLException, Exception {
    String fDriverName = "oracle.jdbc.driver.OracleDriver";
    String fDbName = "vis";
    String fServer = "altos.advtek.com.tw";
    String fPort = "1523";
    String fUserName = "apps";
    String fPassword = "apps";
    Class.forName(fDriverName).newInstance();
    Connection dbconn =
    DriverManager.getConnection("jdbc:oracle:thin:@" + fServer + ":" +
    fPort + ":" + fDbName, fUserName,
    fPassword);
    return dbconn;
    private String getReportTitle(int requestID) {
    String reportName = "";
    try {
    // Try and geta connection to the db
    Connection conn = getConnection();
    // fetch the report name based on the request id
    PreparedStatement getTitle =
    conn.prepareStatement("select user_concurrent_program_name \n" +
    "from fnd_concurrent_requests fcr,\n" +
    "fnd_concurrent_programs_vl fcpv\n" +
    "where fcr.concurrent_program_id = fcpv.concurrent_program_id\n" +
    "and request_id = ?");
    //get the title
    getTitle.setInt(1, requestID);
    // get the query result in to a result set and then assign the
    // value to a variable we can pass back to the calling method
    ResultSet titleRslt = getTitle.executeQuery();
    titleRslt.next();
    reportName = titleRslt.getString(1);
    System.out.println(reportName);
    //Clean up
    titleRslt.close();
    getTitle.close();
    conn.close();
    } catch (SQLException eSQL) {
    System.err.println("Could not create connection");
    eSQL.printStackTrace();
    } catch (Exception e) {
    System.err.println("Exception thrown");
    e.printStackTrace();
    return reportName;
    private String getEmail(int userID) {
    String eMailID = "";
    try {
    // Try and geta connection to the db
    Connection conn = getConnection();
    PreparedStatement getEmail =
    conn.prepareStatement("select email_address from fnd_user where user_id = ?");
    getEmail.setInt(1, userID);
    // get the query result in to a result set and then assign the
    // value to a variable we can pass back to the calling method
    ResultSet emailRslt = getEmail.executeQuery();
    emailRslt.next();
    eMailID = emailRslt.getString(1);
    System.out.println(eMailID);
    //Clean up
    emailRslt.close();
    getEmail.close();
    conn.close();
    } catch (SQLException eSQL) {
    System.err.println("Could not create connection");
    eSQL.printStackTrace();
    } catch (Exception e) {
    System.err.println("Exception thrown");
    e.printStackTrace();
    return eMailID;
    public static final void main(final String[] args) {
    // Arguments passed
    //1.$PROFILES$.CONC_REQUEST_ID
    //2.$PROFILES$.FILENAME
    //3.$PROFILES$.USER_ID
    EBSEmailDelivery ebsMail = new EBSEmailDelivery();
    }

    Hi Tim:
    Thanks for reply me.
    Recently I test XML's Delivery Manager APIs function,but in User Guide don't
    say very clear aoubt how to use this APIs.
    I just see a lot of Delivery Manager Java code, so I find some forums and do the forums say.
    http://www.orafaq.com/forum/?t=msg&th=64448/0/
    I want test XML's Delivery Manager APIs ( e-Mail、Printer、Fax、WebDAV、FTP、HTTP ).
    Can you tell me how to use XML's Delivery Manager APIs??
    Emily
    Thanks a lot!!

  • Runtime error ORA-01741after upgrade

    Hi,
    I got the error ORA-01741 : illegal zero-length identifier for many target tables, after upgrading to 9.0.3. The running is successfull, but I get this error when I look at the target table audit.
    Any tips what could cause that ?
    Thank's

    Could it be that any of your object names or attributes names are empty? Could you take a look at a generated script that causes this problem (I would expect 2 double quotes with nothing in between)?
    Thanks,
    Mark.

  • Runtime error ora-12703 when running utl_mail

    hello,
    I call a procedure through push button to use UTL_MAIL.send(..) and I got error ora-12703.
    There is no error during compilation.
    For your info, I manage to execute the same code on stored procedure using TOAD and I received the email sent using TOAD and telnet from my local.
    For info:
    Forms developer version:
    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    procedure:
    PROCEDURE test_email IS
    BEGIN
    UTL_MAIL.send (
    sender => '[email protected]',
    recipients => '[email protected]',
    cc => '[email protected]',
    bcc => '[email protected]',
    subject => 'Test',
    MESSAGE => 'Hello World',
    mime_type => 'text; charset=us-ascii',
    priority => 3
    END;
    Could anyone please help me on this.
    Regards,
    Dayang

    Hi All,
    I tried another function that use utl_smtp to send email.
    Again I could recieve email when I execute the function in TOAD but got error ora-12703 when I ran using forms.
    When I ran the form, only "debug 1st" apear, then after that it returned error ora-12703.
    Function:
    FUNCTION SEND_MAIL
    (pIssuer IN VARCHAR2,
    pReceiver IN VARCHAR2,
    pSender IN VARCHAR2,
    pSubject IN VARCHAR2,
    pMessage IN VARCHAR2) RETURN VARCHAR2 IS
    c utl_smtp.connection;
    respuesta utl_smtp.reply;
    pServer VARCHAR2(50) := '10.0.3.79';
    CRLF CHAR(2) := CHR(13) || CHR(10);
    BEGIN
    message('debug 1st');
    -- Abre la conexión al Server de correo
    c := utl_smtp.open_connection(pServer);
    message('debug2nd');
    respuesta := utl_smtp.helo(c, pServer);
    -- Inicia el Issuer del correo.
    respuesta := utl_smtp.mail(c, pSender);
    -- Inicia el Receiver
    respuesta := utl_smtp.rcpt(c, pReceiver);
    respuesta := utl_smtp.open_data(c);
    -- Escribe la cabecera del e-mail
    utl_smtp.write_data(c, 'From: ' || pIssuer || CRLF);
    utl_smtp.write_data(c, 'To: ' || pReceiver || CRLF);
    -- Escribe el Subject
    utl_smtp.write_data(c, 'Subject: ' || pSubject || CRLF);
    -- Escribe el texto del Message.
    utl_smtp.write_data(c, CRLF || pMessage);
    utl_smtp.write_data(c, CRLF || '.');
    respuesta := utl_smtp.close_data(c);
    -- Cierra la conexión
    respuesta := utl_smtp.quit(c);
    RETURN '0';
    EXCEPTION
    WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN
    utl_smtp.quit(c);
    RETURN sqlerrm;
    --raise_application_error(-20000,
    -- 'El envío del email ha fallado devolviendo el siguiente error: ' || sqlerrm);
    END;
    Regards,
    Dayang

  • SQLJ runtime error

    Hi:
    I am getting the following Exception when I call sqlj based java class from a jsp page. The Exception indicates that the SQLJ runtime tries to grab the sql statement from the cache, but it is going out of the Arrary bounds. I am really wondering if clearing SQLJ cache will resolve the issue. If it does, how can I clear the SQLJ runtine cache on Solaris 7.
    Your help is very much appreciated, as I wasted long time trying to debug it.
    java.lang.ArrayIndexOutOfBoundsException: 63     
    at sqlj.runtime.profile.ref.StatementCacheProfile.getStatement(StatementCacheProfile.java:82)
         at sqlj.runtime.profile.ref.ProfileWrapper.getStatement(ProfileWrapper.java:96)
         at sqlj.runtime.ExecutionContext$StatementStack.setStatement(ExecutionContext.java:995)
         at sqlj.runtime.ExecutionContext.registerStatement(ExecutionContext.java:523)
         at com.nortelnetworks.productsupportability.sqlj.generated.passport.dpngate.getDefaultT1(dpngate.java:2405)
         at netrx.charts._passport._dpngate._jspService(_dpngate.java:239)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
         at oracle.jsp.JspServlet.internalService(JspServlet.java)
         at oracle.jsp.JspServlet.service(JspServlet.java)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:314)
         at org.apache.jserv.JServConnection.run(JServConnection.java:188)
         at java.lang.Thread.run(Thread.java:536)
    Regards

    Any one of the three following things should help:
    (1) Add the generated .ser file(s) to be loaded by loadjava.
    (2) Use the -ser2class option when translating your SQLJ source and add the additional .class files to be loaded by loadjava.
    (3) Use loadjava to load SQLJ source rather than .class (and .ser) files.

  • Error Ora-604 on connect from Visual Studio 2008 to Oracle database

    Hello!
    I have installed Oracle 9.2.0.6 Database, Microsoft Visual Studio 2008 and today I succesfully installed ODP.NET 1110621.
    I wrote a simple console application like this:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    using System.Data;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    OracleConnection c = new OracleConnection();
    c.ConnectionString = "Data Source=(DESCRIPTION="
    + "(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.1)(PORT=1521)))"
    + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=ssss)));"
    + "User Id=user;Password=pwd;";
    c.Open();
    OracleCommand cmd = new OracleCommand();
    cmd.CommandText = "Select * from CATEGORY_TABLE";
    cmd.CommandType = CommandType.Text;
    cmd.Connection = c;
    OracleDataReader dr = cmd.ExecuteReader();
    while (dr.Read())
    Console.WriteLine(dr[0].ToString() + " " + dr[1].ToString());
    dr.Dispose();
    cmd.Dispose();
    c.Dispose();
    Console.ReadLine();
    at line c.Open(); appear runtime error : ORA-604 Error occurred at recursive SQL level 1
    How to solve it?

    Your issue is not SQL and PL/SQL so much as .NET so I would suggest you ask the question in the "Windows and .NET" forum.
    But a couple of thoughts:
    1. Your database is undoubtedly not at "HOST=192.168.1.1"
    This IP address is generally the address of the router not the server.
    2. Why would you install an unpatched version of software so old it is in desupport mode and then try to work with it using a current
    version of a Microsoft product? Would you be comfortable installing a 10 year old version of a Microsoft product and expect it to
    work well with Oracle 11gR1?

  • Sqlj.runtime package missing

    Two questions:
    1) JDeveloper 3.1 is not able to locate sqlj.runtime and it's there, it was working properly a 15 minutes ago. Any suggestion?
    2) what does the following warning message mean?
    Warning: (33) Type driverTest.Driver of host item #1 is not permitted in JDBC. This will not be portable..
    Thanks in advance!!
    The whole error message I got from JDev:
    D:\Program Files\Oracle\JDeveloper 3.1\myprojects\driverTest\mydriver.sqlj
    Warning: (33) Type driverTest.Driver of host item #1 is not permitted in JDBC. This will not be portable..
    Error: (4) identifier sqlj.runtime.ref.DefaultContext not found.
    Error: (5) identifier sqlj.runtime.ConnectionContext not found.
    Error: (20) class ConnectionContext not found in class driverTest.mydriver.
    Error: (11) identifier sqlj.runtime.ref.ConnectionContextImpl not found.
    Error: (11) identifier sqlj.runtime.ConnectionContext not found.
    Error: (0) identifier sqlj.runtime.profile.Loader not found.
    Error: (17) variable DefaultContext not found in class driverTest.mydriver.
    Error: (17) constructor mydriver$_Ctx(<any>) not found in class driverTest.mydriver._Ctx.
    Error: (22) constructor mydriver$_Ctx(<any>) not found in class driverTest.mydriver._Ctx.
    Error: (26) constructor mydriver$_Ctx(java.sql.Connection) not found in class driverTest.mydriver._Ctx.
    Error: (33) identifier sqlj.runtime.ConnectionContext not found.
    Error: (33) identifier sqlj.runtime.error.RuntimeRefErrors not found.
    Error: (33) identifier sqlj.runtime.ExecutionContext not found.
    Error: (33) identifier sqlj.runtime.error.RuntimeRefErrors not found.
    Error: (33) identifier sqlj.runtime.profile.RTStatement not found.
    Error: (0) identifier sqlj.runtime.RuntimeContext not found.
    Error: (0) method getProfileKey(<any>, java.lang.String) not found in class driverTest.mydriver._Ctx.
    D:\Program Files\Oracle\JDeveloper 3.1\myprojects\driverTest\Driver.sqlj
    Error: (11) identifier sqlj.runtime.ref.DefaultContext not found.
    Error: (12) identifier sqlj.runtime.ConnectionContext not found.
    Error: (52) class ConnectionContext not found in class driverTest.Driver.
    Error: (20) identifier sqlj.runtime.ref.ConnectionContextImpl not found.
    Error: (20) identifier sqlj.runtime.ConnectionContext not found.
    Error: (44) variable DefaultContext not found in class driverTest.Driver.
    Error: (44) constructor Driver$_Ctx(<any>) not found in class driverTest.Driver._Ctx.
    Error: (55) variable DefaultContext not found in class driverTest.Driver.
    Error: (55) constructor Driver$_Ctx(<any>) not found in class driverTest.Driver._Ctx.
    Error: (61) constructor Driver$_Ctx(java.sql.Connection) not found in class driverTest.Driver._Ctx.
    Error: (67) constructor Driver$_Ctx(oracle.jdbc.driver.OracleConnection) not found in class driverTest.Driver._Ctx.
    Error: (77) constructor Driver$_Ctx(oracle.jdbc.driver.OracleConnection) not found in class driverTest.Driver._Ctx.
    D:\Program Files\Oracle\JDeveloper 3.1\myhtml\driverTest_html\view.jsp
    Error: (27) incompatible types; found: void, required: driverTest.Driver.
    null

    1) JDeveloper 3.1 is not able to locate sqlj.runtime Ensure that the SQLJ runtime.zip and/or translator.zip file is in the project's CLASSPATH.
    2) Warning: (33) Type driverTest.Driver of host item #1 is not permitted in JDBC. This warning is issued if you use Java types that are supported by Oracle's JDBC driver (and thus in the Oracle SQLJ runtime), but that are not JDBC types. You'd only care about this warning if you want to write fully portable code. You can turn of portability warnings in JDeveloper under project properties on the SQLJ tab. On the SQLJ command line you could say: -warn=noportable.

  • Ora-29541 could not resolve class

    Bear with me if I sound stupid. Can't help it (because I am)! I am running this code in Java and I keep getting this error: ORA-29541 AFATDS.joeycode could not be resolved.
    connection=java.sql.DriverManager.getConnection(url, username, password);
    stmt=connection.prepareStatement("Create or replace directory Bfile_dir as '/comp_order/joey/trig/trig/bin');
    stmt.execute();
    stmt.execute("Create or replace JAVA CLASS using BFILE (Bfile_dir, 'joeycode.class')");
    stmt.execute("Create or replace procedure Before_update as language JAVA name 'joeycode.printmsg()';");
    stmt.execute("Create or replace trigger pre_upd_trigger BEFORE UPDATE on table_name CALL Before_update");
    stmt.execute("Update table_name SET column1 = 0");

    Thanks for replying. I tried running the command you gave but an exception was thrown, specifally "Exception in thread "main" java.lang.NoClassDefFoundError: oracle/aurora/util/Wrapper"
    Also, the reason I was trying to do it the way I was trying to do it, was because the program needs to automatically put the java code in the Oracle database at the system startup.

  • ORA-29541 class could not be resolved

    Bear with me if I sound stupid. Can't help it (because I am)! I am running this code in Java and I keep getting this error: ORA-29541 AFATDS.joeycode could not be resolved:
    connection=java.sql.DriverManager.getConnection(url, username, password);
    stmt=connection.prepareStatement("Create or replace directory Bfile_dir as '/comp_order/joey/trig/trig/bin');
    stmt.execute();
    stmt.execute("Create or replace JAVA CLASS using BFILE (Bfile_dir, 'joeycode.class')");
    stmt.execute("Create or replace procedure Before_update as language JAVA name 'joeycode.printmsg()';");
    stmt.execute("Create or replace trigger pre_upd_trigger BEFORE UPDATE on table_name CALL Before_update");
    stmt.execute("Update table_name SET column1 = 0");

    Hi,
    IS this code compiled in the database? If so, which error message did you get upon creating the Java source in the database? Which additional error message did you get along with ORA-29541?
    Btw, which JDBC URL are you using?
    Kuassi
    - blog http://db360.blogspot.com
    - book http://www.amazon.com/exec/obidos/ASIN/1555583296
    - http://www.savedarfur.org/content

  • Loadjava error: ORA-29540: class oracle/aurora/rdbms/DbmsJava does not exist

    Hi,
    I'm trying to create a simple Java stored procedure running 8.1.6. When using loadjava (c:\jdk1.2.2\bin\java -classpath .;d:\orant8i\lib\aurora_client.jar;d:\orant8i\javavm\lib\aurora.zip;d:\orant8i\sqlj\lib\translator.zip;d:\orant8i\jdbc\lib\classes111.zip oracle.aurora.server.tools.loadjava.LoadJavaMain -u system/manager -f -v Test.class), I get the above error. The problem: file DbmsJava exists in the included aurora.zip package. To verify this, I checked the zip file, and I successfully compiled a test program importing the class.
    Any ideas?
    Thanks,
    Bernd

    I also tried another approach to create a Java stored procedure, and got an error which I think has the same cause as above:
    public class Test { public static void test() {System.out.println("Test");}}
    create directory dir as 'C:\Test';
    create java class using bfile(dir, 'Test.class');
    create procedure test is language java name 'Test.test()';
    call test();
    ORA-29541: class CM.Test could not be resolved

  • Runtime error

    HI all.....
    please look at this runtime error...... help me to solve this....
    Table name:- ZRDSSTOCK.
    Data class:- APPL1.
    Size category:- 5.
    Buffering not allowed .
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
           Occurred on     26.11.2007 at 12:38:44
    An SQL error occurred when accessing a table.
    What happened?
    What can you do?
    Make a note of the actions and input which caused the error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
    neither
    caught nor passed along using a RAISING clause, in the procedure "SAVE_DATA"
    "(FORM)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    How to correct the error
    The exception must either be prevented, caught within the procedure "SAVE_DATA"
    "(FORM)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    Database error text........: "ORA-01654: unable to extend index
    SAPPRD.ZRDSSTOCK~0 by 128 in tablespace PSAPPRDUSR"
    Internal call code.........: "[RSQL/INSR/ZRDSSTOCK ]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "YKSD010 " or "YKSD010 "
    "SAVE_DATA"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    System environment
    SAP Release.............. "620"
    Application server....... "venus"
    Network address.......... "192.168.1.151"
    Operating system......... "SunOS"
    Release.................. "5.9"
    Hardware type............ "sun4u"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 1
    Short dump setting....... "full"
    Database server.......... "venus"
    Database type............ "ORACLE"
    Database name............ "PRD"
    Database owner........... "SAPPRD"
    Character set............ "en_US"
    SAP kernel............... "620"
    Created on............... "Nov 17 2004 01:43:57"
    Created in............... "SunOS 5.8 Generic_108528-07 sun4u"
    Database version......... "OCI_817_64 "
    Patch level.............. "1732"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.."
    SAP database version..... "620"
    Operating system......... "SunOS 5.8, SunOS 5.9"
    User, transaction...
    Client.............. 400
    User................ "MMUSER"
    Language key........ "E"
    Transaction......... "ZRDSEN "
    Program............. "YKSD010 "
    Screen.............. "YKSD010 0100"
    Screen line......... 41
    Information on where termination occurred
    The termination occurred in the ABAP program "YKSD010 " in "SAVE_DATA".
    The main program was "YKSD010 ".
    The termination occurred in line 685 of the source code of the (Include)
    program "YKSD010 "
    of the source code of program "YKSD010 " (when calling the editor 6850).
    Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
    the
    procedure "SAVE_DATA" "(FORM)" but was not handled locally, not declared in the
    RAISING clause of the procedure.
    The procedure is in the program "YKSD010 ". Its source code starts in line 662
    of the (Include) program "YKSD010 ".
    Source code extract
    006550
    006560
    006570   *&----
    006580   *&      Form  save_data
    006590   *&----
    006600   *       text
    006610   *----
    006620   FORM SAVE_DATA.
    006630   data: begin of lv_test occurs 0,
    006640         werks type s886-werks,
    006650         pkunag type s886-pkunag,
    006660         end of lv_test.
    006670     LOOP AT INDT1.
    006680
    006690       INDT1-WERKS = WERKS.
    006700       INDT1-DAT1 = VDFRM.
    006710       INDT1-DAT2 = VLDTO.
    006720   *    indt1-kunnr = kunnr.
    006730
    006740
    006750       MODIFY INDT1.
    006760
    006770     ENDLOOP.
    006780   *if indt1 is not initial.
    006790   *select  pkunag werks from  s886 into corresponding fields of  table
    006800   *lv_test where pkunag = indt1-rdscode and werks = indt1-werks.
    006810   *if sy-subrc = 0.
    006820
    006830   &----
    changed by prajwal.k----
    006840
        INSERT ZRDSSTOCK FROM TABLE INDT1 ACCEPTING DUPLICATE KEYS.
    006860   *loop at indt1.
    006870   *  INSERT ZRDSSTOCK FROM INDT1.
    006880   *if sy-subrc <> 0.
    006890   *message w013 WITH INDT1-MATNR.
    006900   *endif.
    006910   *endloop.
    006920
    006930
    006940   &----
    end----
    006950   *        MESSAGE I004.
    006960   *else.
    006970   *message 'Please chek the RDS Code' type 'W'.
    006980   *endif.
    006990   *endif.
    007000   *endif.
    007010     LOOP AT INDT1.
    007020
    007030       AT LAST.
    007040
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 0                             SY-INDEX 0
    SY-TABIX 0                             SY-DBCNT 1
    SY-FDPOS 40                            SY-LSIND 0
    SY-PAGNO 0                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY YINDENT
    SY-UCOMM OPT1                          SY-TITLE RDS Stock Entry Screen
    SY-MSGTY                               SY-MSGID
    SY-MSGNO 000                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
         3 FORM         SAVE_DATA
           YKSD010
           YKSD010                                    685
         2 MODULE (PAI) YINDENT_IN
           YKSD010
           YKSD010                                    233
         1 EVENT        START-OF-SELECTION
           YKSD010
           YKSD010                                    181
    Chosen variables
         3 FORM         SAVE_DATA
           YKSD010
           YKSD010                                    685
    INDT1[]                        Table IT_121[1738x121]
                                   FFFF94120000000000020007000C00070000FFFF
                                   FFFE7BD00000000000060009006A00090000FFFF
    ... +  40
                                   00000005012B0000
                                   40000058004C0000
    INDT1                          TNV0024   2007090120070930CH01C0100300
                                   5453333222333333333333333344334333333322
                                   4E60024000200709012007093038013010030000
    ... +  40                              CAR####`#################`######
                                   2222222244500006000000000000000006000000
                                   0000000031200000C00000C00000C00000C00000
    ... +  80                      #
                                   0222222222222222222222222222222222222222
                                   C000000000000000000000000000000000000000
    ... + 120
                                   2
                                   0
    SY                             ###############Ê########################
                                   000000000000000C000000000000000000000000
                                   000000000000006A000000000000000000000000
    ... +  40                      #######(###############################y
                                   0000000200000000000000000000000000000007
                                   0001000800010000000100000000000000000009
    ... +  80                      ########################################
                                   0000000000000000000900000000000000000000
                                   0000000000000000001000000000000000000000
    ... + 120                      ########################################
                                   0000000000000000000000000000000000010009
                                   00000000000000000000000000000000000B0000
    ... + 160                      #######ÿ######MX C#############   E0   0
                                   0000000F00000045240000000000000222432223
                                   0000000F000000D8030010000C0000C000500000
    ... + 200                      100         ####__S                 400
                                   3332222222220000555222222222222222223332
                                   1000000000000000FF3000000000000000004000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    MODIFY-CX                    ########MODIFY
                                   0000000044444522222222222222222222222222
                                   00020000DF496900000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                          0101####
                                   222222222222222222223333000022222222
                                   000000000000000000000101000100000000
    <%_L005>-SEL                   ???
    OK_CODE                        SAVE
                                   5454222222222222222222222222222222222222
                                   3165000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    <%_TABLE_ZRDSSTOCK>            ???
    %_DUMMY$$
                                   2222
                                   0000
    VLDTO                          20070930
                                   33333333
                                   20070930
    SY-REPID                       YKSD010
                                   5454333222222222222222222222222222222222
                                   9B34010000000000000000000000000000000000
    SY-MSGID
                                   22222222222222222222
                                   00000000000000000000
    SPACE
                                   2
                                   0
    SY-MSGNO                       000
                                   333
                                   000
         2 MODULE (PAI) YINDENT_IN
           YKSD010
           YKSD010                                    233
    SY-UCOMM                       OPT1
                                   4553222222222222222222222222222222222222
                                   F041000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    COUNT                          ########
                                   00000000
                                   0000000C
    %_VLDTO_%_APP_%                Valid To
                                   566662562222222222222222222222
                                   61C9404F0000000000000000000000
    %_WERKS_%_APP_%                Plant
                                   566672222222222222222222222222
                                   0C1E40000000000000000000000000
    %_VDFRM_%_APP_%                Valid From
                                   566662476622222222222222222222
                                   61C94062FD00000000000000000000
    %B001000_BLOCK_1000            Enter Values
                                   4676725667672222222222222222222222222222
                                   5E452061C5530000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   222
                                   000
    VALUE
                                   222222222222222222
                                   000000000000000000
    SYST-REPID                     YKSD010
                                   5454333222222222222222222222222222222222
                                   9B34010000000000000000000000000000000000
    SY-SUBRC                       0
                                   0000
                                   0000
    A                              1
                                   3
                                   1
    SY-MSGV4
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    SY-MSGV2
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    VARI
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                          ####00000000000000
                                   2222222222222222222200003333333333333322
                                   0000000000000000000000000000000000000000
    ... +  80                          ####################################
                                   2222000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 120                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 160                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 200                      ########################################
                                   0000000000000000000000000000000000000000
                                   0000000000000000000000000000000000000000
    ... + 240                      ###############
                                   000000000000000
                                   000000000000000
    INDT[]                         Table IT_28[0x121]
                                   FFFF958EFFFF940200010001000000070000FFFF
                                   FFFE7B70FFFE74800007000C000000090000FFFF
    ... +  40
                                   0000000E012B0000
                                   40000048004C4000
    INDT                                     0000000000000000
                                   2222222222333333333333333322222222222222
                                   0000000000000000000000000000000000000000
    ... +  40                                 #############################
                                   2222222222200000000000000000000000000000
                                   0000000000000000C00000C00000C00000C00000
    ... +  80                      #
                                   0222222222222222222222222222222222222222
                                   C000000000000000000000000000000000000000
    ... + 120
                                   2
                                   0
         1 EVENT        START-OF-SELECTION
           YKSD010
           YKSD010                                    181
    No dump information available
    Application Calls
    No dump information available
    Application Information
    No dump information available
    Internal notes
    The termination occurred in the function "HandleRsqlErrors" of the SAP
    Basis System, specifically in line 760 of the module
    "//bas/620/src/krn/runt/absapsql.c#40".
    The internal operation just processed is "SQLS".
    The internal session was started at 20071126123440.
    Internal call code.........: "[RSQL/INSR/ZRDSSTOCK ]"
    Active calls in SAP kernel
    DoStack2 ( 0xffffffff7fff6490, 0xffffffff7fff6370, 0x0,0x203ac00, >
    > 0x100362d98, 0xffffffff7fff5b71 ), at 0x100362d98
    CTrcStack2 ( 0x103519930, 0x0, 0x10008, 0x1018dc400, 0x0, 0x1 ), at 0x10036296c
    __1cQrabax_CStackSave6F_v_ ( 0x1, 0x28e8400, 0x100000000, >
    > 0x1028e8400, 0x0, 0x1 ), at 0x1007cccac
    ab_rabax ( 0x1020c9a88, 0x4, 0x1018db3b6, 0x10355210c, 0x2000000, >
    > 0x8550c017 ), at 0x1007c0e68
    __1cKab_rsqlerr6Fpkcip0pnLRS_HEADER94_2pv_v_ ( 0x1018c7110, >
    > 0x2f8, 0x1020c6a14, 0xffffffff7fff6cd8, 0x1018c7121, 0x0 ), at 0x10071aae8
    __1cQHandleRsqlErrors6FnJRsqlError_nJCloseMode__v_ ( 0x8, >
    > 0xfffffffe97470708, 0x6c8000, 0x100000000, 0x0, 0x1 ), at 0x1006c8764
    __1cPSqlsExecuteCall6FCpnLDynCallInfo__v_ ( 0x100000000, >
    > 0x6a, 0x20c6800, 0xe8, 0x1d, 0x1 ), at 0x1006ddd24
    __1cIab_jsqls6F_v_ ( 0xfffffffe4a309e58, 0xfffffffe974707b0, >
    > 0x1028c4f00, 0xe8, 0x1d, 0x100000000 ), at 0x1006c91e8
    __1cIab_extri6F_i_ ( 0x103503ff8, 0xfffffffe4a309e44, 0x8a, >
    > 0x0, 0x1, 0x100000000 ), at 0x1005364e8
    __1cJab_xevent6Fpkc_i_ ( 0x0, 0x3416000, 0xfffffffe4c17f808, >
    > 0x0, 0x1d6f, 0xfffffffe975420d8 ), at 0x10068df84
    ab_dstep ( 0xd, 0xd, 0x46, 0x1, 0x103521a74, 0x103521800 ), at 0x1007d619c
    dynpmcal ( 0xfffffffe9747e8c8, 0x10203a800, 0x1037d8110, >
    > 0x101d2a000, 0x2660, 0x100000000 ), at 0x1003e2274
    dynppai0 ( 0xfffffffe9747e8c8, 0x0, 0x0, 0xfffffffe97482c3f, >
    > 0x0, 0x5 ), at 0x1003df680
    dynprctl ( 0x0, 0xfffffffe9747e8c8, 0x203c400, 0x1024d0cf8, >
    > 0x1020291c0, 0x1024d0c58 ), at 0x1003dd258
    dynpen00 ( 0x0, 0x203c400, 0x1, 0x100000000, 0x203a800, >
    > 0x10203a800 ), at 0x1003d9c24
    TskhLoop ( 0x2, 0x2, 0x10203a8c0, 0x8, 0x0, 0x1 ), at 0x1001d2b18
    tskhstart ( 0x100000000, 0x2028000, 0x102028000, 0x2028000, >
    > 0x1, 0x4 ), at 0x1001c5ae0
    DpMain ( 0x249a000, 0x26e3400, 0x10249a000, 0xffffffff7c755f44, >
    > 0x0, 0x1 ), at 0x100111e60
    List of ABAP programs affected
    Type
    Program
    Gen. Date  Time
    Load Size
    Prg
    YKSD010
    26.11.2007 09:44:15
    55296
    Prg
    SAPMSSY0
    18.12.2004 11:31:22
    62464
    Prg
    SAPMSSYD
    05.06.2002 17:09:33
    16384
    Prg
    SAPFSYSCALLS
    14.02.2002 14:22:47
    6144
    Prg
    RSDBRUNT
    18.12.2004 11:32:05
    220160
    Typ
    RSSCR
    .  .       : m:15
    4096
    Prg
    RSDBSPBL
    13.12.2002 12:24:35
    58368
    Prg
    SAPDB__S
    14.02.2002 14:22:47
    16384
    Typ
    VARID
    12.05.1997 16:51:30
    4096
    Prg
    %_CSYDB0
    14.02.2002 14:22:46
    28672
    Prg
    RSDBSPVA
    18.12.2004 11:18:02
    108544
    Typ
    RSVAMEMKEY
    07.05.1997 13:07:49
    2048
    Prg
    RSDBSPMC
    05.06.2002 17:09:26
    66560
    Typ
    DDSHDESCR
    03.09.1997 03:05:16
    3072
    Typ
    SPPARAMS
    07.05.1997 13:10:38
    1024
    Prg
    SAPLICON
    18.12.2004 09:37:13
    23552
    Prg
    %_CICON
    14.02.2002 14:22:46
    57344
    Prg
    SAPLSABE
    14.02.2002 14:22:47
    11264
    Prg
    SAPLSECU
    18.12.2004 11:16:36
    63488
    Prg
    SAPLDSYA
    14.02.2002 14:22:47
    38912
    Prg
    SAPFSDS1
    13.12.2002 12:14:34
    46080
    Typ
    TDCLD
    02.11.1998 09:51:35
    4096
    Prg
    SAPLSDOD
    18.12.2004 11:31:31
    38912
    Typ
    DOKIL
    12.05.1997 16:46:17
    2048
    Prg
    SAPCNVE
    14.02.2002 14:22:47
    6144
    Prg
    SAPLLANG
    14.02.2002 14:22:47
    8192
    Typ
    T002
    14.02.1998 10:24:58
    2048
    Typ
    RSEXFCODE
    13.08.1997 12:52:57
    1024
    Typ
    RSPARINT
    10.04.1995 09:58:38
    1024
    Prg
    SAPLSCNT
    14.02.2002 14:22:47
    22528
    Prg
    SAPLSVSM
    13.12.2002 12:16:46
    22528
    Prg
    SAPLSGUI
    13.12.2002 12:27:47
    29696
    Prg
    SAPLSTTM
    18.12.2004 11:36:10
    73728
    Prg
    SAPLSBDC
    13.12.2002 12:13:58
    37888
    Prg
    CL_DATAPROVIDER===============CP
    14.02.2002 14:22:46
    38912
    Prg
    %_CCNTL
    14.02.2002 14:22:46
    13312
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    SAPLSTUP
    18.12.2004 09:34:15
    62464
    Prg
    SAPLCNDP
    18.12.2004 11:35:59
    153600
    Prg
    SAPFGUICNTL
    13.12.2002 12:30:03
    20480
    Prg
    SAPLOLEA
    18.12.2004 11:30:56
    76800
    Prg
    SAPLSFES
    18.12.2004 11:35:59
    162816
    Prg
    SAPLSPLUGIN
    14.02.2002 14:22:48
    6144
    Prg
    SAPLGRFC
    14.02.2002 14:22:47
    13312
    Prg
    SAPSHDTV
    19.06.2003 19:25:09
    27648
    Typ
    SHDSTU
    14.12.1998 23:15:34
    2048
    Typ
    SHDSTCIU
    14.12.1998 23:15:34
    1024
    Typ
    SSCRTEXTS
    03.09.1997 03:12:33
    2048
    Typ
    SSCRFIELDS
    13.05.1997 12:54:26
    3072
    Prg
    CL_GUI_PROPS_CONSUMER=========CP
    13.12.2002 12:11:27
    27648
    Prg
    SAPLTHFB
    18.12.2004 11:36:24
    293888
    Prg
    CL_DYNAMIC_GUI_EXTENSIONS=====CP
    14.02.2002 14:22:46
    33792
    Prg
    CL_GUI_DATAMANAGER============CP
    18.12.2004 09:49:48
    69632
    Prg
    CL_ABAP_CHAR_UTILITIES========CP
    13.12.2002 12:13:57
    11264
    Typ
    MARD
    15.11.2000 17:38:50
    8192
    Prg
    RSDBSPVD
    18.12.2004 09:35:18
    73728
    Typ
    RVARI
    30.03.1998 09:40:50
    3072
    Typ
    RSVARIVDAT
    04.04.1995 16:12:54
    2048
    Typ
    ZLOCKPGM
    11.02.2006 09:28:47
    2048
    Prg
    %_CCXTAB
    14.02.2002 14:22:46
    6144
    Typ
    ZRDSSTOCK
    26.11.2007 09:44:15
    3072
    Prg
    SAPLGRAP
    18.12.2004 11:36:25
    350208
    Prg
    CL_GUI_FRONTEND_SERVICES======CP
    18.12.2004 11:36:27
    84992
    Prg
    CL_GUI_OBJECT=================CP
    13.12.2002 12:13:57
    348160
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    CL_GUI_CFW====================CP
    05.06.2002 17:02:46
    150528
    Typ
    TOLE
    29.07.1998 19:56:01
    2048
    Prg
    %_COLE2
    14.02.2002 14:22:46
    8192
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Typ
    SWCBCONT
    15.11.2000 17:55:11
    2048
    Prg
    SAPLCNTL
    14.02.2002 14:22:47
    270336
    Prg
    SAPLCNTH
    14.02.2002 14:22:47
    22528
    Typ
    FILE_TABLE
    05.01.1999 10:23:11
    1024
    Prg
    SAPLURFC
    18.12.2004 10:30:34
    16384
    Prg
    SAPLSRFC
    18.12.2004 11:36:45
    34816
    Prg
    SAPLSYST
    14.02.2002 14:22:48
    29696
    Prg
    SAPMSSY1
    14.02.2002 14:22:48
    18432
    Typ
    ARFCDATA
    04.04.1995 15:40:32
    3072
    Typ
    RFC_FIELDS
    20.08.1998 10:56:34
    2048
    Typ
    DPPROPS
    09.07.1997 23:53:23
    1024
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    SAPLCNT0
    14.02.2002 14:22:47
    30720
    Typ
    OLE_PA
    04.04.1995 16:02:19
    2048
    Typ
    ARFCRDATA
    09.11.2000 14:04:16
    4096
    Typ
    OLE_VERBS
    04.04.1995 16:02:20
    2048
    Prg
    CL_ABAP_TYPEDESCR=============CP
    18.12.2004 10:20:56
    22528
    Prg
    CL_ABAP_ELEMDESCR=============CP
    18.12.2004 10:20:34
    18432
    Prg
    CL_ABAP_DATADESCR=============CP
    18.12.2004 10:20:34
    14336
    Prg
    CL_ABAP_REFDESCR==============CP
    18.12.2004 10:20:56
    16384
    Prg
    CL_ABAP_STRUCTDESCR===========CP
    18.12.2004 10:20:56
    19456
    Prg
    CL_ABAP_COMPLEXDESCR==========CP
    18.12.2004 10:20:34
    13312
    Prg
    CL_ABAP_TABLEDESCR============CP
    18.12.2004 10:20:56
    17408
    Prg
    CL_ABAP_CLASSDESCR============CP
    18.12.2004 10:20:56
    23552
    Prg
    CL_ABAP_OBJECTDESCR===========CP
    18.12.2004 10:20:56
    26624
    Prg
    CL_ABAP_INTFDESCR=============CP
    18.12.2004 10:20:34
    19456
    Typ
    OBJ_RECORD
    14.02.1998 08:30:43
    2048
    Prg
    CL_ABAP_SOFT_REFERENCE========CP
    29.03.2001 16:42:12
    7168
    Prg
    CL_ABAP_REFERENCE=============CP
    14.02.2002 14:22:46
    6144
    Prg
    CL_IXML=======================CP
    13.12.2002 12:12:08
    210944
    Prg
    CL_IXML_UNKNOWN===============CP
    13.12.2002 12:12:08
    9216
    Prg
    SAPFGUICNTL_CFW
    14.02.2002 14:22:47
    12288
    Prg
    SAPLSPO1
    18.12.2004 11:37:25
    43008
    Prg
    SAPLCSTR
    18.12.2004 11:21:47
    63488
    Typ
    MAKT
    28.08.1997 08:52:19
    2048
    Typ
    KNA1
    18.12.2004 14:35:36
    22528
    Typ
    MARA
    02.07.2002 16:31:17
    19456
    Typ
    ZRDSSTOCK
    26.11.2007 09:44:15
    3072
    Prg
    CX_SY_OPEN_SQL_DB=============CP
    14.02.2002 14:22:47
    9216
    Typ
    SCX_SRCPOS
    09.11.2000 14:12:15
    1024
    Prg
    CX_SY_OPEN_SQL_ERROR==========CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_SY_SQL_ERROR===============CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_DYNAMIC_CHECK==============CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_ROOT=======================CP
    14.02.2002 14:22:47
    9216
    Prg
    CX_NO_CHECK===================CP
    14.02.2002 14:22:47
    8192
    Prg
    CX_SY_NO_HANDLER==============CP
    14.02.2002 14:22:47
    8192
    Typ
    SYST
    04.12.2000 14:54:51
    24576
    List of internal tables
    PROGRAM=YKSD010DATA=INDT1[]
    TABH+  0(20) = FFFFFFFE974B1D20000000000000000000000026
    TABH+ 20(20) = 00000079000006CA0000007900000000FFFFFFFF
    TABH+ 40(16) = 0400000000000558001024BC00000000
    store        = 0xFFFFFFFE974B1D20
    ext1         = 0x0000000000000000
    id           = 38    (0x00000026)
    label        = 121   (0x00000079)
    fill         = 1738  (0x000006CA)
    leng         = 121   (0x00000079)
    lopc         = 0     (0x00000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000015
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 7     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    lock         = 0
    shrd         = 0
    visited      = 0
    unShareable  = 0
    wasShared    = 0
    iterIsValid  = 0
    isShareable  = 0
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xFFFFFFFE974B1468
    pghook       = 0xFFFFFFFE975BCBF0
    idxPtr       = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2480  (0x000009B0)
    lineAlloc    = 1840  (0x00000730)
    store_id     = 20    (0x00000014)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    PROGRAM=YKSD010DATA=INDT[]
    TABH+  0(20) = FFFFFFFE975B87E0FFFFFFFE9744082000000017
    TABH+ 20(20) = 0000001C000000000000007900000000FFFFFFFF
    TABH+ 40(16) = 04000000000004E8001024BC04000000
    store        = 0xFFFFFFFE975B87E0
    ext1         = 0xFFFFFFFE97440820
    id           = 23    (0x00000017)
    label        = 28    (0x0000001C)
    fill         = 0     (0x00000000)
    leng         = 121   (0x00000079)
    lopc         = 0     (0x00000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000013
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 7     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    lock         = 0
    shrd         = 0
    visited      = 0
    unShareable  = 0
    wasShared    = 0
    iterIsValid  = 0
    isShareable  = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xFFFFFFFE975172E8
    pghook       = 0xFFFFFFFE975BCCB8
    idxPtr       = 0x0000000000000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2480  (0x000009B0)
    lineAlloc    = 176   (0x000000B0)
    store_id     = 145   (0x00000091)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0000000000000000
    hsdir        = 0x0000000000000000
    ext2         = 0xFFFFFFFE974596A8
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0xFFFFFFFE974A6B68
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000
    Directory of Application Tables
    Program
      Name................ Contents....1........2........3........4........5....+....
    YKSD010
      SYST                 |00000000000000x06Ê000000000000
      VARI                 |
      T006A                |                                                        |
      SSCRFIELDS           |
      SSCRTEXTS            |
    RSDBRUNT
      VARID                |
    SAPLICON
      ICONT                |
    SAPFSDS1
      TDCLD                |RE  DOKU   8R XX XXLIMUDOKUX x1E0XR3TRPROGX         |
    SAPLSDOD
      DOKIL                |
    SAPLLANG
      T002                 |ES1EN|
    SAPLOLEA
      TOLE                 |SAP.DATAPROVIDER.1                    {799104C5-04C5-11D0-
    SAPSHDTV
      SHDSTU               |                                                     |
      SHDSTCIU             |                                                  |
    CL_GUI_PROPS_CONSUMER=========CP
      EUDB                 |%C0009900047492F0EC1BC16DDE1000000C0A80197  0000
    CL_GUI_FRONTEND_SERVICES======CP
      EUDB                 |FE0009900047492F0EC1BC16DDE1000000C0A80197  0000
    Directory of Application Tables (Administrative Information)
    Program
      Name.......................... Time.......... Length...
    CL_GUI_FRONTEND_SERVICES======CP
      SYST                           20010612125650 00002404
      VARI                                          00002972
      T006A                                         00000056
      SSCRFIELDS                     20000323224119 00000854
      SSCRTEXTS                                     00000371
    RSDBRUNT
      VARID                                         00000132
    SAPLICON
      ICONT                                         00000065
    SAPFSDS1
      TDCLD                                         00000050
    SAPLSDOD
      DOKIL                                         00000076
    SAPLLANG
      T002                                          00000005
    SAPLOLEA
      TOLE                                          00000197
    SAPSHDTV
      SHDSTU                                        00000053
      SHDSTCIU                                      00000050
    CL_GUI_PROPS_CONSUMER=========CP
      EUDB                                          00003940
    CL_GUI_FRONTEND_SERVICES======CP
      EUDB                                          00003940
    ABAP control blocks CONT
    Include                                 Line source code
    Index Name F1 Co Par01 Par2. Par3. Par4. Tabl
    YKSD010                                   667 LOOP AT INDT1.
    1029 LOOP 05     36     37
    1033 BRAN 05 Branch to 1043
    YKSD010                                   669 INDT1-WERKS = WERKS.
    1034 mvqk 04     178    946
    YKSD010                                   670 INDT1-DAT1 = VDFRM.
    1036 mvqk 08     162    982
    YKSD010                                   671 INDT1-DAT2 = VLDTO.
    1038 mvqk 08     170    1022
    YKSD010                                   675 MODIFY INDT1.
    1040 TMOD 04     36     37
    YKSD010                                   677 ENDLOOP.
    1042 BRAX 01 Branch to 1029
    YKSD010                                   685 INSERT ZRDSSTOCK FROM TABLE IN
    1043 SQLS 0B
    1044 SQLS 00     107
    1045 PAR1 00     131
    1046 SQLS 39     1
    1047 SQLS 39     37
    >>>>> SQLS 1D     36
    YKSD010                                   701 LOOP AT INDT1.
    1049 LOOP 03 79  36     37
    1053 LOOP 05     36     37
    1057 BRAN 05 Branch to 1111
    YKSD010                                   703 AT LAST.
    1058 CNTL 04
    1062 BRAN 03 Branch to 1080
    YKSD010                                   705 MESSAGE I004.
    1063 CATC 08
    1064 MOVL 00  2  58     21
    End of runtime analysis
    Regards
    Prajwal.K

    Refer Amit's reply -
    Exception occurred which is assigned to the class 'CX_SY_OPEN_SQL_DB',
    Regards,
    Amit
    Reward all helpful replies.

  • Regarding runtime error DBIF_RSQL_SQL_ERROR and exception CX_SY_OPEN_SQL_DB

    Hi All,
    I am loading a COPA cube from a DSO.
    There are about 15million records to be loaded. every time i try loading the data, 1 or 2 Data packages gets stuck and finally it leads to a runtime error DBIF_RSQL_SQL_ERROR with exception CX_SY_OPEN_SQL_DB.
    When i checked in SM21 transaction code, i got the following message
    10:41:52 BTC  018 500 AMRUKV                     BY  O Deadlock occurred
    10:41:53 BTC  018 500 AMRUKV                     BY  4 Database error 60 at INS access to table /BIC/FCSDV
    10:41:53 BTC  018 500 AMRUKV                     BY  0 > ORA-00060: deadlock detected while waiting for resource
    10:41:54 BTC  018 500 AMRUKV                     AB  0 Run-time error "DBIF_RSQL_SQL_ERROR" occurred
    10:41:58 BTC  018 500 AMRUKV                     AB  1 > Short dump "080818 104154 s0173bel PB100 " generated
    10:41:58 BTC  018 500 AMRUKV                     D0  1 Transaction Canceled 00 671 ( DBIF_RSQL_SQL_ERROR 20080818104154s0173bel_PB1_00 AMRUKV 500 )
    In transaction code ST22 i got the following message:
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
    Date and Time          18.08.2008 10:41:54
    Short text
         SQL error in the database when accessing a table.
    What happened?
         The database system detected a deadlock and avoided it by rolling back
         your transaction.
    What can you do?
         If possible (and necessary), repeat the last database transaction in the
          hope that locking the object will not result in another deadlock.
         Note which actions and input led to the error.
         For further help in handling the problem, contact your SAP administrator
         You can use the ABAP dump analysis transaction ST22 to view and manage
         termination messages, in particular for long term reference.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught
          in  procedure "WRITE_ICFACT" "(FORM)", nor was it propagated by a RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         The database system recognized that your last operation on the database
         would have led to a deadlock.
         Therefore, your transaction was rolled back
         to avoid this.
         ORACLE always terminates any transaction that would result in deadlock.
         The other transactions involved in this potential deadlock
         are not affected by the termination.
    How to correct the error
        Database error text........: "ORA-00060: deadlock detected while waiting for
         resource"
        Internal call code.........: "[RSQL/INSR//BIC/FCSDVD_C02 ]"
        Please check the entries in the system log (Transaction SM21).
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "DBIF_RSQL_SQL_ERROR" "CX_SY_OPEN_SQL_DB"
        "GPD3UMZD6V4YAKZAIWAOCYLV07Y" or "GPD3UMZD6V4YAKZAIWAOCYLV07Y"
        "WRITE_ICFACT"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
        4. Details about the conditions under which the error occurred or which
        actions and input led to the error.
        The exception must either be prevented, caught within proedure
        "WRITE_ICFACT" "(FORM)", or its possible occurrence must be declared in the
        RAISING clause of the procedure.
        To prevent the exception, note the following:
    Can anybody suggest on what can be done?
    Thanks in Advance,
    Regards
    A.T

    Hi ,
    This is a table space issue....
    u will be getting a Dump...as DBIF_RSQL_SQL_ERROR check in ST22. in this DUMP if u scroll down u will find the table for which this is failing. Actually this is like some of the table related to the DSO is not having sufficient space to cary out the transaction. hence it is failing.
    U can also see in DB02--> Deadlock....u will see that there is a deadlock for this table. So find the table from ST22 and ask ur basis team to increase the space for this table....
    This can be solved only by increasing the space of the table...no other solution....ask help from ur basis team.
    Thanks
    Sandeep

  • Help me Please !!!! Runtime errors         DBIF_RSQL_SQL_ERROR      alway

    Hi guru's,
    I have a genric data source with function module which feeds data to a genric ods in bw.
    But at time of data upload i see quality status in manage of ods green saying (0 of 0 records extracted) but it asks me to check dump in st22 which is as follows
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Exception              CX_SY_OPEN_SQL_DB
           Occurred on     30.01.2008 at 10:41:31
    An SQL error occurred when accessing a table.
    What happened?
    What can you do?
    Make a note of the actions and input which caused the error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
    neither
    caught nor passed along using a RAISING clause, in the procedure
    "STORAGE_LOC_GET" "(METHOD)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    How to correct the error
    The exception must either be prevented, caught within the procedure
    "STORAGE_LOC_GET"
    "(METHOD)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    Database error text........: "ORA-04030: out of process memory when trying to
    allocate 1332 bytes (callheap,qkkele)"
    Internal call code.........: "[RSQL/READ/T001L ]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "SAPLMIGO" or "########################################"
    "STORAGE_LOC_GET"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    System environment
    SAP Release.............. "620"
    Application server....... "TOGR3PRD1"
    Network address.......... "10.1.9.9"
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "8x Intel 801586"
    Character length......... 8 Bits
    Pointer length........... 32 Bits
    Work process number...... 1
    Short dump setting....... "full"
    Database server.......... "TOGR3PRD2"
    Database type............ "ORACLE"
    Database name............ "PRD"
    Database owner........... "SAPPRD"
    Character set............ "Thai_Thailand.874"
    SAP kernel............... "640"
    Created on............... "Sep 19 2005 00:05:54"
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version......... "OCI_920_SHARE "
    Patch level.............. "91"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE
    10.1.0.."
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    User, transaction...
    Client.............. 900
    User................ 0060302
    Language key........ "E"
    Transaction......... "MIGO "
    Program............. "SAPLMIGO"
    Screen.............. "SAPLMIGO 0001"
    Screen line......... 15
    Information on where terminated
    The termination occurred in the ABAP program "SAPLMIGO" in "STORAGE_LOC_GET".
    The main program was "SAPLMIGO ".
    The termination occurred in line 0 of the source code of the (Include)
    program "########################################"
    of the source code of program "########################################" (when
    calling the editor 00).
    Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
    the
    procedure "STORAGE_LOC_GET" "(METHOD)" but was not handled locally, not
    declared in the
    RAISING clause of the procedure.
    The procedure is in the program "SAPLMIGO ". Its source code starts in line 158
    of the (Include) program "LMIGOBU2 ".
    Contents of system fields
    SY field contents..................... SY field contents.....................
    SY-SUBRC 4                             SY-INDEX 1
    SY-TABIX 0                             SY-DBCNT 1
    SY-FDPOS 1                             SY-LSIND 0
    SY-PAGNO 1                             SY-LINNO 1
    SY-COLNO 1                             SY-PFKEY MIGO_STATUS
    SY-UCOMM MIGO_OK_TAKE_VALUE
    SY-TITLE Goods Issue Others - 0060302 &#3627;&#3609;.&#3649;&#3612;&#3609;&#3585;&#3649;&#3621;&#3632;&#3592;&#3609;&#3607;.&#3588;&#3621;&#3633;&#3591;&#3626;&#3636;&#3609;&#3588;&#3657;&#3634;,&#3588;&#3621;
    SY-MSGTY E                             SY-MSGID MICK
    SY-MSGNO 004                           SY-MSGV1
    SY-MSGV2                               SY-MSGV3
    SY-MSGV4
    Active calls / events
    No.... Type........ Name..........................
           Program
           Include                                  Line
           Class
         7 METHOD       STORAGE_LOC_GET
           SAPLMIGO
           LMIGOBU2                                   173
           LCL_MIGO_BUFFER
         6 METHOD       LINE_CHECK
           SAPLMIGO
           LMIGOKL4                                   217
           LCL_MIGO_KERNEL
         5 METHOD       LINE_MODIFY
           SAPLMIGO
           LMIGOKL1                                   123
           LCL_MIGO_KERNEL
         4 METHOD       VALUECOPY
           SAPLMIGO
           LMIGOTV3                                   370
           LCL_MIGO_TABLEVIEW
         3 METHOD       LIF_MIGO_FRAME~OKCODE_HANDLER
           SAPLMIGO
           LMIGOTV2                                   174
           LCL_MIGO_TABLEVIEW
         2 METHOD       OKCODE_DISPATCH
           SAPLMIGO
           LMIGOFR2                                   171
           LCL_MIGO_FRAME
         1 MODULE (PAI) PAI_OKCODE_DISPATCH
           SAPLMIGO
           LMIGOPAI                                    11
    Chosen variables
         7 METHOD       STORAGE_LOC_GET
           SAPLMIGO
           LMIGOBU2                                   173
    I_PLANT
                                   2222
                                   0000
    I_STORAGE_LOC                  2031
                                   3333
                                   2031
    E_STORAGE_LOC
                                   222222222222222222
                                   000000000000000000
    %_FUN*TV_GOSPLIT               <initial>
                                   <initial>
                                   <initial>
    GOITEM-KZVBR
                                   2
                                   0
    <%_TABLE_T001L>                ???
    %_SPACE
                                   2
                                   0
    %_ARCHIVE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    SYST-REPID                     SAPLMIGO
                                   5454444422222222222222222222222222222222
                                   310CD97F00000000000000000000000000000000
    <%_TABLE_TQSS1>                ???
    SY-REPID                       SAPLMIGO
                                   5454444422222222222222222222222222222222
                                   310CD97F00000000000000000000000000000000
    %_DUMMY$$
                                   2222
                                   0000
    GODYNPRO-DETAIL_ZEILE          0000
                                   3333
                                   0000
    LCL_MIGO_GLOBALS=>KERNEL->S_CO WA
                                   54
                                   71
    LS_T001L
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   22222222222222222222222222222
                                   00000000000000000000000000000
    OREF_DETAIL_MATERIAL          
    SY-SUBRC                       4
                                   0000
                                   4000
    GOITEM_TV                      0017
                                   3333222222222222222222222222222222222222
                                   0017000000000000000000000000000000000000
    ... +  40                                    G152 Wh F SV U65 -025 -050
                                   2222222222222243332562425525332233322333
                                   0000000000000071520780603605650D0250D050
    ... +  80                                    X#######
                                   2222222222222250000000222222222222222222
                                   000000000000008000020C000000000000000000
    ... + 120                                 4020111650-002-005          9
                                   2222222222233333333332333233322222222223
                                   000000000004020111650D002D00500000000009
    ... + 160                      03                                ######
                                   3322222222222222222222222222222222000000
                                   0300000000000000000000000000000000000000
    ... + 200                      #                                      0
                                   0222222222222222222222222222222222222223
                                   C000000000000000000000000000000000000000
    ... + 240                      000000000000000
                                   333333333333333
                                   000000000000000
    SY-XPROG                       SAPCNVE
                                   5454454222222222222222222222222222222222
                                   3103E65000000000000000000000000000000000
    %_FL1*TV_GOFREIGHT             1
                                   0000
                                   1000
    SY-XFORM                       CONVERSION_EXIT
                                   444545544454545222222222222222
                                   3FE65239FEF5894000000000000000
    %_FUN*TV_GOSERIAL              1
                                   0000
                                   1000
         6 METHOD       LINE_CHECK
           SAPLMIGO
           LMIGOKL4                                   217
    IS_OLD_GOITEM                            00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    CS_GOITEM                                00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    LC_BATCH_CONVERSION_ACTIVE     1
                                   3
                                   1
    LCL_MIGO_CURSOR=>VALUE         FG Rework
                                   4425676762222222222222222222222222222222
                                   670257F2B0000000000000000000000000000000
    ... +  40
                                   2222222222
                                   0000000000
    %_FL1*TV_GOSPLIT               <initial>
                                   <initial>
                                   <initial>
    LS_GOPLANT
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   22222222222222222222222222222
                                   00000000000000000000000000000
    GOITEM-EXVKW                   #######
                                   0000000
                                   000000C
    ME->PS_GOHEAD+746(3)           TH
                                   542
                                   480
    LS_GOPLANT-LAND1
                                   222
                                   000
    LS_GOT001L
                                   222222222222222222
                                   000000000000000000
    SY                             ########################################
                                   0000000000000000000000000000000000000000
                                   1000100000001000000000000000000000000000
    ... +  40                      ########################################
                                   0000000000000000000000000000000000001000
                                   100010001000000010000000000000000000A000
    ... +  80                      ################<#######################
                                   0000000000000000300000000000000000000000
                                   0000000050004000C00000000000000000000000
    ... + 120                      ####################################p###
                                   0000000000000000000000000000000010007000
                                   00000000000000000000000000000000A0000000
    ... + 160                      ####<#######pb## C#############   E1   0
                                   0000300000007600240000000000000222432223
                                   0000C00000000200030030000C0000C000510000
    ... + 200                      0010001     ####D$S                 900
                                   3333333222220000425222222222222222223332
                                   0010001000001000443000000000000000009000
    ... + 240                           00
                                   222223322222222
                                   000000000000000
    OREF_HEADER_GENERAL           
    LS_GOITEM-WERKS
                                   2222
                                   0000
    LS_GOITEM-LGORT                2031
                                   3333
                                   2031
    OREF_SPLIT_QUANTITY           
    ME                            
    LS_GOITEM                                00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
         5 METHOD       LINE_MODIFY
           SAPLMIGO
           LMIGOKL1                                   123
    I_LINE                         2
                                   0000
                                   2000
    I_TABIX                        0
                                   0000
                                   0000
    I_INSERT
                                   2
                                   0
    I_FORCE_CHANGE
                                   2
                                   0
    I_AUTHORITY_CHECK
                                   2
                                   0
    I_STATUS_DELAYED               X
                                   5
                                   8
    I_DEPENDENT_TABLES
                                   2
                                   0
    IT_GOSERIAL                    Table[initial]
    IT_GOFREIGHT                   Table[initial]
    CS_GOITEM                                00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    ME                            
    LS_OLD_GOITEM                            00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    LS_NEW_GOITEM                            00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    ABAP_FALSE
                                   2
                                   0
    GODYNPRO-UMCHA
                                   2222222222
                                   0000000000
    ME->PT_GOITEM                  Table IT_156[20x2752]
    L_TABIX                        2
                                   0000
                                   2000
         4 METHOD       VALUECOPY
           SAPLMIGO
           LMIGOTV3                                   370
    LS_TARGET_GOITEM-GLOBAL_COUNTE 000002
                                   333333
                                   000002
    L_CHECKFIELD                   GOITEM-LGOBE
                                   444544244444222222222222222222
                                   7F945DDC7F25000000000000000000
    L_STATUS                       1229932294
                                   0
                                   6
    G_SUB_TAXES
                                   2222
                                   0000
    LCL_MIGO_SCREENMODIFICATION=>C 960038918
                                   0
                                   6
    L_FIELD_TARGET                 LS_TARGET_GOITEM-LGORT
                                   4555454455444544244455222222222222222222
                                   C3F412754F7F945DDC7F24000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   222222222222
                                   000000000000
    <L_VALUE_TARGET>               2031
                                   3333
                                   2031
    <L_VALUE_SOURCE>               2031
                                   3333
                                   2031
    LCL_MIGO_GLOBALS=>KERNEL      
    L_TARGETLINE                   2
                                   0000
                                   2000
    ABAP_TRUE                      X
                                   5
                                   8
    LS_TARGET_GOITEM                         00000002000000000000     X
                                   2222222222333333333333333333332222252222
                                   0000000000000000020000000000000000080000
    ... +  40                         903H   - 1   1         201
                                   2223334222223222322222222233322222222222
                                   0009038000D01000100000000020100000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 200
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240
                                   222222222222222
                                   000000000000000
    %_CX_GRID_ID                   1
                                   0000
                                   1000
         3 METHOD       LIF_MIGO_FRAME~OKCODE_HANDLER
           SAPLMIGO
           LMIGOTV2                                   174
    I_OKCODE                       MIGO_OK_TAKE_VALUE
                                   4444544554445544542222222222222222222222
                                   D97FFFBF41B5F61C550000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    GOSPLIT                                                    #######
                                   2222222222222222222222222222000000022222
                                   0000000000000000000000000000000000C00000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    LCL_MIGO_GLOBALS=>KERNEL      
    GOSEARCH_PO
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 160                                                    0000000000
                                   2222222222222222222222222222223333333333
                                   0000000000000000000000000000000000000000
    ... + 200                      000000
                                   3333332222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 240                      000000
                                   333333
                                   000000
    LS_CONTROL
                                   222222222222222
                                   000000000000000
    %_CX_TABSTRIP_VERSION          0
                                   3
                                   0
    GOSEARCH_ORD
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   222222222222
                                   000000000000
    RSJOBINFO                                                      00000000
                                   2222222222222222222222222222222233333333
                                   0000000000000000000000000000000000000000
    ... +  40                      000000
                                   3333332222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80                      ####
                                   0000
                                   0000
    ME                            
         2 METHOD       OKCODE_DISPATCH
           SAPLMIGO
           LMIGOFR2                                   171
    I_OKCODE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    L_MSG_STRING
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CAL 0000000000
                                   3333333333
                                   0000000000
    L_OKCODE                       MIGO_OK_TAKE_VALUE
                                   4444544554445544542222222222222222222222
                                   D97FFFBF41B5F61C550000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    SCREEN                         OK_NEW_ITEMS
                                   4454455454452222222222222222222222222222
                                   FBFE57F945D30000000000000000000000000000
    ... +  40
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  80
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... + 120                                              00001#10000 ####
                                   2222222222222222222222223333303333320000
                                   0000000000000000000000000000101000000000
         1 MODULE (PAI) PAI_OKCODE_DISPATCH
           SAPLMIGO
           LMIGOPAI                                    11
    LCL_MIGO_FRAME=>TRACE_INFOS
                                   2
                                   0
    LCL_MIGO_GLOBALS=>EXTERNAL_CAL 0000000000
                                   3333333333
                                   0000000000
    LCL_MIGO_GLOBALS=>EXTERNAL_CAL 0000
                                   3333
                                   0000
    LCL_MIGO_GLOBALS=>EXTERNAL_CAL 00000
                                   33333
                                   00000
    OKCODE
                                   2222222222222222222222222222222222222222
                                   0000000000000000000000000000000000000000
    ... +  40
                                   222222222222222222222222222222
                                   000000000000000000000000000000
    Application Calls
    No dump information available
    Application Information
    No dump information available
    Internal notes
    The termination occurred in the function "HandleRsqlErrors" of the SAP
    Basis System, specifically in line 773 of the module
    "//bas/640_REL/src/krn/runt/absapsql.c#16".
    The internal operation just processed is "SQLS".
    The internal session was started at 20080130103952.
    Internal call code.........: "[RSQL/READ/T001L ]"
    Active calls in SAP kernel
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App       : disp+work.EXE (pid=4832)
    When      : 1/30/2008 10:41:32.722
    Threads   : 2
    Computer Name       : TOGR3PRD1
    User Name           : SAPServicePRD
    Number of Processors: 8
    Processor Type: x86 Family 15 Model 2 Stepping 6
    Windows Version     : 5.2 Current Build: 3790
    State Dump for Thread Id 14ac
    eax=00000000 ebx=00000000 ecx=00000000 edx=00000000 esi=003c61d4 edi=003c61a8
    eip=7c82ed54 esp=03fedfb4 ebp=03fedfc4 iopl=0         nv up ei pl nz ac po nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000216
    function : KiFastSystemCallRet
             7c82ed54 c3               ret
             7c82ed55 8da42400000000   lea     esp,[esp]              ss:03fedfb4=7c82ed5c
             7c82ed5c 8d642400         lea     esp,[esp]              ss:07fdb4c7=00000000
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    03fedfc4 003c61a8 00000000 00000001 01d40b84 000014ac ntdll!KiFastSystemCallRet
    00000000 00000000 00000000 00000000 00000000 00000000 <nosymbols>
    State Dump for Thread Id 168c
    eax=00000001 ebx=00000103 ecx=fffffffe edx=003c0000 esi=00000000 edi=00000000
    eip=7c82ed54 esp=05fefeb0 ebp=05fefef4 iopl=0         nv up ei pl zr na po nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000246
    function : KiFastSystemCallRet
             7c82ed54 c3               ret
             7c82ed55 8da42400000000   lea     esp,[esp]              ss:05fefeb0=7c821514
             7c82ed5c 8d642400         lea     esp,[esp]              ss:09fdd3c3=00000000
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    05fefef4 00fede51 00000eb0 00000000 00000000 003c7920 ntdll!KiFastSystemCallRet
    05feff84 7c349565 00000000 00000000 00000000 003c79b8 disp+work!SigIMsgFunc >
    > [signt.c (563)]
    05feffb8 77e6608b 003c79b8 00000000 00000000 003c79b8 MSVCR71!endthreadex
    05feffec 00000000 7c3494f6 003c79b8 00000000 00000000 kernel32!GetModuleFileNameA
    List of ABAP programs affected
    Type
    Program
    Gen. Date  Time
    Load Size
    Prg
    SAPLMIGO
    22.09.2005 21:54:56
    1226752
    Prg
    SAPMSSYD
    05.06.2002 17:09:33
    16384
    Prg
    SAPFSYSCALLS
    14.02.2002 14:22:47
    6144
    Prg
    CL_MMIM_USERDEFAULTS==========CP
    06.05.2002 10:42:38
    17408
    Typ
    ESDUS
    01.03.1999 13:36:04
    2048
    Typ
    GOHEAD
    08.01.2003 16:15:40
    9216
    Typ
    MKPF
    08.01.2002 15:13:52
    5120
    Typ
    KBEFU
    26.03.1999 14:46:02
    5120
    Typ
    LFA1
    11.05.2004 11:32:44
    19456
    Typ
    MIGO_CUST_ACTION
    30.11.1999 10:19:14
    2048
    Typ
    MIGO_CUST_REFDOC
    30.11.1999 10:19:14
    2048
    Typ
    X031L
    15.11.2000 18:03:28
    5120
    Prg
    SAPLSDIFRUNTIME
    22.09.2005 21:42:36
    81920
    Typ
    DFIES
    09.11.2000 14:07:05
    8192
    Prg
    SAPLSDNT
    22.09.2005 21:55:13
    201728
    Prg
    SAPLSUGS
    22.09.2005 21:42:36
    29696
    Prg
    SAPLV01D
    11.05.2004 11:59:11
    25600
    Typ
    IWRKZ
    04.04.1995 15:56:46
    1024
    Typ
    TCUCH
    07.01.2002 15:50:54
    3072
    Typ
    TCUBN
    07.01.2002 15:50:53
    2048
    Typ
    TCUWS
    13.08.1997 13:57:58
    2048
    Typ
    TCUDRV
    07.01.2002 15:50:54
    2048
    Prg
    CL_GUI_CFW====================CP
    22.09.2005 21:14:53
    154624
    Prg
    CL_GUI_PROPS_CONSUMER=========CP
    07.01.2003 18:26:56
    26624
    Prg
    %_CCNTL
    14.02.2002 14:22:46
    13312
    Prg
    SAPLTHFB
    22.09.2005 22:08:44
    304128
    Prg
    CL_EXITHANDLER================CP
    16.06.2004 11:34:41

    Hello,
    the problem is the following error:
    >> ORA-04030: out of process memory when trying to allocate 1332 bytes (callheap,qkkele)
    Take a look at sapnote #130140 and #335230 and follow the instructions.
    Regards
    Stefan

  • Runtime Error DBIF_RSQL_SQL_ERROR exception CX_SY_OPEN_SQL_DB

    Hi,
    i need some guides to solve this problem.
    The program works fine in client DEV. However, when it's in QAS, we encounter  short dump: Runtime Error DBIF_RSQL_SQL_ERROR exception CX_SY_OPEN_SQL_DB
    info from short dump:
    An SQL error occurred when accessing a table.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was
    neither
    caught nor passed along using a RAISING clause, in the procedure
    "FILL_T_DATA_TABLE" "(FORM)"
    Since the caller of the procedure could not have expected this exception
    to occur, the running program was terminated.
    The reason for the exception is:
    How to correct the error
    The exception must either be prevented, caught within the procedure
    "FILL_T_DATA_TABLE"
    "(FORM)", or declared in the procedure's RAISING clause.
    To prevent the exception, note the following:
    Database error text........: "ORA-24371: data would not fit in current prefe
    buffer"
    Internal call code.........: "[RSQL/FTCH/VBUK ]"
    Please check the entries in the system log (Transaction SM21).
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "DBIF_RSQL_SQL_ERROR" CX_SY_OPEN_SQL_DBC
    "ZSDR_SHIPPING_REPORT" or "ZSDR_SHIPPING_REPORT"
    "FILL_T_DATA_TABLE"
    If you cannot solve the problem yourself, please send the...
    Information on where terminated
    The termination occurred in the ABAP program "ZSDR_SHIPPING_REPORT" in
    "FILL_T_DATA_TABLE".
    The main program was "ZSDR_SHIPPING_REPORT ".
    The termination occurred in line 3561 of the source code of the (Include)
    program "ZSDR_SHIPPING_REPORT"
    of the source code of program "ZSDR_SHIPPING_REPORT" (when calling the editor
    35610).
    Processing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in
    the
    procedure "FILL_T_DATA_TABLE" "(FORM)" but was not handled locally, not
    declared in the
    RAISING clause of the procedure.
    The procedure is in the program "ZSDR_SHIPPING_REPORT ". Its source code starts
    in line 3468
    of the (Include) program "ZSDR_SHIPPING_REPORT ".
    source code:
    035490
    035500   *get all open sales orders (those that are deemed open at the Sales
    035510   *Order "Header" level)
    035520     clear open_orders.
    035530     refresh open_orders.
    035540     select * into corresponding fields of table open_orders
    035550       from vbuk
    035560       where ( vbtyp = 'C' or vbtyp = 'I' )
    035570         and ( gbstk = 'A' or gbstk = 'B' ).
    035580
    035590   *get all open deliveries(some sales orders may be closed yet the
    035600   *associated Delivery is not yet PGI'd)
         >     clear open_deliveries.
    035620     refresh open_deliveries.
    035630     select * into corresponding fields of table open_deliveries
    035640       from vbuk
    035650       where vbtyp = 'J'
    035660         and ( wbstk = 'A' or wbstk = 'B' ).
    035670
    035680   *get sales orders associated with the Open deliveries
    Please advice.
    Thanks.

    Thanks for the response.
    Hi Renga,
    The error happens in second selection.
    this is the souce code:
    data: begin of open_orders occurs 0,
            vbeln like vbuk-vbeln,
            gbstk like vbuk-gbstk,
            vbtyp like vbuk-vbtyp,
          end of open_orders.
    data: begin of open_deliveries occurs 0,
            vbeln like vbuk-vbeln,
            wbstk like vbuk-wbstk,
            vbtyp like vbuk-vbtyp,
          end of open_deliveries.
    *get all open sales orders (those that are deemed open at the Sales
    *Order "Header" level)
      clear open_orders.
      refresh open_orders.
      select * into corresponding fields of table open_orders
        from vbuk
        where ( vbtyp = 'C' or vbtyp = 'I' )
          and ( gbstk = 'A' or gbstk = 'B' ).
    *get all open deliveries(some sales orders may be closed yet the
    *associated Delivery is not yet PGI'd)
      clear open_deliveries.
      refresh open_deliveries.
      select * into corresponding fields of table open_deliveries
        from vbuk
        where vbtyp = 'J'
          and ( wbstk = 'A' or wbstk = 'B' ).
    Hi Prabhu,
    how to identify the problem in DB02?
    Please advice.
    Thanks.
    regards.

Maybe you are looking for

  • Wireless adapter name is changing from wlp0s26u1u1 to wlan0

    If I reboot my computer from an on state the name changes from wlp0s26u1u1 to wlan0 which makes me unable to connect to wifi, even if I make a netctl profile for wlan0, it fails. If I start my computer from an off state, the adapter takes the name wl

  • Unable to start OIM Server (oim11g)

    Hi All, I am not able to start my oim server and i am getting the following errors . Can anyone please tell me the solution for this issue ? ####<Apr 30, 2012 2:31:52 PM GMT+05:30> <Error> <Deployer> <*****> <oim_server1> <[ACTIVE] ExecuteThread: '0'

  • How can I stretch a background image in label?

    Hi,All How can I stretch a background image in a label? public void start(final Stage primaryStage) {              final Label lbTest = new Label("My Test Label");              lbTest.setAlignment(Pos.CENTER);              lbTest.setTextAlignment(Tex

  • New conversation windows start minimized?

    Is there a way to make Skype act like a more traditional IM client, so that every time someone sends me a message, the conversation window pops up? I am using Skype in Compact Mode and I have selected the "Open a new window when I receive a new messa

  • Where to view the apple email

    Dear all I want to install the MobileMe and have inpunt my apple ID, however, the system replied need to verification and a E-mail have been sent to [email protected] (my apple ID). I have checked all my YAHOO or Gmail account but found no such mail.