Error while exceuting a SAP HANA Procedure

Hi HANA Gurus,
I am new to HANA SQL Scripting and I have created the following procedure
CREATE PROCEDURE "RAJ_HANA"."CURSOR_FOR_LOOP" LANGUAGE SQLSCRIPT
AS
VAR_EMNO INTEGER;   
CURSOR EMP FOR SELECT EMPNO FROM "RAJ_HANA"."EMP";
BEGIN  
FOR EMP_CUR AS EMP DO
FETCH EMP INTO VAR_EMNO;
INSERT INTO "RAJ_HANA"."EMP_1" VALUES(:VAR_EMNO) ;
SELECT * FROM "RAJ_HANA"."EMP_1";
END FOR;
END;
Error:
Could not execute 'Call "RAJ_HANA"."CURSOR_FOR_LOOP"' in 41 ms 684 µs .
SAP DBTech JDBC: [150]: statement cancelled or snapshot timestamp already invalidated: [150] "RAJ_HANA"."CURSOR_FOR_LOOP": line 8 col 1 (at pos 147): [150] (range 3): statement cancelled or snapshot timestamp already invalidated
Please help

If you want to copy data between two tables why use a cursor at all. This seems rather inefficient.  You can bulk insert data by embedding the select into the insert.  Here is an example:
insert into "SP8DEMO"."playground.sp8.data::PurchaseOrder.Header"
  select * from "SP7DEMO"."playground.sp7.data::PurchaseOrder.Header";
In your case I believe you could accomplish the same with
INSERT INTO "RAJ_HANA"."EMP_1" (EPMNO) SELECT EMPNO FROM "RAJ_HANA"."EMP";

