Errors during recompilation/revalidation

ORA-04045: errors during recompilation/revalidation of BOS.COUNTY
ORA-00980: synonym translation is no longer valid
I am getting the above error. Actually there are some synonyms from BOS to BOSV account. I imported all the objects into BOS first from the source. Then i imported all the objects into BOSV from the source. After that when i say
BOS>desc BOS.COUNTY
i am getting the below error
ORA-04045: errors during recompilation/revalidation of BOS.COUNTY
ORA-00980: synonym translation is no longer valid
Please reply ASAP...
thanks

Objects are imported in reverse order.
You should've imported BOSV first and then BOS. As Todd directed you need to recreate/reimport the BOS synonyms if the base objects in BOSV exist.

Similar Messages

  • ORA-04045: errors during recompilation/revalidation

    I was applying catlog.sql and catproc.sql, but has some problem during it, and now, when I try to access a database in the sqlplus appear follow errors:
    ERROR:
    ORA-04045: errors during recompilation/revalidation of
    SYS.DBMS_APPLICATION_INFO
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    Error accessing package DBMS_APPLICATION_INFO
    Someone know about it ??
    Thanks

    What went wrong during catalog and catproc ?
    Did you run out of space ? In that case just enable autoextension on the system tablespace datafile[s] and re-run catalog & catproc. Check the logfiles.
    regards,
    Ronald.
    http://ronr.nl/unix-dba

  • Oracle Java proc ORA-04045: errors during recompilation/revalidation

    hi,
    I have Oracle Java stored proc called MERGE_ENTITY_AND_EVENT invoked by a trigger. It was working fine for a couple of weeks. Today it throws this generic exception. I'm not sure what changed.
    Caused by: java.sql.SQLSyntaxErrorException: ORA-04045: errors during recompilation/revalidation of TLMDEV./3ba8073b_Log4JLogger
    ORA-06512: at "MERGE_ENTITY_AND_EVENT", line 1
    ORA-06512: at "QUOTE_TRIGGER", line 49
    1. What is the root cause of this exception ?
    2. Whats the solution ?
    If you dont know 1 or 2, how would you go about debugging this problem ?
    Thanks in advance.

    The most likely cause is that something has caused the class TLMDEV./3ba8073b_Log4JLogger to become invalid and implicit invalidation does not succeed in making it valid. In general a class must be valid in order to be run and an attempt to run an invalid class (such as because your trigger calls it) will cause an attempt to validate it and if that attempt fails an ORA-04045 can be the result. Validation of a class amounts to iterating over the set of names referenced by the class and looking for a valid class by that name, perhaps recursively attempting to validate if an invalid class by that name is found. So validation of a class may amount to an attempt to validate several classes at once. If any of them fail to be validatable, which occurs if there is no class for a given referenced name then most if not all of the classes in the set being validated and certainly the top level one will fail to validate. So if things are working correctly, the ultimate reason for the ORA-04045 will prove to be that some name referenced by TLMDEV./3ba8073b_Log4JLogger or recursived by something it references will be a name for which there is no class in the database (or more precisely in the search path used which is typically the current schema followed by PUBLIC, but could be different if some of the classes involved have had explicit resolver specifications given for them). The thing to do to try to start determining what class is missing is to do the query
    select owner||'.'||name||' : '||text from all_errors where type like 'JAVA%';
    The first thing to look at are lines for TLMDEV./3ba8073b_Log4JLogger. These will probably show text which contains either ORA-29534 identifying a referenced class that exists but could not be recursively valid, or ORA-29521 identifying names for which there is no class. The latter are the ultimately interesting ones since the former will end up being recursively caused by them. So look at the ORA-29521s and then try to determine either why the class is missing and how to restore it or which it is now referenced when it wasn't before (which would happen if some class was changed to reference it or something that references it, recursively).

  • ORA-04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD

    Hi,
    i am on 11.5.10.2 RHEL 4.0
    i tried running catalog.log on DB Tier as sys, but was not successful.
    later sqlplus apps/apps would start giving
    ORA-00604 : error occured at recursive SQL level 1
    ORA-04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    $sqlplus /nolog works fine... BUT
    $sqlplus conn /as sysdba HANGS!!!!
    Also logging via URL > after clicking on E-Business Home Page gives
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, changeOnOHSInstall and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    could anybody suggest on this error?
    Thanking You
    Regards,
    SK

    Thanks for your quick reply
    status of the object: INVALID
    PLSQL_V2_COMPATIBLITY is set to FALSE
    Run utlrp.sql to compile all invalid objects in the database
    it gave me error as follows:
    SQL> @utlrp.sql
    declare
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE TABLE utl_recomp_invalid (obj# number)
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE TABLE utl_recomp_sorted (obj# number, depth number)
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE TABLE utl_recomp_compiled(obj# number)
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE INDEX utl_recomp_comp_idx1 ON utl_recomp_compiled(obj#)
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE TABLE utl_recomp_backup_jobs (command varchar2(100), status varchar2(1000))
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    SELECT o.obj#, o.type#, o. owner# FROM obj# o
    ERROR at line 2
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    Edited by: mirage on Dec 4, 2008 6:45 PM

  • Error during php recompiling

    Hi there!
    I encoutered a problem during recompiling of php_5.3.
    The log of error is
    *Undefined symbols:*
    *"res_9search", referenced from:*
    *zif_dns_checkrecord in dns.o*
    *zif_dns_getmx in dns.o*
    *"res_9mkquery", referenced from:*
    *zif_dns_getrecord in dns.o*
    *"res_9_dnexpand", referenced from:*
    *phpparserr in dns.o*
    *phpparserr in dns.o*
    *phpparserr in dns.o*
    *phpparserr in dns.o*
    *phpparserr in dns.o*
    *phpparserr in dns.o*
    *phpparserr in dns.o*
    *zif_dns_getmx in dns.o*
    *"res_9init", referenced from:*
    *zif_dns_getrecord in dns.o*
    *"res_9send", referenced from:*
    *zif_dns_getrecord in dns.o*
    *"res_9_dnskipname", referenced from:*
    *zif_dns_getmx in dns.o*
    *zif_dns_getmx in dns.o*
    *zif_dns_getrecord in dns.o*
    *ld: symbol(s) not found*
    *collect2: ld returned 1 exit status*
    *make: * [libs/libphp5.bundle] Error 1*
    before do make, I use this configuration options:
    *./configure --prefix=/usr/local/php5 --mandir=/usr/share/man --infodir=/usr/share/info --sysconfdir=/etc --with-config-file-path=/etc --with-zlib --with-zlib-dir=/usr --with-openssl --without-iconv --enable-exif --enable-ftp --enable-mbstring --enable-mbregex --enable-sockets --with-mysql=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-apxs2=/usr/sbin/apxs --with-mcrypt*
    Can somebody help me?
    How can I fix it?

    Hi,
    While importing, please make sure that the name of the php class and the file name are the same.
    In this case, if the php file name is ora.php, then the php class should also be named "ora".
    Hope this helps.
    Thanks,
    Sudhir

  • Linking errors during install on Linux Mandrake

    When I installed oracle (8.1.7) on linux mandrake I got a series of errors during
    the very last portion of the install involving a bunch of *.mk files.
    The first error says:
    Error invoking target relink of makefile
    $ORACLE_HOME/precomp/lib/ins_precomp.mk
    All the others are virtually identical. I'm still pretty new to linux so I avoided
    recompiling the kernel. Aside from that I followed the install instructions to the
    letter. If anyone knows whats going on I would very much appreciate a push in
    the right direction.

    Alright, I've tried using the most recent archboot (2011.02-2) a couple times. I selected GRUB2 x86_64 EFI. It asked me whether or not I wanted to convert my existing MBR to GPT. When I say no, it says installation was successful, when I say yes, it drops me into parted, so I just quit. My GPT should be fine as is.
    My issue is that now, in rEFIt, I only get OS X and Legacy OS options. Legacy just freezes my computer. The legacy option has been there since I last tried to install, though I've tried to get rid of it a few different ways.
    Should I choose a different bootloader option? Can I use the cd to boot in and fix it manually? if possible, I'd like to keep using rEFIt.

  • Remove error during impdp

    Hi,
    How to remove error during import using impdp.
    ORA-39082: Object type PACKAGE_BODY:"JISPBILCORBILLINGTST502"."COR_BILL" created with compilation warnings
    ORA-39082: Object type VIEW:"JISPBILCORBILLINGTST502"."VWACTUALUNBILLEDUSAGE_CDR" created with compilation warnings
    Thanks in advance

    ORA-39082: Object type string created with compilation warnings
    Cause: The object in the SQL statement following this error was created with compilation errors. If this error occurred for a view, it is possible that the base table of the view was missing.
    Action: This is a warning. The object may have to be recompiled before being used.

  • Error while transporting objects:Internal error during pvc call: Parameter

    Dear all,
    We are facing the following error while transporting the individual configuration objects from our PI development system.
    Export failed: Internal error during pvc call: Parameter versionSpecifier or version has the invalid value null .
    However, it works fine when the complete configuration scenario is transported.
    We tried to transport the objects with different user id's, even then the issue still exists.
    Any inputs to resolve this will be highly helpful.
    Thank you,
    Younus

    Hi Mohammed,
    Answer is inside this oss [Note 1554387 - Error during export from Integration Directory|https://service.sap.com/sap/support/notes/1554387]. In this oss note, solution is to apply a patch (just a patch, not a SP). as it's a litle sap bug...
    Note: your issue is also explained with picture in this one "1550549 - PI transport: Internal error during pvc call" (sorry for this one I cannot insert a link)
    regards
    Mickael
    Edited by: Mickael Huchet on Jan 26, 2012 2:50 PM

  • Unknown Error during Recovery - iPad no longer Recognized by iTunes

    I have a 3rd Generation iPad which I was attempting to perform a factory reset.  I received an "Unknown Error" during the process and from that point on I have been unable to get iTunes to recognize my iPad in recovery mode (or otherwise).
    I have tried every thread on the subject, but I found one interesting thing.  If I connect the iPad with the same cable, etc. to another computer it immediately recognizes it in recovery mode and offers to restore the iPad.
    It seems like my computer is not recognizing the iPad because it was in the process of restoring the device when the error occurred.  Does anyone know if there is a way to reset or fix this issue.  I would prefer not to update iTunes and download both the new iTunes and iPad software again and use another computer if it is not necessary.
    Any help would be appreciated.
    Thanks

    Hey KSHItunes,
    That was a good test to try your iPad on another computer.  It does seem to isolate the issue to something with your computer setup.
    Although you would prefer not to update iTunes, there may be steps in this article which can help.
    iPhone, iPad, or iPod not recognized in iTunes for Windows - Apple Support
    Please check it out.
    Regards,
    Nubz

  • Win 8.1//Recover error at fourth supplemental disc//Detect some error during PININST_BBV.

    Hii Team,
    Please find the product details for your need full:-
    Product number: F6C57PA#ACJ
    Product: HP ENVY TouchSmart 15-j109tx Notebook PC (ENERGY STAR)
    Issue- recovery attempt has failed select one of the three buttons.
    Below is the error log in the notepad:-
    [13:34:51.78] ChkErrBB.CMD :  Detect some error during PININST_BBV.
    [13:34:51.78] ChkErrBB.CMD :  Check c:\system.sav\logs\BurnBootWarn.log
    [13:34:51.78] ChkErrBB.CMD :  or, check c:\system.sav\logs\BurnBootMerge.log
    Tss to isolate the issue:- Bios updated no go, bios defaults no go, checked with another set of rcds but same issue on the fourth discs on different dvd's also.
    RCD kit Part#:-
    749548-D62
    749549-D62
    749550-D62
    752228-B22
    Error Comes at recovery dvd:- 752228-B22.
    HP Experts kindly intervene with the case for a way out from the issue asap.

    This is NOT official HP Customer Support and I, as most other persons on this forum, do not work for HP. This is a peer-to-peer user supported forum for HP consumer class products. HP maintains no official presence on this forum and it is unlikely that HP will respond in an official capacity. Any reply from a HP employee represents their own opinion and not that of HP's.
    Please see HP Forum thread Recovery - "Detect error during PININST_BBV – Fix: Set BIOS to Factory Defaults;
    1) Boot computer – immediately click / press F10 to get into the BIOS Manager.
    2) Press F9 to set the BIOS to factory default.
    3) Press F10 to "Save and Exit"
    4) Redo the Recovery – remember to leave the wireless light “on” during the Recovery
    Other thing to try: don't use the supplemental disc... set the system date in BIOS to 2012... run "Minimized Recovery" instead of "Factory Reset"
    I currently have the same issue with my HP 15t-j100 CTO and HP 13 Split x2 (both on loan from HP). I have tried various fixes/solutions posted on the forum, but haven't been successful in recovering my computers. In both cases I an using a USB Flash Drive set up as HP Recovery Media. It appears you are using an external CD/DVD drive and 4 DVDs as your HP Recovery Media. My computers display a "Restoration Incomplete" dialog box and CTOERROR.flg displays;
    Please contact HP in your country / region, via the HP Worldwide Support Portal, for official HP assistance.
    If you have any further questions, please don't hesitate to ask.
    Please click the White KUDOS "Thumbs Up" to show your appreciation
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Microsoft office 2013 encountered an error during setup in Window 8.1

    Initially, I got microsoft office 2013 64bit standard version installed in window 8.1. However, it suddenly got errors when opening office, and closed the program automatically. Therefore, I uninstalled it, and tried to re-install office.
    However, I got the error "microsoft office 2013 encountered an error during setup" everytime when I try to install it.
    I tried 32-bit and 64 bit version, and tried to install in clean boot, deleted registry, and modified the folder name "Microsoft Help", but none of them works. 

    Make sure you completely uninstall previous versions of Office. There may be remnants left behind, even after you uninstall Office using the normal procedure. I recommend using the “Fix It” utility to uninstall Office 2013 completely. Please refer to this
    article: http://support.microsoft.com/kb/2739501/en-us you might also follow the manual steps provided on the same page.
    If you still having problems, re-registering the Windows Installer and checking permissions on the %TEMP% folder and the C:\Windows\Installer folder to make sure you have full-control. To re-register the Windows Installer run the following commands:
    msiexec /unregister
    msiexec /register

  • Adobe Illustrator CS3: Fatal error during installation

    Hello,
    I just bought the AI CS3. It installed OK on my friend's laptop (windows). However, when I clicked the big button in the installation:
    "Install Adobe Illustrator CS3"
    A window showed:
    Initializing Adobe Illustrator...
    Then I got a message:
    "Setup has encountered an error and cannot continue. Contact Adobe customer Support for assistance. Fatal error during installation".
    I've tried several times. My computer meets all the requirements (it's a really new and faster PC). And there's no old versions of AI on it yet.
    Can anyone help? Thanks!!!

    Do you have any other Adobe products on your computer? When I installed CS3 on my Mac, I kept getting failures. After contacting Adobe, they told me I had to delete ALL other Adobe products -- including Flash and Adobe Reader. Plus, I had to do searches and delete any support files associated with them. It took hours!

  • Error during processing local bean: localejbs/RfcAFBean

    Hi everybody
    we currently trying to perform a RFC Call to our developpment system. The scenario is a simple File to RFC Scenario and it worked until yesterday. Since today the Messages stuck in the RFC receiver Adapter with the following errors in the audit log:
    MP: exception caught with cause com.sap.engine.services.ejb.exceptions.BaseTransactionRolledbackLocalException: Exception thrown in method process. The transaction is marked for rollback.
    Exception caught by adapter framework: Exception thrown in method process. The transaction is marked for rollback.
    Delivery of the message to the application using connection RFC_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: Exception thrown in method process. The transaction is marked for rollback.: com.sap.engine.services.ejb.exceptions.BaseTransactionRolledbackLocalException: Exception thrown in method process. The transaction is marked for rollback..
    The deffaultTrace.trc show the following entries. Looks like an error in localejbs/RfcAFBean:
    RfcFunctionName:ZPSCD_INTERFACE_XXXXX
    Date : 07/13/2007
    Time : 9:32:39:301
    Message : 
    [EXCEPTION]
    com.sap.engine.services.ejb.exceptions.BaseTransactionRolledbackLocalException: Exception thrown in method process. The transaction is marked for rollback.
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_0.process(ModuleLocalLocalObjectImpl0_0.java:118)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:264)
         at com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0_0.process(ModuleProcessorLocalLocalObjectImpl0_0.java:103)
         at com.sap.aii.af.listener.AFWListenerBean.onMessage(AFWListenerBean.java:267)
         at com.sap.aii.af.listener.AFWListenerLocalObjectImpl0_0.onMessage(AFWListenerLocalObjectImpl0_0.java:103)
         at com.sap.aii.af.ra.ms.impl.ServicesImpl.deliver(ServicesImpl.java:306)
         at com.sap.aii.adapter.xi.ms.XIEventHandler.onDeliver(XIEventHandler.java:1034)
         at com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer.invokeHandler(ReceiveConsumer.java:392)
         at com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer.onMessage(ReceiveConsumer.java:86)
         at com.sap.aii.af.ra.ms.impl.core.queue.Queue.run(Queue.java:848)
         at com.sap.aii.af.ra.ms.runtime.MSWorkWrapper.run(MSWorkWrapper.java:56)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.lang.NoSuchMethodError: com.sap.aii.af.rfc.core.config.RfcConfigManager.isPPActive(Lcom/sap/aii/af/service/cpa/Channel;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z
         at com.sap.aii.af.rfc.afcommunication.ejb.RfcAFBean.isPPActive(RfcAFBean.java:385)
         at com.sap.aii.af.rfc.afcommunication.ejb.RfcAFBean.process(RfcAFBean.java:240)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_0.process(ModuleLocalLocalObjectImpl0_0.java:103)
         ... 14 more
    Severity : Error
    Category :
    Location : com.sap.engine.services.ejb
    Application : sap.com/com.sap.aii.adapter.rfc.app
    Thread : SAPEngine_Application_Thread[impl:3]_44
    Datasource : 312846850:/usr/sap/XDS/DVEBMGS31/j2ee/cluster/server0/log/defaultTrace.trc
    Message ID : 0003BA5D1D27006D000002BF0000653B000435201DA336D6
    Source Name : com.sap.engine.services.ejb
    Argument Objs : com.sap.engine.services.ejb.exceptions.BaseTransactionRolledbackLocalException: Exception thrown in method process. The transaction is marked for rollback.
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_0.process(ModuleLocalLocalObjectImpl0_0.java:118)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:264)
         at com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0_0.process(ModuleProcessorLocalLocalObjectImpl0_0.java:103)
         at com.sap.aii.af.listener.AFWListenerBean.onMessage(AFWListenerBean.java:267)
         at com.sap.aii.af.listener.AFWListenerLocalObjectImpl0_0.onMessage(AFWListenerLocalObjectImpl0_0.java:103)
         at com.sap.aii.af.ra.ms.impl.ServicesImpl.deliver(ServicesImpl.java:306)
         at com.sap.aii.adapter.xi.ms.XIEventHandler.onDeliver(XIEventHandler.java:1034)
         at com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer.invokeHandler(ReceiveConsumer.java:392)
         at com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer.onMessage(ReceiveConsumer.java:86)
         at com.sap.aii.af.ra.ms.impl.core.queue.Queue.run(Queue.java:848)
         at com.sap.aii.af.ra.ms.runtime.MSWorkWrapper.run(MSWorkWrapper.java:56)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.lang.NoSuchMethodError: com.sap.aii.af.rfc.core.config.RfcConfigManager.isPPActive(Lcom/sap/aii/af/service/cpa/Channel;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z
         at com.sap.aii.af.rfc.afcommunication.ejb.RfcAFBean.isPPActive(RfcAFBean.java:385)
         at com.sap.aii.af.rfc.afcommunication.ejb.RfcAFBean.process(RfcAFBean.java:240)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_0.process(ModuleLocalLocalObjectImpl0_0.java:103)
         ... 14 more
    Arguments : com.sap.engine.services.ejb.exceptions.BaseTransactionRolledbackLocalException: Exception thrown in method process. The transaction is marked for rollback.
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_0.process(ModuleLocalLocalObjectImpl0_0.java:118)
         at com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(ModuleProcessorBean.java:264)
         at com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0_0.process(ModuleProcessorLocalLocalObjectImpl0_0.java:103)
         at com.sap.aii.af.listener.AFWListenerBean.onMessage(AFWListenerBean.java:267)
         at com.sap.aii.af.listener.AFWListenerLocalObjectImpl0_0.onMessage(AFWListenerLocalObjectImpl0_0.java:103)
         at com.sap.aii.af.ra.ms.impl.ServicesImpl.deliver(ServicesImpl.java:306)
         at com.sap.aii.adapter.xi.ms.XIEventHandler.onDeliver(XIEventHandler.java:1034)
         at com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer.invokeHandler(ReceiveConsumer.java:392)
         at com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer.onMessage(ReceiveConsumer.java:86)
         at com.sap.aii.af.ra.ms.impl.core.queue.Queue.run(Queue.java:848)
         at com.sap.aii.af.ra.ms.runtime.MSWorkWrapper.run(MSWorkWrapper.java:56)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: java.lang.NoSuchMethodError: com.sap.aii.af.rfc.core.config.RfcConfigManager.isPPActive(Lcom/sap/aii/af/service/cpa/Channel;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z
         at com.sap.aii.af.rfc.afcommunication.ejb.RfcAFBean.isPPActive(RfcAFBean.java:385)
         at com.sap.aii.af.rfc.afcommunication.ejb.RfcAFBean.process(RfcAFBean.java:240)
         at com.sap.aii.af.mp.module.ModuleLocalLocalObjectImpl0_0.process(ModuleLocalLocalObjectImpl0_0.java:103)
         ... 14 more
    Dsr Component :
    Dsr Transaction : 3bdbc330311311dcb33b0003ba5d1d27
    Dsr User :
    Indent : 0
    Level : 0
    Message Code :
    Message Type : 1
    Relatives :
    Resource Bundlename :
    Session : 0
    Source : com.sap.engine.services.ejb
    ThreadObject : SAPEngine_Application_Thread[impl:3]_44
    Transaction : SAP J2EE Engine JTA Transaction : [12ffffffa5ffffffaa200435f]
    User : J2EE_GUEST
    Date : 07/13/2007
    Time : 9:32:39:304
    Message : Error during processing local bean: localejbs/RfcAFBean
    Severity : Error
    Category :
    Location : com.sap.aii.af.mp.ejb.ModuleProcessorBean.process(String , ModuleData)
    Application : sap.com/com.sap.aii.af.app
    Thread : SAPEngine_Application_Thread[impl:3]_44
    Datasource : 312846850:/usr/sap/XDS/DVEBMGS31/j2ee/cluster/server0/log/defaultTrace.trc
    Message ID : 0003BA5D1D27006D000002C00000653B000435201DA33A4D
    Source Name : com.sap.aii.af.mp.ejb.ModuleProcessorBean
    Argument Objs :
    Arguments :
    Dsr Component :
    Dsr Transaction : 3bdbc330311311dcb33b0003ba5d1d27
    Dsr User :
    Indent : 0
    Level : 0
    Message Code :
    Message Type : 0
    Relatives :
    Resource Bundlename :
    Session : 0
    Source : com.sap.aii.af.mp.ejb.ModuleProcessorBean
    ThreadObject : SAPEngine_Application_Thread[impl:3]_44
    Transaction : SAP J2EE Engine JTA Transaction : [12ffffffa5ffffffaa200435f]
    User : J2EE_GUEST
    Date : 07/13/2007
    Time : 9:32:39:306
    Message : Rolling back transaction for message 38d82020-3113-11dc-c07b-0003ba5d1d27(INBOUND) due to: Exception thrown in method process. The transaction is marked for rollback.
    Severity : Error
    Category :
    Location : com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer.invokeHandler(QueueMessage, MessageController, Services)
    Application :
    Thread : SAPEngine_Application_Thread[impl:3]_44
    Datasource : 312846850:/usr/sap/XDS/DVEBMGS31/j2ee/cluster/server0/log/defaultTrace.trc
    Message ID : 0003BA5D1D27006D000002C10000653B000435201DA341C8
    Source Name : com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer
    Argument Objs : 38d82020-3113-11dc-c07b-0003ba5d1d27(INBOUND),Exception thrown in method process. The transaction is marked for rollback.,
    Arguments : 38d82020-3113-11dc-c07b-0003ba5d1d27(INBOUND),Exception thrown in method process. The transaction is marked for rollback.,
    Dsr Component :
    Dsr Transaction : 3bdbc330311311dcb33b0003ba5d1d27
    Dsr User :
    Indent : 0
    Level : 0
    Message Code :
    Message Type : 1
    Relatives :
    Resource Bundlename :
    Session : 0
    Source : com.sap.aii.af.ra.ms.impl.core.queue.ReceiveConsumer
    ThreadObject : SAPEngine_Application_Thread[impl:3]_44
    Transaction : SAP J2EE Engine JTA Transaction : [12ffffffa5ffffffaa200435f]
    User : J2EE_GUEST
    It looks like the JCO Bean has an error. Any Ideas
    Regards Oliver

    Hi Bhavesh
    I found some more interesting log entries and it seems to be a user password problem:
    Retries exceded, set message 38f10280-3388-11dc-9c91-0003ba5d1d27(INBOUND) to status NON_DELIVERED.
    Name or password is incorrect (repeat logon)
    JCoClient connection missingHost:xdsci_XDS_31|AdapterType:MessagingSystem|Sender::FileServer|Receiver::PSCD_CDD|Interface:ZPSCD_INTERFACE_DECLAR_TVA:urn:sap-com:document:sap:rfc:functions|MsgID:38f10280-3388-11dc-9c91-0003ba5d1d27
    Is this the user/password of the channel or is it service user for the JCO?
    Regards Oliver

  • Error during the upgrade phase "start_shdi_first"

    Hello,
    We are having issue with upgrading r/3 4.7 enterprise extension set to ECC 6.0
    Here the error message goes....
    starting system failed rc=0
    to analyse the error during start of shadow instance
    view files 'Startsfi.log' and 'devtrace.log'
    in directory usr\..put
    repeat phase until shadow instance is started
    and u can logon instance no '01'"
    We have changed the DDIC password during upgrade.after that we ran the initphase to update the password.
    I think sapup is referring the old password which was entered initially during the upgrade and we dont remember the old password also.
    Appreciate your response
    Startsfi.log
    1 ETQ201XEntering upgrade-phase "START_SHDI_FIRST" ("20080218175653")
    2 ETQ366 Connect variables are set for shadow instance access
    4 ETQ399 System-nr = '01', GwService = 'sapgw01'
    4 ETQ399 Environment variables:
    4 ETQ399   dbs_mss_schema=de4
    4 ETQ399   auth_shadow_upgrade=1
    4 ETQ399 Set environment for shadow connect:
    4 ETQ399 ENV: dbs_mss_schema=de4
    4 ETQ399 ENV: auth_shadow_upgrade=1
    4 ETQ399 Set RFC variables for shadow connect:
    4 ETQ399 System-nr = '01', GwService = 'sapgw01'
    4 ETQ399 Set tool parameters for shadow connect:
    4 ETQ380 computing toolpath for request "TP_SHADOW_CONNECT"
    4 ETQ381 request "TP_SHADOW_CONNECT" means "tp needs to connect to shadow system"
    4 ETQ382 translates to group "R3UP_TOOL_GROUP_NEW"
    4 ETQ383 translates to path "exe"
    4 ETQ383 translates to path "exe"
    4 ETQ399   default TPPARAM: SHADOW.TPP
    4 ETQ380 computing toolpath for request "TP_ALWAYS_NEW"
    4 ETQ381 request "TP_ALWAYS_NEW" means "always tp from DIR_PUT/exe, for phase KX_SWITCH"
    4 ETQ382 translates to group "R3UP_TOOL_GROUP_NEW"
    4 ETQ383 translates to path "exe"
    4 ETQ383 translates to path "exe"
    2 ETQ399 Starting shadow instance
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2 ETQ353 Starting system
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2 ETQ370 starting test RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "UPG_IS_SHADOW_SYSTEM" by RFC
    4 ETQ359 RFC Login to: System="DE4", Nr="01", GwHost="MTW02SDEC01", GwService="sapgw01"
    4 ETQ232 RFC Login succeeded
    2EETQ235 Call of function module "UPG_IS_SHADOW_SYSTEM" by RFC failed (error-status "-3")
    4 ETQ239 Logging off from SAP system
    2WETQ372 test RFC failed, rc="-3"
    2EETQ399 Starting shadow instance failed
    2EETQ399 Test RFC failed finally
    2EETQ399 Dialogue: ERROR
    2EETQ399 Starting system failed, rc=0
    DEVTRACE:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        DE4
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    111
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2272
    Mon Feb 18 16:08:40 2008
    kernel runs with dp version 229(ext=109) (@(#) DPLIB-INT-VERSION-229)
    length of sys_adm_ext is 364 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 2272) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 111 successfully loaded
         shared lib "dw_xtc.dll" version 111 successfully loaded
         shared lib "dw_stl.dll" version 111 successfully loaded
         shared lib "dw_gui.dll" version 111 successfully loaded
         shared lib "dw_mdm.dll" version 111 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    Mon Feb 18 16:08:52 2008
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0065.qqq.nxst) took 12 seconds
    Mon Feb 18 16:09:10 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 18 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5361]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >MTW02SDEC01_DE4_01                      <
    DpShMCreate: sizeof(wp_adm)          19976     (908)
    DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1296)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 065C0040, size: 4241064)
    DpShMCreate: allocated sys_adm at 065C0040
    DpShMCreate: allocated wp_adm at 065C1B30
    DpShMCreate: allocated tm_adm_list at 065C6938
    DpShMCreate: allocated tm_adm at 065C6968
    DpShMCreate: allocated wp_ca_adm at 06936BF8
    DpShMCreate: allocated appc_ca_adm at 0693B248
    DpShMCreate: allocated comm_adm at 0693C9B8
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 069BD868
    DpShMCreate: allocated gw_adm at 069BD8A8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 069BD8D8
    DpShMCreate: allocated wall_adm at 069BD8E0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 2046 blocks reserved for free list.
    ES initialized.
    WARNING => System running without ICM - check rdisp/start_icman [dpxxdisp.c   12437]
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( MTW02SDEC01) [dpxxdisp.c   11753]
    DpStartStopMsg: send start message (myname is >MTW02SDEC01_DE4_01                      <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 111
    Release check o.K.
    Mon Feb 18 16:09:13 2008
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr 4724] Mon Feb 18 16:08:40 2008
    [Thr 4724] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    110
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        5420
    [Thr 4724] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 5420) [msxxserv.c   1824]
    [Thr 4724] MsInitAclInfo: acl file D:\usr\sap\put\DE4\SYS\global\ms_acl_info.DAT not found, unrestricted access
    [Thr 4724] MsGetOwnIpAddr: my host addresses are :
    [Thr 4724]   1 : [172.20.28.159] MTW02SDEC01.mindsap.com (HOSTNAME)
    [Thr 4724]   2 : [127.0.0.1] MTW02SDEC01.mindsap.com (LOCALHOST)
    [Thr 4724] MsHttpInit: full qualified hostname = MTW02SDEC01.mindsap.com
    [Thr 4724] HTTP logging is switch off
    [Thr 4724] MsHttpOwnDomain: own domain[1] = mindsap.com
    [Thr 4724] ms/icf_info_server : deleted
    [Thr 4724] *** I listen to port sapmsSHDDE4 (3601) ***
    [Thr 4724] CUSTOMER KEY: >J1537289841<
    trc file: "dev_rd", trc level: 1, release: "700"
    Mon Feb 18 16:09:10 2008
    ***LOG S00=> GwInitReader, gateway started ( 2344) [gwxxrd.c     1694]
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    110
    intno      20050900
    make:      multithreaded, ASCII, optimized
    pid        2344
    gateway runs with dp version 229(ext=109) (@(#) DPLIB-INT-VERSION-229)
    gw/local_addr : 0.0.0.0
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    Bind service sapgw01 (socket) to port 3301
    GwPrintMyHostAddr: my host addresses are :
      1 : [172.20.28.159] MTW02SDEC01.mindsap.com (HOSTNAME)
      2 : [127.0.0.1] MTW02SDEC01.mindsap.com (LOCALHOST)
    DpSysAdmExtCreate: ABAP is active
    DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    DpShMCreate: sizeof(wp_adm)          19976     (908)
    DpShMCreate: sizeof(tm_adm)          3605136     (17936)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528040/528048
    DpShMCreate: sizeof(comm_adm)          528048     (1048)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (96)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1296)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 06110040, size: 4241064)
    DpShMCreate: allocated sys_adm at 06110040
    DpShMCreate: allocated wp_adm at 06111B30
    DpShMCreate: allocated tm_adm_list at 06116938
    DpShMCreate: allocated tm_adm at 06116968
    DpShMCreate: allocated appc_ca_adm at 0648B248
    DpShMCreate: allocated comm_adm at 0648C9B8
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0650D868
    DpShMCreate: allocated gw_adm at 0650D8A8
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0650D8D8
    MtxInit: -2 0 0
    Mon Feb 18 16:09:14 2008
    GwDpInit: attached to gw_adm at 0650D8A8
    Thanks,
    Vadi

    Dear All,
    The issue has been resolved by changing the DDIC password to what it was when we have started the upgrade.The password was "welcome" when we have started with upgrade after that it has been changed to
    "basis05" during upgrade.we changed it back to welcome and it started working fine.
    Here it took long time to find out what was the password when we have starte upgrade.Resetting to standard ddic password also ddint help out in our case.
    Thanks for all your replies.

  • Error during installation of IDES 4.7 on Windows 2003 Server OS

    Hi....
    I'm getting the following error during the installation of the IDES 4.7.
    Request someone to guide me.
    The error part of the log file is produced below
    Thanks
    Ashwin
    See 'D:\oracle\ora92/bin/lsnrctl stat' output in 'D:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2007-07-05 23:24:57
    'D:\oracle\ora92/bin/lsnrctl stat' returned with '3'.
    INFO 2007-07-05 23:24:57
    Creating file D:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2007-07-05 23:25:00
    See 'D:\oracle\ora92/bin/lsnrctl start' output in 'D:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2007-07-05 23:25:00
    'D:\oracle\ora92/bin/lsnrctl start' returned with '0'.
    INFO 2007-07-05 23:25:00
    Copying file D:/sap47ee/kernel/NT/COMMON/INSTALL/ORADBUSR.SQL to: ./oradbusr.sql.
    INFO 2007-07-05 23:25:00
    Creating file D:\SAPinst ORACLE KERNEL\oradbusr.sql.
    INFO 2007-07-05 23:25:01
    Changed working directory to D:\SAPinst ORACLE KERNEL.
    INFO 2007-07-05 23:25:05
    Changed working directory to D:\SAPinst ORACLE KERNEL.
    ERROR 2007-07-05 23:25:10
    CJS-00084  SQL Statement or Script failed. Error Message: Executable D:\oracle\ora92/bin/sqlplus.exe returns 959.
    ERROR 2007-07-05 23:25:10
    FJS-00012  Error when executing script.
    INFO 2007-07-05 23:26:23
    Changed working directory to D:\SAPinst ORACLE KERNEL.
    INFO 2007-07-05 23:26:28
    Changed working directory to D:\SAPinst ORACLE KERNEL.
    ERROR 2007-07-05 23:26:33
    CJS-00084  SQL Statement or Script failed. Error Message: Executable D:\oracle\ora92/bin/sqlplus.exe returns 959.
    ERROR 2007-07-05 23:26:33
    FJS-00012  Error when executing script.

    this is the content of file oradbusr.log
    what conclusion can be drawn out of it???
    old   3:    if substr(upper('&&1'),1,5) = 'SAPR3' then
    new   3:    if substr(upper('SAPR3S'),1,5) = 'SAPR3' then
    old   6:           if upper('&&2') = 'NT' then
    new   6:           if upper('NT') = 'NT' then
    old  13:                :sDomain := upper('&&3');
    new  13:                :sDomain := upper('INDIA');
    old  17:           :sSchema := upper('&&1');
    new  17:           :sSchema := upper('SAPR3S');
    old  18:           if upper('&&2') = 'NT' then
    new  18:           if upper('NT') = 'NT' then
    old  25:                :sDomain := upper('&&3');
    new  25:                :sDomain := upper('INDIA');
    using following Parameters:                                                    
    .  Oracle SID:                         R3S                                     
    .  Oracle Version:                     9.2.0.2.1                               
    .  Parametervalue os_authent_prefix:   OPS$                                    
    .  Database User (Schema):             SAPR3                                   
    .  SAP R/3 Administrator:              OPS$INDIA\R3SADM                        
    .  SAP R/3 Serviceuser:                OPS$INDIA\SAPSERVICER3S                 
    unable to assign default tablespace to user: SAPR3                             
    begin
    ERROR at line 1:
    ORA-00959: tablespace 'PSAPUSER1D' does not exist
    ORA-06512: at line 90

Maybe you are looking for

  • Non-english installation CD

    Hi, I am wondering if I can use an english Mac system to install files from a non-english installation CD? I have this program installation CD that is in Japanese but I only have an english mac system? Will my system still able to detect the CD and i

  • Crystal Reports and Business One Problems

    Hello all Some questions about Crystal Reports and Business One, I try run some Crystal reports developed in special but for some reason when I ussing Terminal Services this unplug, so, more strange its when the user are not administrators because wh

  • 10g upgrade on AIX platform

    I am just wondering whether someone else has already done a similar task (from 8.1.7.4 to 10.1.0.4 on AIX 5.2)...Which are the main risks or issues in doing this job? I have already done a research within this forum, Metalink and Web but nothing / no

  • Playlist not sorted in iPhone

    I have songs in a Playlist sorted alphbetically. But in the iPhone the songs in that Playlist are in a different order. Has anyone experienced this? Is there a way to ensure the songs are sorted in the way they are in iTunes? Thanks.

  • Duplicate Keyword Problem

    I've obviously made some huge error while adding keywords to my images. See the attached smart album pop up. Despite the fact I've tried to enter my keywords exactly the same using a constant taxometry and nomenclature-- I've got dups of the same key