OIM error ADP.RUNTIME_ERROR when executing java adapter

We have compiled a java jar file with a number of methods that can be used to set an adaptor in Oracle Identity Manager Design Console and call them on 'post update' event on a table.
Whe it is executed it fails with ADP.RUNTIME_ERROR. No other information is available on the web application.
If the same update is executed from the java development environment the following exception is raised:
Thor.API.Exceptions.tcAPIException: Error occurred while running adapter "SendJMSMsg". Task: testJar5, Message: null, Reason: , Exception: com.thortech.xl.dataobj.util.tcAdapterTaskException
     at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
     at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:290)
     at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:248)
     at com.thortech.xl.ejb.beans.tcUserOperations_voj9p2_EOImpl_816_WLStub.updateUser(Unknown Source)
     at Thor.API.Operations.tcUserOperationsClient.updateUser(Unknown Source)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:585)
     at Thor.API.Base.SecurityInvocationHandler$1.run(Unknown Source)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     at weblogic.security.Security.runAs(Security.java:41)
     at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(Unknown Source)
     at Thor.API.Base.SecurityInvocationHandler.invoke(Unknown Source)
     at $Proxy0.updateUser(Unknown Source)
     at com.nnit.ModifyUserTest.main(ModifyUserTest.java:61)
Did anyone come accross a similar issue?