Similar Messages

  • Error while installing Mini SAP Basis system 4.6D test suite

    Hi Gurus,
    I am getting error while installing Mini SAP Basis system 4.6D test suite on my laptop. I trying to install this version under Windows Xp. I tried so many times to rectify this error but no use. i followed the instruction in the readme file.The error is below in quote.
    "InstController MakeStepsDeliver:108 connection to GUI of installation tool has been cut  off.Installation has been stopped."
    your help very much appreciated...
    Regards
    dinesh.a

    is win xp supported for mini sap 46d?
    -> try netweaver 2004s instead ...
    GreetZ, AH

  • Error while installing the SAP J2EE add-on for SAP NW XI installation

    Error while installing the SAP J2EE add-on for SAP NW XI installation  
    Posted: Jan 24, 2007 5:23 PM         Reply      E-mail this post 
    Hello,
    When I am installing the SAP SAP J2EE add-on for SAP NW XI installation I am getting the follwing error:
    CJS-00084 SQL statement or script failed. DIAGNOSIS: Error message: Executable /oracle/XID/920_64/bin/sqlplus returns 127.. SOLUTION: See ora_sql_results.log and the Oracle documentation for details
    Could some one help me to resolve this error and install the SAP J2EE add-on?
    Thanks,
    George

    Hi George,
    Kindly use the latest installation Masted in Service market place. That will possibly solve your problem.
    Regards
    Vivek

  • Error while exporting to SAP QC

    In the process of installing TAO. Got successfully to the step of Component Migration but keep getting an error "Error while exporting to SAP QC".
    What's funny is if i select only one componeny, i still get the error but the component is created in Quality Center.
    Any help would be much appreciated.
    Thanks.

    The error is displayed immediately after the Exporting Address Details step in the transfer

  • Getting the error while connection to SAP Server

    Hi,
        I am getting the below mentioned error while connection to SAP Sever using SAP.Net Connector.   What could be the possible reason?
    "<i>
    <b>Connect to SAP gateway failed
    Connect_PM  GWHOST=ia2-ms.boi.hp.com, GWSERV=sapgw01, ASHOST=ia2-ms.boi.hp.com, SYSNR=01
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner not reached (host 15.78.80.31, service 3301)
    TIME        Fri Feb 02 11:10:35 2007
    RELEASE     640
    COMPONENT   NI (network interface)
    VERSION     37
    RC          -10
    MODULE      nixxi_r.cpp
    LINE        8716
    DETAIL      NiPConnect2
    SYSTEM CALL SiPeekPendConn
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUNTER</b>
    </i>"

    Hi
    The gateway monitor is used to analyze and administer the SAP Gateway from outside the SAP System.  The profile you assign to it must be the same as for the gateway. This process has different names:
    UNIX: gwmon
    Windows: gwmon.exe
    more on this.. please go thru  ..
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/bb/9f13c24b9b11d189750000e8322d00/frameset.htm
    hope this info helps!
    with regards,
    raj.
    <i>pls, award points</i>

  • Error while passing values to store procedure

    Hi,
    I wrote a stored procedure by passing 3 in parameters and retrive data from source table and stored into target table.When i execute this pl/sql procedure individuallly(running anonymous block) its working fine,but when i pass the IN parameters through BPEL by posting xml data i am getting error like this
    caused by ora-065335 statement string in open is null or 0 length.
    nested exception:Error while trying to prepare and execute an API.
    Any help

    Can you provide your PL/SQL procedure, the XSD, and the XML?

  • Error while passing date parameters in procedure and commit issue

    Hi
    1) I am doing a archiveing records and pls find my code below and i have couple of issue,pls find my code and want to ensure the commit is happening every 100000 rows inserted but i am archeiving a huge table but when i checks the table frequently it shows 0 records and after it shows count the actual rows around 20 million records.How can i ensure it commiting on every 100000 records. pls find my code my db version is 10g on windows
    CREATE OR REPLACE PROCEDURE doins as
    cnt number:=0;
    FOR x IN (select * from Call_log
    where trunc(c_date) = to_date('11-Aug-2008','DD-MON-YYYY'))
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where trunc(c_date) = to_date('11-Aug-2008','DD-MON-YYYY');
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    2) Error while passing date as parameter i am getting following errors while passing date parameter pls find my code and errors
    CREATE OR REPLACE PROCEDURE doins(p_date date) as
    cnt number:=0;
    begin
    FOR x IN (select * from Call_log
    where trunc(c_date) = to_char(p_date,'DD-MON-YYYY'))
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where trunc(c_date) = to_char(p_date,'DD-MON-YYYY');
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    end;
    exec doins(11-Aug-2008) then gives
    SQL> exec doins(11-Aug-2008);
    BEGIN doins(11-Aug-2008); END;
    ERROR at line 1:
    ORA-06550: line 1, column 16:
    PLS-00201: identifier 'AUG' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    if i gave exec doins(11-08-2008) it gaves
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'DOINS'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    rgds
    rosh

    CREATE OR REPLACE PROCEDURE doins(p_date varchar2) as
    cnt number:=0;
    begin
    FOR x IN (select A.rowid,A.* from Call_log A
    where trunc(c_date) = to_date(p_date,'DD-MON-YYYY'))
    --hope that's c_date columne is   DATE datatype
    LOOP
    INSERT INTO call_arch
    select * from Call_log
    where rowid=x.rowid;
    cnt := cnt + 1;
    IF( cnt = 10000 )
    THEN
    cnt := 0;
    commit;
    END IF;
    commit;
    END LOOP;
    end;
    thats your correct procedure - but NOT CORRECT ISSUE.
    You should use bulk collect with limit clause and forall clause to do it faster!!! Or Merge clause.

  • Error while installtion of SAP NetWeaver Sneak Preview

    Hi,
    I get the following error while installing the Sneak Preview version of SAP NetWeaver. This error occurs while checking for the JCE. Request your help.
    ERROR 2007-05-21 00:34:46
    FSL-00001  System call failed. Error 5 (Access is denied.
    ) in execution of system call 'FindFirstVolumeMountPoint' with parameter (
    ?\Volume{baccce62-0610-11dc-942a-806e6f6e6963}\), line (91) in file (synxcfsmit.cpp).
    ERROR 2007-05-21 00:34:46
    MUT-03025  Caught ESyException in Modulecall: Access is denied.
    ERROR 2007-05-21 00:34:46
    FCO-00011  The step getMounts with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_getMounts|ind|ind|ind|ind|0|0|getMounts was executed with status ERROR .
    Regards
    Sriram

    Hi,
    1.Have you taken the <b>appropriate JCEPolicy</b> file?On which OS are you doing the installations?
    2.Check whether the user with which you are doing the installations have all <b>administrator rights</b>.Is it avaialble in the list of administrator user and administrator group?
    3.Are environment variables <b>JAVA_HOME </b> nad <b>path</b> set?
    try all these things.It will work.
    reward points if helpful............

  • Error while import schema in HANA DB

    Hi...
    I am trying to perform an export-import of a HANA DB user instance at schema level including all objects (in my case tables and synonyms) and data.
    Export and Import works very well except importing a schema which contains a synonym referred to other existing schema .
    Here is a test case
    - Schema A with a Table and Schema B to contain a synonym for schema A's table.
    - Exported both schemas to CSV which is done successfully and everything looked ok in export location.
    - Imported Schema A and then Schema B with the following command.
    Command:
    IMPORT "<bkup_schema>"."*" FROM '<bkp_location>' WITH RENAME SCHEMA <bkup_schema> TO <brand_new_schema>;
    The schema A (with table) imported fine.  Schema B (with synonym) gives the below error :
    "SAP DBTech JDBC: [2048]: column store error: table import failed:  [2003] An index already exists with the same name "
    When trying to use "REPLACE" clause in the command the error changes as below:
    SAP DBTech JDBC: [2048]: column store error: table import failed:  [30117] Binary import failed (cannot execute drop statement)
    Has anybody faced this type of error before??

    Folks, I am running into the same issue. What I figure out was the following:
    1) I turn off the autocommit
    2) I run the import for the first time
    import "<SCHEMA_NAME>"."*" as binary from '<location>' with replace;
    rollback;
    3) I get the error as described
    SAP DBTech JDBC: [2048]: column store error: table import failed:  [30117] Binary import failed (cannot execute drop statement)
    4) I run this import once again and commit and surprisingly the error is gone and the import is successful.
    import "<SCHEMA_NAME>"."*" as binary from '<location>' with replace;
    commit;

  • SSL error when connecting in SAP HANA Cloud Portal tutorial

    Hi,
    I'm going through the tutorial for SAP HANA Cloud Portal - SAP HANA Cloud Portal Developers Tutorial
    Unfortuanatelly I have problems with deploying public destinations (page 9).
    When I try to deploy the destination for the CRM back from the command console using neo command with relevant parameters and entering my password I get the following error:
    ERROR; SSL error when connecting to https://configapi.hanatrial.onedemand.com/configuraiton/api/rest; server certificate might be invalid or untrusted.
    Logfiles.
    Session log
    2014-08-18 15:53:59,579 DEBUG [main] org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager$1: Get connection: HttpRoute[{s}->https://configapi.hanatrial.onedemand.com], timeout = 0 2014-08-18 15:53:59,581 DEBUG [main] org.apache.http.impl.conn.tsccm.ConnPoolByRoute: [HttpRoute[{s}->https://configapi.hanatrial.onedemand.com]] total kept alive: 0, total issued: 0, total allocated: 0 out of 20 2014-08-18 15:53:59,581 DEBUG [main] org.apache.http.impl.conn.tsccm.ConnPoolByRoute: No free connections [HttpRoute[{s}->https://configapi.hanatrial.onedemand.com]][null] 2014-08-18 15:53:59,581 DEBUG [main] org.apache.http.impl.conn.tsccm.ConnPoolByRoute: Available capacity: 2 out of 2 [HttpRoute[{s}->https://configapi.hanatrial.onedemand.com]][null] 2014-08-18 15:53:59,582 DEBUG [main] org.apache.http.impl.conn.tsccm.ConnPoolByRoute: Creating new connection [HttpRoute[{s}->https://configapi.hanatrial.onedemand.com]] 2014-08-18 15:53:59,729 DEBUG [main] org.apache.http.impl.conn.DefaultClientConnectionOperator: Connecting to configapi.hanatrial.onedemand.com/216.128.6.149:443 2014-08-18 15:54:00,035 DEBUG [main] org.apache.http.impl.conn.DefaultClientConnection: Connection closed 2014-08-18 15:54:00,035 DEBUG [main] org.apache.http.impl.conn.DefaultClientConnection: Connection shut down 2014-08-18 15:54:00,036 DEBUG [main] org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager: Released connection is not reusable. 2014-08-18 15:54:00,036 DEBUG [main] org.apache.http.impl.conn.tsccm.ConnPoolByRoute: Releasing connection [HttpRoute[{s}->https://configapi.hanatrial.onedemand.com]][null] 2014-08-18 15:54:00,037 DEBUG [main] org.apache.http.impl.conn.tsccm.ConnPoolByRoute: Notifying no-one, there are no waiting threads
    Console log
    2014-08-18 15:53:56,080 INFO  [main] com.sap.jpaas.infrastructure.console.CommandManager: Starting execution of command [get-destination] 2014-08-18 15:53:56,086 INFO  [main] com.sap.jpaas.infrastructure.console.CommandManager: Command [get-destination] init() finished for [1] ms 2014-08-18 15:54:00,038 INFO  [main] com.sap.jpaas.infrastructure.console.CommandManager: Command [get-destination] cleanup() finished for [0] ms 2014-08-18 15:54:00,046 FATAL [main] com.sap.jpaas.infrastructure.console.ConsoleClient: (!) ERROR; SSL error when connecting to https://configapi.hanatrial.onedemand.com/configuration/api/rest; server certificate might be invalid or untrusted com.sap.jpaas.infrastructure.console.exception.ValidationException at com.sap.jpaas.infrastructure.console.command.RemoteCommand.getHttpClient(RemoteCommand.java:97) at com.sap.jpaas.infrastructure.console.command.UnsecuredRemoteCommand.getHttpClient(UnsecuredRemoteCommand.java:57) at com.sap.core.connectivity.config.cmd.ConfigurationConsoleCommand.createHttpClient(ConfigurationConsoleCommand.java:254) at com.sap.core.connectivity.config.cmd.GetAction.download(GetAction.java:79) at com.sap.core.connectivity.config.cmd.GetAction.run(GetAction.java:52) at com.sap.jpaas.infrastructure.console.CommandManager.run(CommandManager.java:295) at com.sap.jpaas.infrastructure.console.CommandManager.run(CommandManager.java:260) at com.sap.jpaas.infrastructure.console.ConsoleClient.run(ConsoleClient.java:235) at com.sap.jpaas.infrastructure.console.ConsoleClient.main(ConsoleClient.java:85) Caused by: com.sap.core.utils.infrastructure.validation.HostValidationException: javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated at com.sap.core.utils.infrastructure.validation.LandscapeHostValidator.getHttpClient(LandscapeHostValidator.java:304) at com.sap.jpaas.infrastructure.console.command.RemoteCommand.getHttpClient(RemoteCommand.java:95) ... 8 more Caused by: javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated at sun.security.ssl.SSLSessionImpl.getPeerCertificates(SSLSessionImpl.java:397) at org.apache.http.conn.ssl.AbstractVerifier.verify(AbstractVerifier.java:128) at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:390) at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:148) at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:149) at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:121) at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:561) at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:415) at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820) at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:776) at com.sap.core.utils.infrastructure.validation.LandscapeHostValidator.getHttpClient(LandscapeHostValidator.java:284) ... 9 more
    BR
    Beata

    Hi Beata,
    The CRM scenario is working again. We had to re install the Connector and deploy a new proxy app.
    Therefore you would need to download the code from the GitHub repository again. The changes you need to do on your side:
    1. Redeploy the new crm__public destination file - the updated destination now points to the new location of the proxy application
    2. Update the code of the registration form scripts (form.js and form.spec.xml).
    Regards,
    Ido

  • Error while passing collection variable into procedure.

    Hi Experts,
    I'm facing errors while trying to pass the collection variables as in parameter to the procedure.
    PLS-00306: wrong number or types of arguments in call
    Please suggest me?
    Thanks in advance....

    I'm facing errors while trying to pass the collection variables as in parameter to the procedure.
    PLS-00306: wrong number or types of arguments in call
    If you want help with code you need to POST THE CODE.
    Post the DDL for the procedure that shows how the parameters are defined.
    And post the code you are using to CALL that procedure that shows what parameters you are passing and the datatypes for those parameters.

  • Error while login to SAP

    Experts ,
    I am Getting following Error while log-in to SAP.
    [Microsoft][SQL Server Native Client 10.0][SQL Server]Cannot insert the value NULL into column 'logInstanc', table 'DAP 30june.dbo.AUSR'; column does not allow nulls. INSERT fails. '' (AUSR)
    please suggest some solutions.

    Hi,
    Look for SAP NOTE number 1602490 in the SAP service marketplace.
    this will surely solve you problem!  i was having the same problem last week,and this SAP note solved my problem.
    go to this link : https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3030303136303234393026
    Regards,
    Darius

  • CompositeProvider Data Preview "Error in the BWA/SAP HANA Server"

    Hello Experts,
    We have created CompositeProvider in HANA Studio. When we are trying to preview the data in CompositeProvider, we get the below error message.
    Error 34.021 has occurred in the BWA/SAP HANA server
    JavaScript:SAPBWOpenWindow('.2fsap.2fbw.2fBEx.3fSAP-LANGUAGE.3dEN.26CMD.3dGET_MESSAGE_INFO.26MSGID.3dDBMAN.26MSGNO.3d901.26MSGV1.3d34.2e021.26MSGV2.3d.26MSGV3.3d.26MSGV4.3d.26STATE_ID.3d00O2TQMBMUU5FOJWJ4MM8J5IY.26STATELESS.3dX.26LAST_MESSAGE_ID.3d0','MESSAGES',650,400,true);Object Name = "SAPDBW"."0BW:BIA:XXXXXXX", FM Name = TREX_DBS_AGGREGATE]
    Invalid query;Failed to find attribute 0RECORDTP_KEY at node 0BW:BIA:XXXX,QueryId: .
    We are now in BW on HANA 7.4 SP8 and facing issues with the Reports based on this CompositeProvider. The CompositeProvider is already in active status and the system check was successful.
    We have identified SAP Note : 2019244 for this issue but this is not relevant for our system configuration.
    Please let me know if anyone has encountered this issue.
    Thanks in advance !
    Regards,
    Pradeep.

    Hello Pradeep Kundeti,
    Please raise an Support ticket with SAP asap, so that you can save some time.
    If its a new error, SAP might take some time to rectify it. So it's better to keep them informed.
    Let the experts come up with their suggestions....
    PS: Yours is a comparatively newer system and there are possibilities that new errors might come in...
    BR
    Prabhith

  • Error with ABAP in SAP HANA studio  Version: 1.80.3

    Hi,
    Am using SAP HANA studio Version: 1.80.3 and have got the ABAP perspective in here.
    I am able to connect to the SAP ABAP system via the studio, however when I open the folder, am not able to open the ABAP system folder and see objects.. on expanding the system node, I see nothing!.
    I am able to connect to this same system with HANA Studio Version: 1.0.70.
    Can you please suggest what might be wrong?
    Regards
    Sudarshan
    On a related note, when I click on the "Check for Updates" button, I get a PROXY authentication required error. Is there a way to configure the proxy authentication details in HANA studio version 1.80.3?

    PFA the screen prints of the errors and the version

  • Error while installing the SAP

    i'm having an error poped up everytime i try to install..the error is saying SQL error 942..
    Cannot install anymore wht could be the possible solution to continue witht the installation without making it from the start again.

    D:\usr\sap\DRS\SYS\exe\run/R3load.exe: START OF LOG: 20080228181446
    D:\usr\sap\DRS\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    D:\usr\sap\DRS\SYS\exe\run/R3load.exe: version R6.20/V1.2
    D:\usr\sap\DRS\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=C:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPDRS's password
    DbSl Trace: Connecting as /@DRS on connection 0 ...
    DbSl Trace: Attaching to DB Server DRS (con_hdl=0,svchp=002BD8A0,svrhp=002BD6AC)
    DbSl Trace: Starting user session (con_hdl=0,svchp=002BD8A0,srvhp=002BD6AC,usrhp=0030570C)
    DbSl Trace: Now I'm connected to ORACLE
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    DbSl Trace: Disconnecting from connection 0 ...
    DbSl Trace: Closing user session (con_hdl=0,svchp=002BD8A0,usrhp=0030570C)
    DbSl Trace: Now I'm disconnected from ORACLE
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPDRS/<pwd>@DRS on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=002BD8A0,srvhp=002BD6AC,usrhp=0030570C)
    DbSl Trace: Now I'm connected to ORACLE
    DbSl Trace: Database NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Database instance drs is running on SOMBATHLA with ORACLE version 8.1.7.4.1 since 20080228
    (DB) INFO: connected to DB
    (DB) ERROR: DDL statement failed
    (DROP VIEW "/SDF/SMODICOMP")
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE VIEW "/SDF/SMODICOMP" ( "OBJ_TYPE" , "SUB_TYPE" , "INT_TYPE" , "OPERATION" , "INACTIVE" , "COMPONENT" , "PS_POSID" , "SUB_NAME" , "INT_NAME" , "PGMID" , "OBJECT" , "OBJ_NAME" , "DEVCLASS" , "FCTR_ID" , "AS4LOCAL"  ) AS SELECT T0001."OBJ_TYPE", T0001."SUB_TYPE", T0001."INT_TYPE", T0001."OPERATION", T0001."INACTIVE",  T0003."COMPONENT", T0004."PS_POSID", T0001."SUB_NAME", T0001."INT_NAME", T0002."PGMID", T0002."OBJECT", T0002."OBJ_NAME", T0003."DEVCLASS", T0004."FCTR_ID", T0004."AS4LOCAL" FROM "SMODILOG" T0001, "TADIR" T0002, "TDEVC" T0003, "DF14L" T0004 WHERE T0001."OBJ_TYPE" = T0002."OBJECT" AND T0001."OBJ_NAME" = T0002."OBJ_NAME" AND T0002."DEVCLASS" = T0003."DEVCLASS" AND T0003."COMPONENT" = T0004."FCTR_ID" AND T0002."PGMID" = 'R3TR' AND T0004."AS4LOCAL" = 'A')
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    DbSl Trace: Disconnecting from connection 0 ...
    DbSl Trace: Closing user session (con_hdl=0,svchp=002BD8A0,usrhp=0030570C)
    DbSl Trace: Detaching from DB Server (con_hdl=0,svchp=002BD8A0,srvhp=002BD6AC)
    DbSl Trace: Now I'm disconnected from ORACLE
    (DB) INFO: disconnected from DB
    D:\usr\sap\DRS\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    D:\usr\sap\DRS\SYS\exe\run/R3load.exe: END OF LOG: 20080228181447

Maybe you are looking for