Here is the adapter code - log says that it fails in this line 46 ihTaskRetVals.put("TESTJAR3", TESTJAR3()); :
/* Copyright (c) 2001 - 2007, Oracle Corporation. All rights reserved.
package com.thortech.xl.adapterGlue;
import com.thortech.xl.dataobj.*;
//import com.thortech.xl.adapterGlue.*;
//import com.thortech.xl.dataobj.tcDataSet;
import java.io.IOException;
import java.util.*;
import java.io.FileWriter;
import java.io.File;
import java.sql.Timestamp;
import java.text.DateFormat;
import com.thortech.xl.dataobj.util.tcAdapterTaskException;
import com.thortech.xl.dataobj.util.*;
import com.thortech.xl.dataobj.util.tcJarEntryClassLoader;
import com.thortech.xl.remotemanager.*;
import java.rmi.*;
import java.net.URL;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Field;
import java.net.*;
public class adpSENDJMSMSG extends com.thortech.xl.adapterfactory.events.tcAdpEvent {
     public adpSENDJMSMSG() {
          super();
          setEventName("SendJMSMsg");
Hashtable ihTaskRetVals = new Hashtable();
// Adapter Variables
protected void implementation() throws Exception {
          try {
          if (! initAdapter("SendJMSMsg"))
               return;
               // Execute Tasks and store results in Hashtable...
ihTaskRetVals.put("TESTJAR3", TESTJAR3());
          finalizeAdapter();
          } catch (tcAdapterTaskException e) {
                    e.printStackTrace();
                    adapterError(e);
                    return;
          } catch (Exception e) {
                    e.printStackTrace();
                    adapterError(e);
                    return;
// *** testJar3 ***
private Object TESTJAR3() throws Exception {
               Object oRetVal = "";
               Object objCons;
               String sTaskName = "testJar3";
               try {
                         System.out.println("Running TESTJAR3");
                         // Load class
                         // Initialize URLs
                         ClassLoader moURLClassLoader = tcADPClassLoader.getClassLoader(null);
                         Class moTargetClass = Class.forName("com.nnit.JMSClient.JMSClientUtilities", true, moURLClassLoader);
                         System.out.println("Target Class = " + moTargetClass.getName());
                         // Initialize method
                         Class[] moMethodParmTypes = new Class[] {String.class, String.class, String.class};
                         Object[] moMethodParams = new Object[] {"mm", "mmm", "mmmm"};
                         Method moMethod = moTargetClass.getMethod("sendCreateUser", moMethodParmTypes);
                         // Check for static method
                         if (Modifier.isStatic(moMethod.getModifiers()))
                              objCons = null;
                         else {
                              // Initialize constructor
                              Object[] maoConstructorArgs = new Object[]{};
                              Class[] masConParamTypes = new Class[]{};
                              Constructor moCons = moTargetClass.getConstructor(masConParamTypes);
                              objCons = moCons.newInstance(maoConstructorArgs);
                         // Invoke method
                         moMethod.invoke(objCons, moMethodParams);
               } catch (Exception e) {
                         e.printStackTrace();
                         if (e instanceof InvocationTargetException) {
                              Throwable t = ((InvocationTargetException)e).getTargetException();
                              throw new tcAdapterTaskException("adpSENDJMSMSG", "testJar3", t.getMessage(), "", "");
                         } else {
                              throw new tcAdapterTaskException("adpSENDJMSMSG", "testJar3", e.getMessage(), "", "");
               return returnVal(oRetVal);
Exception stack:
DEBUG,30 May 2009 01:32:35,377,[XELLERATE.SERVER],Class/Method: tcDataObj:handle
Err - Data: poError.isCode - Value: ADP.RUNTIME_ERROR
DEBUG,30 May 2009 01:32:35,377,[XELLERATE.SERVER],Class/Method: tcDataObj:handle
Err - Data: poError.isDescription - Value: Error occurred while running adapter
"SendJMSMsg". Task: testJar3, Message: null, Reason: , Exception: com.thortech.x
l.dataobj.util.tcAdapterTaskException
DEBUG,30 May 2009 01:32:35,377,[XELLERATE.SERVER],Class/Method: tcDataObj:handle
Err - Data: poError.isRemedy - Value:
DEBUG,30 May 2009 01:32:35,377,[XELLERATE.SERVER],Class/Method: tcDataObj:handle
Err - Data: poError.isDetail - Value: com.thortech.xl.dataobj.util.tcAdapterTask
Exception
at com.thortech.xl.adapterGlue.adpSENDJMSMSG.TESTJAR3(adpSENDJMSMSG.java
:104)
at com.thortech.xl.adapterGlue.adpSENDJMSMSG.implementation(adpSENDJMSMS
G.java:46)
at com.thortech.xl.client.events.tcBaseEvent.run(Unknown Source)
at com.thortech.xl.dataobj.tcDataObj.runEvent(Unknown Source)
at com.thortech.xl.dataobj.tcDataObj.eventPostUpdate(Unknown Source)
at com.thortech.xl.dataobj.tcUSR.eventPostUpdate(Unknown Source)
at com.thortech.xl.dataobj.tcDataObj.update(Unknown Source)
at com.thortech.xl.dataobj.tcDataObj.save(Unknown Source)
at com.thortech.xl.dataobj.tcTableDataObj.save(Unknown Source)
at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.updateUserData(Unk
nown Source)
at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.updateUser(Unknown
Source)
at com.thortech.xl.ejb.beans.tcUserOperationsSession.updateUser(Unknown
Source)
........

Similar Messages

  • SQL error 3113 occurred when executing EXEC SQL.

    Hi,
    We are facing one typical problem, One background is failing regularly with
    below dump. as we now got all notes giving information, if database  restarted
    taking backup, these type of failures occur, but our database is only down for backup once in a week, but it is failing with frequenly.
    in this two servers are located in different place, in this job tries to connect
    another server to get material statistics.
    It is giving some error message in sm21 with
    SQL error 3113 occurred when executing EXEC SQL.
    work procees in reconnect mode.
    all notes saying these types of dump occur when database restared, but this dump
    even though database is up.
    below is short dump, please can anyone help me from this problem.
    ABAP runtime errors    DBIF_DSQL2_SQL_ERROR
          Occurred on    08.01.2007 at 00:30:28
    >> Short dump has not been completely stored. It is too big.
    SQL error 3113 occurred when executing EXEC SQL.
    What happened?
    The error occurred in the current database connection "AZ1".
    What can you do?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Error analysis
    How to correct the error
    Database error text........: "ORA-03113: end-of-file on communication channel#"
    Triggering SQL statement...: "select mara.groes, mara.brgew, mara.ntgew,
    mara.gewei, mara.volum, mara.voleh, mara.mstae, mara.mstde, mara.prdha,
    marc.matnr, marc.werks, marc.mmsta, marc.mmstd from sapr3.mara, sapr3.m
    where sapr3.mara.mandt = sapr3.marc.mandt and sapr3.mara.matnr =
    Internal call code.........: "[DBDS/NEW DSQL]"
    Please check the entries in the system log (Transaction SM21).
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:
    "DBIF_DSQL2_SQL_ERROR"
    "ZM2431216 " or "ZM2431216 "
    "EXTRACT_GENERAL_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 th
      print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error o
      or which actions and input led to the error.
    System environment
    SAP Release.............. "46C"
    Application server....... "essceu3"
    Network address.......... "172.19.119.198"
    Operating system......... "AIX"
    Release.................. "5.3"
    Hardware type............ "00C7ADBD4C00"
    Database server.......... "ukblx176"
    Database type............ "ORACLE"
    Database name............ "EU3"
    Database owner........... "SAPR3"
    Character set............ "es_ES.ISO8859-1"
    SAP kernel............... "46D"
    Created on............... "Jul 9 2006 20:26:33"
    Created in............... "AIX 1 5 00447C4A4C00"
    Database version......... "OCI_920__OCI_7_API "
    Patch level.............. "2257"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.0.5.., ORACLE 8.0.6.., ORACLE
    8.1.6.., ORACLE 8.1.7.., ORACLE 9.2.0.., ORACLE 10.2.0.."
    SAP database version..... "46D"
    Operating system......... "AIX 1 4, AIX 2 4, AIX 3 4, AIX 1 5, AIX 2 5, AIX 3
    5, , System build information:,                                      , LCHN :
    841480"
    User, transaction...
    Client.............. 600
    User................ "MPZMMES"
    Language key........ "S"
    Transaction......... " "
    Program............. "ZM2431216 "
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where termination occurred
    The termination occurred in the ABAP/4 program "ZM2431216 " in
    "EXTRACT_GENERAL_DATA".
    The main program was "ZM2431216 ".
    The termination occurred in line 980
    of the source code of program "ZM2431216 " (when callin
    The program "ZM2431216 " was started as a background jo
    Source code extract
    009500              mara.ntgew,
    009510              mara.gewei,
    009520              mara.volum,
    009530              mara.voleh,
    009540              mara.mstae,
    009550              mara.mstde,
    009560              mara.prdha,
    009570              marc.matnr,
    009580              marc.werks,
    009590              marc.mmsta,
    009600              marc.mmstd
    009610        into :w_ops-groes,
    009620              :w_ops-brgew,
    009630              :w_ops-ntgew,
    009640              :w_ops-gewei,
    009650              :w_ops-volum,
    009660              :w_ops-voleh,
    009670              :w_ops-mstae,
    009680              :w_ops-mstde,
    009690              :w_ops-prdha,
    009700              :w_ops-matnr,
    009710              :w_ops-werks,
    009720              :w_ops-mmsta,
    009730              :w_ops-mmstd
    009740        from sapr3.mara, sapr3.marc
    009750        where sapr3.mara.mandt = sapr3.marc.mandt
    009760          and sapr3.mara.matnr = sapr3.marc.matnr
    009770          and sapr3.mara.mandt = :p_mandt
    009780          and sapr3.mara.matnr = :w_ebs-matnr
    009790          and sapr3.marc.werks = :p_owerks
        >    ENDEXEC.
    009810  endform.                    " extract_general_data
    009820  *&
    009830  *&      Form  append_i_ops
    009840  *&
    009850  *      Appends W_OPS to I_OPS
    009860  *
    009870  form append_i_ops.
    009880    append w_ops to i_ops.
    009890  endform.                    " append_i_ops
    009900  *&
    009910  *&      Form  extract_material_description
    009920  *&
    009930  *      Extracts a Material Description from the remote database an
    009940  *      modifies the current record in I_OPS.
    009950  *
    009960  *        >P_SPRAS  Language Key
    009970  *
    009980  form extract_material_description using    p_spras.
    009990    EXEC sql performing set_langauge.
    Contents of system fields
    SY field contents..................... SY field contents............
    SY-SUBRC 0                            SY-INDEX 0
    SY-TABIX 1                            SY-DBCNT 1
    SY-FDPOS 18                            SY-LSIND 0
    SY-PAGNO 0                            SY-LINNO 1
    SY-COLNO 1
    Chosen variables
    Name.......................... Contents.1........2........3....+..
    W_EBS-PRAT4
                                  2
                                  0
    W_OPS-GROES
                                  22222222222222222222222222222222
                                  00000000000000000000000000000000
    W_OPS-BRGEW                    #######
                                  0000000
                                  000000C
    W_OPS-NTGEW                    #######
                                  0000000
                                  000000C
    regards,
    krishnaiah.

    Hi,
    This is usually a SERVER SIDE DATABASE PROBLEM or SQLNET LISTENER (server side) PROBLEM.  The client side should initially be ignored and instead the server should be investigated. In rare cases, this can be caused by client
    side memory or other resource problem, or a DLL version mismatch, but this is
    unlikely.
    Enlist the assistance of your DBA.  Then reproduce the ORA-3113 error on your
    client application.  Ask your DBA to look at the database side Alert.log and
    trace files and look for ANY activity.  Any activity that coincides with your
    ORA-3113 will be a clue.
    REgards
    Vinod

  • Error in sxmb_moni when executing

    hi all,
    i get error in sxmb_moni  when executing (monitor for processed xml messages)
    the messages states that "system error occured during persist".how to clear this error message.

    Hi Allen
    Did you configure the right interface mapping in the interface determination? Did you activate your interface mapping? Plz have a look to transaction SXI_CACHE.
    this error is beacuse your mapping progrm might be wrong, just check the interface mapping test with mapping program ( it will be error) and with out mapping program ( no error will be there)
    cross check your mapping program any madt fields are you missing?
    Thanks!

  • Error when executing Java code, java.lang.NoClassFoundError:

    Hi, I am new learner in Java Programming and I am using J2SDK and notepad to write a code. I don't have problem in compiling using javac filename, however I received an error when executing using java filename.
    The error message I got is Exception in thread "main" java.lang.NoClassDefFoundError: Hello/jawa.
    I have verified this simple code - Hello has no issue but somehow it does not run. I even try to compile and execute in other computer also the similiar error returned.
    My Client Platform is Windows XP Professional.
    I would appreciate any expert can help to suggest me the knowledge/solution to fix this kind of error. Thanks
    Jackie

    It looks like you entered the command "java Hello.java" or "java Hello/java" (I assumed 'jawa' was a typo.)
    You should have entered "java Hello" if your class name is Hello. I am guessing that Hello.java is probably the source code file name. The argument to the java command is the fully qualified class name. "java Hello.java" tells the java command to look for a class named java that is in the Hello package.

  • Message error ORA-00936 when using JDBC adapter

    Hi all,
    I'm using the folow scenario:
    RFC --> XI --> JDBC
    RFC <-- XI <-- JDBC (response)
    It's a SYNCHRONOUS interface.
    RFC call without COMMIT WORK:
    CALL FUNCTION 'Y_TESTE_NEI'
        DESTINATION 'RFC_XI'
    EXPORTING
       DATE_FROM       =  v_data_from
       DATE_TO         =  v_data_to
      TABLES
        t_return        = t_dados.
    I'm not using KEY in JDBC message, because for test I want to get entiry table, and I set the communication channel JDBC to KEY not mandatory.
    I'm not having mapping error, in SXMB_MONI I can see the two messages of interface, but both with SYSTEM ERROR.
    In JDBC adapter in Runtime Workbench apears the follow message error:
    com.sap.aii.af.ra.ms.api.DeliveryException: Error processing request in sax parser: Error when executing statement for table/stored proc. 't7_productionorder' (structure 't7_productionorder'): java.sql.SQLException: ORA-00936: missing expression
    And DUMP in function call in R/3: CALL_FUNCTION_REMOTE_ERROR
    Could anyone help me about this problem ?
    Thanks in advance.
    Regis Ferrato

    Hi Regis,
    I did the same scenario just now. The error you get is, you need to check whether the fields you are entering into the database have correct datatypes.
    Check out your database structure with your structure in XI, and also test in Message Mapping, to make sure you are sending correct values.
    In my case I was sending date like this '10-12-06', but my DB accepts only '101206'. So I removed the '-'. It was fine .
    The Dumping error is not due to your ABAP, due to the DB operation.
    Let me know Whether I am correct.
    Raj.

  • In Java 2 - when executing java get "realpath.. ,libjava.so not found" erro

    Hi !
    I have installed Java 2( j2se 1.4.1_02) and when i execute java it gives
    Error: realpath ("//java") not found
    Error: could not find libjava.so
    Error: could not find Java 2 Runtime Environment
    I have been trying for the past 3 days to get this setup working, but no success. Have made the LD_LIBRARY_PATH and PATH to have the required values. Is there anything else that need to be done.
    Can anyone help please?
    Thanks
    Raji

    Which platform is it? Java version "1.4.1_02" works fine for me on my Linux. Maybe these pieces of information are of some help.
    $ uname -a
    Linux bijpc 2.4.19-4GB #1 Wed Sep 25 18:58:10 UTC 2002 i686 unknown
    $ java -version
    java version "1.4.1_02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_02-b06)
    Java HotSpot(TM) Client VM (build 1.4.1_02-b06, mixed mode)
    $ type java
    java is hashed (/usr/lib/jdk1.4.1_02/bin/java)
    $ file /usr/lib/jdk1.4.1_02/bin/java
    /usr/lib/jdk1.4.1_02/bin/java: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), stripped
    $ ldd /usr/lib/jdk1.4.1_02/bin/java
    libpthread.so.0 => /lib/libpthread.so.0 (0x40025000)
    libdl.so.2 => /lib/libdl.so.2 (0x4003a000)
    libc.so.6 => /lib/libc.so.6 (0x4003d000)
    /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
    $ find /usr/lib/jdk1.4.1_02 -name 'libjava*so'
    /usr/lib/jdk1.4.1_02/jre/lib/i386/libjava.so
    /usr/lib/jdk1.4.1_02/jre/lib/i386/libjavaplugin_jni.so
    /usr/lib/jdk1.4.1_02/jre/plugin/i386/ns600/libjavaplugin_oji.so
    /usr/lib/jdk1.4.1_02/jre/plugin/i386/ns610/libjavaplugin_oji.so

  • HTTP Error: 401 unauthorized when executing a costcenter report.

    Hi.
    I get this HTTP error when executing an costcenter report.
    The steps I do is following.
    Call upp the report Y_D02_77000xxx
    Under the "kostenstellen:Selection I Fill in this values.
    Controlling area
    Fiscal Year
    From Period
    To     Period
    Plan version
    and finally i enter the "Cost Center group"
    Then i press "execute" and get the result for differrent Cost Element, i get 2 lines "*Total" and
    "**Over/underabsorption"
    Now i doubleclick Over/underabsorption and select report "Cost Centers: Actual Line Items"
    Now i Should get a new window woth results but instead i get a blank screen with the errormessage:
    "HTTP error: 401 unauthorized"
    This procedure worked fine until a couple of weeks ago.
    Anyone have any ideas about what could be the problem?
    Regards Johan

    You might want to check all of your connections in SM59. When you get the 401 error, this is sometimes due to a connection failure (bad password and so on) in the RFC connections (this can also happen if you are using the Content Manager).
    Hope that helps.
    J. Haynes

  • Error in BDC when executed in back ground

    Hi All,
    We are working on a BDC interface for Material Master Basic Data Add or Change using SAP 4.7. The interface is working fine with CALL TRANSACTION (N,A screen modes), BDC foreground and Display error modes.
    When the same session is executed in background mode it is not getting processed.
    The error is caused while calling screen 2031 which uses a  control. The diagnosis we received is given below
    Control Framework: Fatal error - GUI cannot be reached
    Message no. DC006
    Diagnosis
    When the Control Framework is started, the system checks whether the installed GUI supports frontend components such as controls. This check failed; the causes may be as follows:
    1.) The program is running in the background
    2.) A transaction was called using CALL TRANSACTION ... STARTING IN BACKGROUND TASK.
    Procedure
    Programs that run in the background cannot address controls on the frontend. In this case, the application must either include a fallback that does not depend on the user interface, or the program or transaction must detect for itself that is running in the background and terminate itself.
    Is there any alternate method available for running the session in background with the controls?
    Please help us in this regard.
    Thanks in advance.
    Kathirvel Balakrishnan

    Hi Kathirvel!
    In description of error: 'In this case, the application must either include a fallback that does not depend on the user interface, or the program or transaction must detect for itself that is running in the background and terminate itself.'
    Obviously in material master only second option was implemented - termination.
    Alternative: using IDOCs or BAPIs like BAPI_MATERIAL_SAVEDATA, BAPI_MATERIAL_MAINTAINDATA_RT.
    Regards,
    Christian

  • Error FRM-92050 when using Java Plug-in in Forms SSO

    Hi All,
    I have the following error with trying to use Java 1.6.0_22 instead of JInitiator:
    FRM92050 failed to connect to the server /forms/lservlet:-1
    Java Exception:
    Java.io.IOException: User does not have proper credentials configured in OID
    In the log "OC4J~OC4J_BI_Forms~default_island~1" , it said:
    oracle.ldap.util.GeneralErrorException: General Error when performing search: Unable to get Default RAD
    Error: Unable to retrive the DB Credentials from OID.
    I'm using 10gAS (10.1.2.3). The Forms SSO with JInitiator 1.3.1.26 works without any error.
    Any idea?

    Sorry this is replicated

  • Oracle error message 1445 when executing a SAP query

    Hello experts,
    We are running a ECC6.0 DEV and ACC system on an Oracle database (release 10.2.0.2.0).
    When I execute a query in SQ01 on our acceptance system, a database error occurs (ORA-1445). However, when I execute the same query on our DEV system, this error does not occur.
    I managed to find that this error might be due to a bug in Oracle and that this bug occurs when executing a query with many joins (more than 6), which indeed I am doing. What I do not understand is that this query does run on DEV without errors but not on ACC.
    Does anyone have a suggestion?
    Thanks and regards,
    Alfio Esposito

    Check if note "1126517 - ORA-1445 or incorrect values with 10.2" applies and also check if you have the same patches on DEV + PRD installed (using opatch lsinventory)
    Markus

  • Oracle error -6508 returned when executing JSP

    The JSP program executes a stored procedure from a package. I've recompiled the package after some changes. The JSP returns -6508 error when it is executing the procedure. The error is returned only after recompiling the stored package. What could be the problem?

    Hi,
    ORA-6508 error is returned when the stored procedure cannot be found.
    ORA-06508 PL/SQL: could not find program unit being called
    Cause: An attempt was made to call a stored program that could not be found. The program may have been dropped or incompatibly modified, or have compiled with errors.
    Action: Check that all referenced programs, including their package bodies, exist and are compatible.
    Please check the package signature and the specifications.
    Thanks,
    Rashmi.

  • Error SG 105 when executing transaction KKAK

    Hi,
    When executing transaction KKAK (Results Analysis) for month end processing we get the following error for a especific sales order:
    "E SG105 Enter rate CAD/USD rate type P for 01/01/2010 in the system settings"
    My question will be: why is the system asking to enter that rate which we never use. We use rate M but not P. Is that really necessary?
    We are using release 470, level 003, Support Package SAPKH47031.
    Thanks for your help.

    HI,
    in the year-depending parameters of the controlling area version definition, the ex.rate type (P) and the valid-from-date is defined, thats why P is used.
    Best regards, Christian

  • Jrockit 3.0.0-1.5.0 on Solaris 9 - coredump when executing java -version

    Hi,
    I installed jrrt-3.0.0-1.5.0 on a Solaris 9 virtual machine. When I set JAVA_HOME and PATH to point to the jrockit install and then execute java -version, I get a Segmentation Fault. Any idea why this would be happening? I don't see a core dump file being output so I'm not sure how to troubleshoot.
    Thanks in advance for your help. We are trying to install JRockit to overcome some PermGen memory issues we are seeing while running WL 9.2.3 with Sun's Java 1.5.

    Hello,
    First, make sure you have followed the installation instructions with regards to OS patches etc to the letter:
    http://e-docs.bea.com/platform/suppconfigs/configs/solaris/solaris9_92.html
    If you still get the segfault and get a text dump (jrockit.<pid>.dump) can you post it here in its entirety? If not, I suggest that you contact Oracle Support to get help. It is possible that you have OS configuration issues or are running in an unsupported configuration (the virtualizaton setup).
    Regards,
    Henrik

  • LE-TRM: Error message LTRM023 when executing LROUT

    Dear all,
    When executing the transaction LROUT, I get the error message LTRM023 "Site is not defined". I checked table LROUT and it is actually empty.
    However, I created appropriate settings in maintenance views V_T340DT, V_T347A, V_LLOCT and all other SPRO entries related to my TRM site. Futhermore, I implemented all OSS notes related to LROUT or TRM route.
    Then, I activated debug mode.
    > Issue 1:
    Main program SAPLLTRM
    Source code LLTRMU09
    Function LTRM_LLOCT_READ
    IF    ss_lloct IS INITIAL                        
       OR ss_lloct-locat <> i_locat.                 
      SELECT SINGLE * FROM lloct INTO ss_lloct       
        WHERE locat = i_locat.                       
    The issue is that settings of table LLOCT are not red. I had to manually set i_locat = "site" to process further.
    > Issue 2:
    Main program SAPLLTRS_SERVICES
    Source code LLTRS_SERVICESU08
    Function LTRS_LRSTY_READ
    SELECT * FROM lrsty INTO TABLE it_lrsty
           WHERE locat = i_locat.          
    IF sy-subrc <> 0.                      
      RAISE table_lrsty_not_maintained.    
    ENDIF.                                 
    But sy-subrc = 4..., so system raise error message table_lrsty_not_maintained. However, table LRSTY is maintened.
    Did you already have this issue? How did you solve it?
    In advance, thx a lot for your help.
    PS: I play with ECC 5.0, Release 500, SP SAPKGPAC05. With nearly equivalent settings in ECC 6.0, Release 604, SP SAPK-60402INEADFPS, I don't have any trouble running LROUT...

    Hi,
    Have you found the answer at your problem.
    I know you posted it one year ago but I am in the same case.
    So, if you have found the solution, I would be very pleased if you could help me.
    Edited by: FlorianFFF on Aug 26, 2011 3:03 PM

  • Error ORA-03113 when execute procedure via OEM

    Hi All,
    I got error messages
    ORA-03113: end-of-file on communication channel
    ERROR at line 1:
    ORA-03114: not connected to ORACLE
    when execute procedure via Oracle Enterprise Manager
    Who do you know what 's the problem and how can I resolves ?
    Thanks,
    Mcka

    Solution Description:
    =====================
    The ORA-3113 error is a general error reported by Oracle client tools,
    which signifies that they cannot communicate with the oracle shadow
    process. As it is such a general error more information must be collected
    to help determine what has happened.
    This short article describes what information to collect for an
    ORA-3113 error when the Oracle server is on a Unix platform.
    General Issues:
    ===============
    1) Is it only one tool that encounters the error or
    do you get an ORA-3113 from any tool doing a similar operation?
    If the problem reproduces in SQL*Plus, use this in all tests
    below.
    2) Check if the problem is just restricted to:
    [ ] One particular UNIX user,
    [ ] Any UNIX user
    or [ ] Any UNIX user EXCEPT as the Oracle user.
    3) Check if the problem is just restricted to:
    [ ] One particular ORACLE logon
    or [ ] Any ORACLE logon that has access to the
    relevant tables.
    4) If you have a client-server configuration does this occur from:
    [ ] Any client
    [ ] Just one particular client
    or [ ] Just one group of clients ?
    If so what do these clients have in common ?
    Eg: Software release .
    5) Do you have a second server or database version where the
    same operation works correctly?

Maybe you are looking for

  • Table for MM (Purchase- ME23N) Tax

    Hi friends, In my Report, I have to calculate & Display,  Material Purchase taxes. ( In ME23N --> Item --> Invoice -->Taxes AND ME23N --> Item -->Conditions) Can I have any Condition table for this entries (Like for SD & CS we have transparant table

  • Stopped playing quicktime movies

    Out of the blue it seems I can't play any quicktime movies. QT opens but no pic or sound. mpeg movies play fine in qt. I have qt pro, latest updates on a macbook pro w/ leopard. Get an error message directing me to 3rd party updates. Any ideas Thanks

  • Autofill Today's date as "d day of mmmm, yyyy"

    I have a purchase contract I need to have auto-fill in the date.  The line reads, "Made this ____ Day of ______, _______. Filled-out it would read, ""Made this __3__Day of July__, 2012. I currently have my form fill in other date fields formatted as

  • Indesign: language modules; link to a database

    I would like to create a catalogue in different languages. Is there a tools/function for Indesign to create a module for each language? Is it possible to link an Indesign file to a database?

  • Missing video effects in CS6 Mac

    I am a member of the Creative Cloud Subscription and have both a Windows and Mac install of CS6. The other day I went looking for a Zoom effect in PPro which I had used previously on Windows in my Mac installation and could not find it. Today I bothe