Extending a AM(Not a Root AM)  on OAF-CU2 is erroring out

Hi All,
I have extended a Application Module(Not a root AM) to add some extra where clause in AMImpl.java.
I have a region in which I have few fields, this region I am adding into page using personalization. The application module of this new region is the old one.
When I am running the page, I am getting this error
oracle.apps.fnd.framework.OAException: The Application Module found by the usage name SrchRN810_SrchRN_oracle_apps_ota_admin_enrollment_server_LearnerSearchAM has a definition name &AM_DEFINITION_NAME different than &DEFINITION_NAME specified for the region.
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1960)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:86)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
     at oracle.jsp.JspServlet.service(JspServlet.java:148)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
## Detail 0 ##
oracle.apps.fnd.framework.OAException: The Application Module found by the usage name SrchRN810_SrchRN_oracle_apps_ota_admin_enrollment_server_LearnerSearchAM has a definition name &AM_DEFINITION_NAME different than &DEFINITION_NAME specified for the region.
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.createApplicationModule(OAWebBeanContainerHelper.java:435)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.getApplicationModule(OAWebBeanHelper.java:1684)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.getDataObjectName(OAWebBeanHelper.java:1543)
     at oracle.apps.fnd.framework.webui.beans.message.OAMessageChoiceBean.getDataObjectName(OAMessageChoiceBean.java:404)
     at oracle.apps.fnd.framework.webui.OAPageBean.createAndAddHiddenPKFields(OAPageBean.java:5544)
     at oracle.apps.fnd.framework.webui.OAPageBean.addHiddenPKFields(OAPageBean.java:5110)
     at oracle.apps.fnd.framework.webui.OAPageBean.addHiddenPKFields(OAPageBean.java:5131)
     at oracle.apps.fnd.framework.webui.OAPageBean.addHiddenPKFields(OAPageBean.java:5131)
     at oracle.apps.fnd.framework.webui.OAPageBean.addHiddenPKFields(OAPageBean.java:5131)
     at oracle.apps.fnd.framework.webui.OAPageBean.addHiddenPKFields(OAPageBean.java:5131)
     at oracle.apps.fnd.framework.webui.OAPageBean.addHiddenPKFields(OAPageBean.java:5131)
     at oracle.apps.fnd.framework.webui.OAPageBean.addHiddenPKFields(OAPageBean.java:5131)
     at oracle.apps.fnd.framework.webui.OAPageBean.addHiddenPKFields(OAPageBean.java:5131)
     at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2377)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1711)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:86)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
     at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
     at oracle.jsp.JspServlet.service(JspServlet.java:148)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
Any Idea, why I am getting this error

Can you tell us what you have done in detail..
I dont think AM would have a whereclause..
You can reach me at [email protected] if you need more info.
Thanks
Kesava

Similar Messages

  • "Application module  is not a root app module but has no parent"

    This is to follow up on my answered question on rootAN substitution
    Re: "login session has expired" after am substitution
    I am working on an OAF extension.
    I have a new LOV region. I extended (to be substituted) the seeded VO, call it xxVO. And I have three custom methods using this xxVO that are called from processFormRequest of my controller which extends the seeded controller.
    So putting these methods in rootAM and AM substitution didn't work as some folks pointed out.
    So I created xxAM (extends root AM), put xxVO in xxAM’s data model and put my methods in xxAM, set this xxAM as AMDefinition for my custom LOV region.
    In my controller I do
    OAApplicationModule xxAM = new xxprg.oracle.apps.icx.por.req.server.xxprgRequisitionAMImpl();
    But I am getting
    => oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidOwnerException: JBO-25301: Application module is not a root app module but has no parent
    at
    xxAM.invokeMethod("handleChangeRequester", parameters);
    I found a few posts on the same topic. One advise was to not instantiate ‘new’ AM but do something like this
    Xo2cAcctOviewExtAMImpl amExt = (Xo2cAcctOviewExtAMImpl )pageContext.getApplicationModule(webBean);
    In this example I am confused about the fact that ‘getApplicationModule(webBean);’ which is used in the signature of the processFormRequest will return a ‘rootAM’, is this correct?
    There was another workaround mentioned in other posts to not use xxAM at all but build a class to mimic an xxAM passing all needed values that custom methods require. In which case how(or better where) do I instantiate xxVO since now xxVO won’t be part of any AM data model?
    Can someone please clarify.
    Thank you
    Anatoliy

    Pratap,
    Thank you for the response.
    The reason I need to use new xxCO on the page is this.
    Seeded page CheckoutLinesPG.
    It has advanced table on it where every column has it's one external region.
    The new LOV region xxRN is put on a page also under this table new column.
    1. When a requester (seeded region on the seeded page) is changed then my xxLOV should reflect the change and be populated according to what is selected in the Requester LOV.
    2. When one-time address is added (another seeded region on the seeded page) my xxLOV should be disabled, when one time address taken out - enabled again.
    So xxCO should apply to the whole page.
    The VO behind advanced table PoRequisitionLinesVO is extended with 2 additional attributes and will substitute, the new xxVO is under xxAM data model.
    All works fine with my methods in the seeded RequisitionAM which I get a handle to in the xxCO. But I don;t know how to get the handle to the xxAM if I put my methods there.
    Thanks,
    Anatoliy
    P.S. just fyi - I know it is not the recommended approach but what I did for now I put all calls into the controller - in the controller I can get a handle to root AM, through that I am getting a handle to xxVO which (!) is substituted during runtime with my xxVO. But if you can figure out how to get a handle to xxAM in my case it will be great.
    Edited by: asmirnov on Mar 24, 2009 2:04 PM

  • Adobe Photoshop CS6 Extended Could not complete your request because of a program error.

    When starting Photoshop CS6 I get this error message, Adobe Photoshop CS6 Extended  Could not complete your request because of a program error (-- OK --).  This happens on the main screen immediately.  Once I click OK the program seems to be alright.  But some part of it, that I haven't discovered yet, may not function properly.
    I am running Windows7 Professional Service Pack 1 64 bit with Intel i7-4770k CPU and 16 GIG Ram.
    This problem just started recently, everything has been fine up till now.  I must have done something when trying to defragment the Registry or get rid of temp files.
    I have uninstalled Photoshop CS6 and reinstalled it with no effect.  I have tried to run Photoshop CS6 32 bit in Safe Mode, but it will not run.  It hangs up on Reading Memory.
    Is there any kind log file that would tell me what is causing this to occur?
    Does anyone know what might cause this?
    Thank you in advance for any helpful information.
    J. J. Patterson

    Did you reset your Preferences and Photoshop tools.  Photoshop Preferences are not removed with an un-install and an Install does not install preferences.  Preferences are created  for a user id when a user ID start Photoshop  and there are no preferences for the user ID.    

  • When I attempt to Extend a PDF document via my LiveCycle server I get the error"Application Alert" The file could not be saved. Are you sure you want to lose your results?

    When I attempt to Extend a PDF document via my LiveCycle server I get the error"Application Alert" The file could not be saved. Are you sure you want to lose your results?
    I can login fine via this address.
    http://[Server Address]:[Port Number]/ReaderExtensions
    And I can apply the extension successfully, but when I attempt to download I receive the error above.
    Application Alert" The file could not be saved. Are you sure you want to lose your results?

    Please check the supported version of flash player on your client machine for LiveCycle : http://bit.ly/1wGD9t4
    Upgrade or downgrade it accordingly.
    Thanks,
    Wasil

  • After reinstalling MAC OS 10.6.8, config the permissions to read/write/no access, my MacMini [mid 2010] refuses to reboot. I tried to reboot in safe mode with fsck, but after the steps to be taken, it says fscs not done, root device is read only

    After reinstalling MAC OS 10.6.8, I config the permissions to read/write/no access, my MacMini [mid 2010] refuses to reboot. I tried to reboot in safe mode with Command+S and fsck, but after the steps to be taken, it says fscs not done, root device is read only. I also tried to bypass the Mac firmware password by taking one Ram card out and reboot the macmini while holding COMMAND+OPTION+P+R. But no luck. The macmini is not able to see the mac OSX installation CD.
    Please help ??

    f.fromleiden wrote:
    After reinstalling MAC OS 10.6.8, I config the permissions to read/write/no access, my MacMini [mid 2010] refuses to reboot.
    How and where did you change which permissions? And what was the goal?
    Do you have a complete backup of your system? and more importantly data files?
    What happened that prompted the need to reinstall the 10.6.8 update?
    The immediate road forward would be to boot from the optical drive and revert the changes you made.
    What happens when you boot with the install cd and hold down C or hold down the option key?
    [Off topic: I've been to Leiden a few times ]

  • Extended wireless network not extending in ios5

    Hi,
    I have a virgin cable modem into a time capsule.
    I have extended my wireless network using an airport express and it was all working fine with my iphone and ipad.
    Since updating my phone and ipad to ios5 the areas where my network were extended are now not receiving a wifi signal.
    When i check settings on network it appears as though the phone is looking at the time capsule whereas before it just seemed to be connecting to the SSID.
    Any help would be gratefully received.
    P

    is there a way to disable Wireless A, B and G on both Airport Expresses or to force the settings from the Airport Extreme onto both APs to also make them do N Only?
    Unfortunately, no. The "extending" devices use default wireless settings, a/n/b/g wireless.
    You might want to let Apple know what you would like to see in the future:
    Apple - AirPort Express - Feedback

  • ERROR. NMO not setuid-root (Unix-only)

    I'm getting the following error when I try to change the Backup Settings on a new stand-alone install of 11.2.0.3.0 on Linux 5.7.
    Connection to host as user oracle failed. ERROR. NMO not setuid-root (Unix-only)
    I am NOT performing a Grid install and I'm using dbconsole. The installation steps are as follows:
    1. Install 11.2.0.3.0 software only.
    2. Use netca to configure LISTENER.
    3. Use dbca to configure new database.
    Google serches indicate that I should re-run the root.sh which I have done several times, but the issue persists.
    Thanks,
    Mark

    Similar thread
    ERROR: NMO not setuid-root

  • I was created 4 maintainance sub plans,after that when i check it in sqlserver.agent......all 4 subplans are not in root of agent.give me solution

    i was created 4 maintainance sub plans,after that when i check it in sqlserver.agent......all 4 subplans are  not in root of agent.give me solution

    i was created 4 maintainance sub plans,after that when i check it in sqlserver.agent......all 4 subplans are  not in root of agent.give me solution
    Question is not clear. I guess you are doing something wrong.When you create maintenance plan there is option to schedule it you can use that. If you do so automatically a agent job will be created and will schedule it at required time. Please take help
    of below links
    How to use Maintenance plan wizard
    Create Maintenance plan
    Setting up Maintenance plan to backup DB
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • JBO-25301: Application module ... is not a root app module but has no..

    Hello,
    Tools:_
    Jdeveloper 10.1.2
    JPDK 10.1.2
    ADF
    Portal version 10.1.2 (repository upgrade 10.1.4)
    Problem:_
    I have an application that calls other application module from it's own application module. Some times it gives error (not every time):
    •     JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOwnerException, msg=JBO-25301: Application module FormHistoryServiceLocal is not a root app module but has no parent
    •        JBO-29000: Unexpected exception caught: oracle.jbo.InvalidOwnerException, msg=JBO-25301: Application module FormHistoryServiceLocal is not a root app module but has no parent
    •           JBO-25301: Application module FormHistoryServiceLocal is not a root app module but has no parent
    Code that application uses to call other application module:_
    public ApplicationHandler( ApplicationModule rootModule )
        try
          if(rootModule != null)
            formHistory = (FormHistoryService)rootModule.findApplicationModule(FORMHISTORYSERVICE_LOCAL);
            if(formHistory == null){
              formHistory = (FormHistoryService)rootModule.createApplicationModule( FORMHISTORYSERVICE_LOCAL, FORMHISTORYSERVICE_DEF );
            userInfoDAO.connect();
          }else System.out.println("Application Module was NULL");
        }catch(Exception e)
          e.printStackTrace();
    (calls: formHistory.addToHistory())
    The other application module:+
    public void addToHistory( Number formId, Number status, Number type, Number userId, String event )
        FormhistoryDefImpl defImpl = (FormhistoryDefImpl)EntityDefImpl.findDefObject("com.mysite.app.Formhistory");
        FormhistoryImpl fh = (FormhistoryImpl)defImpl.CreateFormhistory( this.getDBTransaction(), new NameValuePairs() ); //************ Exception is thrown from here! ************
        fh.setFormid(formId);
        fh.setStatus(status);
        fh.setType(type);
        fh.setUserid(userId);
        fh.setEvent(event);
        oracle.jbo.domain.Date eventTimestamp = new oracle.jbo.domain.Date((new java.sql.Timestamp(new java.util.Date().getTime())));
        fh.setEventtimestamp(eventTimestamp);
        this.getTransaction().commit();
    What's wrong here?
    JBO description:+
    JBO-25301: InvalidOwnerException
    Cause: While traversing the parenthood chain for application modules, a child application module was found with no container (parent) application module.
    Action: If this application has added custom business component classes, it may be that the application code is attempting to access a child application module before it is fully initialized. If this is not the case, this error probably represents some internal error in BC4J framework, in which case contact BC4J Technical Support.
    How can i ensure that child application module is already initialized?

    Anyone?

  • NMO not setuid-root (Unix-only)

    Hi,
    After changing the database to the ARCHIVELOG mode, I tried to restart the database instance using the web-based Enterprise Manager Database Controle, the following error message was displayed:
    RemoteOperationException: ERROR: NMO not setuid-root (Unix-only)
    Could someone please help me?
    Thanks

    Was the root.sh script ran?
    Check the permission of the nmo and nmb executable found in $ORACLE_HOME/bin or $AGENT_OH/bin. Both should have the following permissions
    ls -al nmo
    ls -al nmb
    -rwsr-s--- 1 root dba 22465 Apr 13 17:53 nmo
    -rwsr-s--- 1 root dba 18055 Apr 13 17:53 nmb
    If not, change the permissions to match the above.

  • ERROR: NMO not setuid-root

    when i wanna to startup database by http://localhost:5500/em.how to fix it?
    Error Message
    RemoteOperationException: ERROR: NMO not setuid-root (Unix-only)

    You missed running the root.sh
    so execute the following as root:
    cd $ORACLE_HOME (your OEM HOME directory)
    chmod 6750 bin/nm?
    chmod 700 bin/emdctl
    chmod 700 bin/emagent
    chown root bin/nm?
    as oem user:
    emctl stop agent
    emctl start agent

  • Extend volume - Storage Pools - iSCSI - "Extend failed" // "Error extending volume: Size Not Supported"

    Hi,
    I've created a storage pools of 44x 1TB SAS, my storage pool name is "DAS" with 39.1TB (35.8 TB Free Space)
    I have a virtual disk named "iSCSI_DFS", Simple, Thin, 20TB with 3.05 TB Allocated
    I've created volumes on that disk, NTFS, Thin, Different size.
    I create iSCSI VIRTUAL DISKS on those Volumes, same size (my volumes are full)
    I want to "extend" my volumes size... I click on my volume, Extend Volume, enter a new size (current is 162GB so I enter 200 and select GB) and click OK
    The Volume status turn to "Extend failed" with "Error extending volume: Size Not Supported"
    Can you help? I need to change my volumes size...
    Thx

    I also could not get my partition to extend using the new Windows Server 2012 interface.  Did you try to extend volume from the "computer management", "disk management" console?  Get there from Administrator Tools - Computer Management.  I
    was able to extend my partition only from there.  You need to first make sure you have available space on the disk.  I had to delete an empty volume first before I was able to extend the partition.  Hope this helps.   Anthony :)
    Thx !! 
    While in the Computer Management, I realised that my Disk was "Basic" and not "Dynamics", Extending using the Disk Management suggest to switch to Dynamics, and it's now working.
    The error in the Server Manager should be "Unable to Extend : Your disk is Basic" or something like.
    The Disk is a virtual disk on my Storage Pools.!!!

  • "Disk not readable...", Verify & Repair fail, Zero Out, HFS+ still fail

    First, a time machine error came up saying the volume could not be found. Tried disk verify, disk repair (in disk utility) restarting, reconnecting, but to no avail. On restarting, computer says "Disk was not readable by this computer." I then Zeroed out all the data and reformatted the drive to Mac OS Extended (Journaled). TM worked for most of the day until tonight when another error message came up saying that the next backup failed because it required 168GB, but only 49GB was available. Yet I had done virtually nothing since the last backup the hour earlier. I clicked "Back up Now" to try and get it to maybe re-evaluate the situation and maybe do the backup, but instead, I get the error that I got before - "The volume could not be found" (or something to that effect). Upon restarting, I again get "The disk you inserted was not readable by this computer".
    Is there something I am doing wrong? What can I do to fix this, or prevent this from happening later?

    Alias7 wrote:
    "Disk Utility stopped verifying "disk2s1" because the following error was encountered: Filesystem verify or repair failed" In the details box, it says:
    "Verifying and Repair volume "disk2s1"
    Invalid node structure
    Invalid B-tree node size
    Invalid node structure
    Invalid B-tree node size
    Volume check failed.
    Error: Filesystem verify or repair failed."
    This is what the error message was before, and is what it is now.
    You had these sorts of errors, then zeroed-out the drive, now you have them again?
    There's only one conclusion: your drive is failing. They don't always just crash and burn.
    Note that the volume name should be "Time Machine", but Disk Utility sees it as "disk2s1" for some reason.
    That's it's internal name to OSX. Use +System Profiler+ (Apple menu, +About this Mac,+ then +More Info.+
    Look in the sidebar for FireWire or USB (whichever it is), select it, and you'll see disk2s1 listed as BSD name.
    Time Machine Buddy seems to freeze most of my other widgets (can't type in calculator, can't delete Time Machine Buddy). It doesn't seem to do anything either, It just sits there saying "Backup Status" and "Messages" but no messages, just "....".
    That's not normal, if you've had a successful backup recently, or one currently in progress.
    An earlier post had a similar problem, because somehow he didn't have permission to read his own system log. From the Finder menubar, select Go, then +Go to folder,+ then type /var/log
    That should list, among other things, system.log Double-click it. If nothing shows in the center portion, post back and we'll fix it.
    But your main problem is an unreliable drive.

  • When I run root.sh and I get OCR errors

    Hi all,
    When I run root.sh and I get following errors. There are two nodes configured on Solaris 10 for Oracle Database 10g RAC Release 10.2.0.1. I am using openfiler 2.3. and ISCSI for data storage. I have create file system OCR & VOT as Raw device and formatted these devices in Solaris skipping ocr voting disk for the first 1MB to avoid overwriting the disk VTOC. Network configuration and disk permissions are set correctly. I have installed the RAC on the same machines a few months ago for training purpose and everything was working very well. Last week, my openfiler hard disk has died. I have cleared the CRS and database on the same machines and wanted to reinstall oracle RAC on Solaris but now have following problems when I run root.sh from first node I get following errors. Please help me to fix this problem.
    This is the error I get:
    Oracle Database 10g CRS Release 10.2.0.1.0 Production Copyright 1996, 2005 Oracle. All rights reserved.
    2009-12-26 17:03:38.158: [ OCRCONF][1]ocrconfig starts...
    2009-12-26 17:03:38.158: [ OCRCONF][1]Upgrading OCR data
    2009-12-26 17:03:38.173: [ OCRCONF][1]OCR already in current version.
    2009-12-26 17:03:38.192: [ OCRCONF][1]Failed to call clsssinit (21)
    2009-12-26 17:03:38.192: [ OCRCONF][1]Failed to make a backup copy of OCR
    2009-12-26 17:03:38.192: [ OCRCONF][1]Exiting [status=failed]...
    This is ifconfig –a output:
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    nfo0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 192.168.123.110 netmask ffffff00 broadcast 192.168.123.255
    ether 0:22:15:19:8:d7
    vfe0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    inet 192.168.0.110 netmask ffffff00 broadcast 192.168.0.255
    ether 0:1c:f0:c8:36:3a
    this is hosts output:
    127.0.0.1 localhost
    # public network nfo0
    192.168.123.110 solaris1
    192.168.123.112 solaris2
    # privarte interconnect - (vfe0)
    192.168.0.110 solaris1-priv
    192.168.0.112 solaris2-priv
    # Public vertual ip vip on nfo0
    192.168.123.120 solaris1-vip
    192.168.123.122 solaris2-vip
    # private sotartge network for Openfiler - eth0
    192.168.0.195 openfiler1
    This is the Format output:
    AVAILABLE DISK SELECTIONS:
    0. c0d0 <DEFAULT cyl 5098 alt 2 hd 255 sec 63>
    /pci@0,0/pci-ide@8/ide@0/cmdk@0,0
    1. c2t44d0 <DEFAULT cyl 156 alt 2 hd 64 sec 32>
    /iscsi/[email protected]%3Atsn.61af7f03092f0001,0
    2. c2t45d0 <DEFAULT cyl 60 alt 2 hd 64 sec 32>
    /iscsi/[email protected]%3Atsn.61af7f03092f0001,1
    3. c2t46d0 <DEFAULT cyl 157 alt 2 hd 64 sec 32>
    /iscsi/[email protected]%3Atsn.61af7f03092f0001,2
    4. c2t47d0 <DEFAULT cyl 1148 alt 2 hd 255 sec 63>
    /iscsi/[email protected]%3Atsn.61af7f03092f0001,3
    5. c2t48d0 <DEFAULT cyl 1148 alt 2 hd 255 sec 63>
    /iscsi/[email protected]%3Atsn.61af7f03092f0001,4
    6. c2t49d0 <DEFAULT cyl 1352 alt 2 hd 255 sec 63>
    /iscsi/[email protected]%3Atsn.61af7f03092f0001,5
    Specify disk (enter its number):
    Thank you

    I made a clean installation from scratch. I have prepared the servers step by step and used Metalink Note:367715.1. and I still get following errors. Do you have any recommendation or what to do?
    Oracle Database 10g CRS Release 10.2.0.1.0 Production Copyright 1996, 2005 Oracle. All rights reserved.
    2010-01-02 18:19:38.860: [ OCRCONF][1]ocrconfig starts...
    2010-01-02 18:19:38.861: [ OCRCONF][1]Upgrading OCR data
    2010-01-02 18:19:38.870: [  OCRRAW][1]propriogid:1: INVALID FORMAT
    2010-01-02 18:19:38.871: [  OCRRAW][1]ibctx:1:ERROR: INVALID FORMAT
    2010-01-02 18:19:38.871: [  OCRRAW][1]proprinit:problem reading the bootblock or superbloc 22
    2010-01-02 18:19:38.872: [ default][1]a_init:7!: Backend init unsuccessful : [22]
    2010-01-02 18:19:38.872: [ OCRCONF][1]Exporting OCR data to [OCRUPGRADEFILE]
    2010-01-02 18:19:38.872: [  OCRAPI][1]a_init:7!: Backend init unsuccessful : [33]
    2010-01-02 18:19:38.872: [ OCRCONF][1]There was no previous version of OCR. error:[PROC-33: Oracle Cluster Registry is not configured]
    2010-01-02 18:19:38.878: [  OCRRAW][1]propriogid:1: INVALID FORMAT
    2010-01-02 18:19:38.879: [  OCRRAW][1]ibctx:1:ERROR: INVALID FORMAT
    2010-01-02 18:19:38.879: [  OCRRAW][1]proprinit:problem reading the bootblock or superbloc 22
    2010-01-02 18:19:38.879: [ default][1]a_init:7!: Backend init unsuccessful : [22]
    2010-01-02 18:19:38.885: [  OCRRAW][1]propriogid:1: INVALID FORMAT
    2010-01-02 18:19:38.887: [  OCRRAW][1]ibctx:1:ERROR: INVALID FORMAT
    2010-01-02 18:19:38.887: [  OCRRAW][1]proprinit:problem reading the bootblock or superbloc 22
    2010-01-02 18:19:38.892: [  OCRRAW][1]propriogid:1: INVALID FORMAT
    2010-01-02 18:19:38.902: [  OCRRAW][1]propriowv: Vote information on disk 0 [dev/rdsk/c2t1d0s2] is adjusted from [0/0] to [2/2]
    2010-01-02 18:19:38.934: [  OCRRAW][1]propriniconfig:No 92 configuration
    2010-01-02 18:19:38.934: [  OCRAPI][1]a_init:6a: Backend init successful
    2010-01-02 18:19:39.123: [ OCRCONF][1]Initialized DATABASE keys in OCR
    2010-01-02 18:19:39.163: [ OCRCONF][1]csetskgfrblock0: clsfmt returned with error [4].
    2010-01-02 18:19:39.163: [ OCRCONF][1]Failure in setting block0 [-1]
    2010-01-02 18:19:39.163: [ OCRCONF][1]OCR block 0 is not set !
    2010-01-02 18:19:39.163: [ OCRCONF][1]Exiting [status=failed]...

  • Error:  "Could not complete your request because of a program error" (photoshop CS2 9.0.2 on MAC OSX

    Today I started my program (photoshop CS2 9.0.2) and opened a JPG file. When I went to print the file the program crashed and closed. When I restarted the program and went to open the file I got this error message, "Could not complete your request because of a program error".
    I have tried several different file types/sizes and all result in the same error message since the program crashed. It will not open any file I try to open. As I indicated above I am using Photoshop CS2 9.0.2 it is on a MAC with OSX 10.4.11.
    I called Adobe and the Rep directed me to Tech Note 331307 and told me to Re-create the Photoshop preferences files. Which I did and restarted the program, but when I tried to open a file (any file) I still get the same error message so it doesn't appear to be the preferences.
    Does anyone have any info as to what the problem may be and how to correct it.
    Thanks

    Thanks for the response. OK... This is the first day I have been able to get back to the problem.
    My system I am running Photoshop on is a Power Mac G4, AGP Graphics ATY Rage 128Pro chip set 16MB VRAM LCD 1280x1024 32-bit color, 500MHz, 1.75GB of memory, 1 MB L2 Cache, 100 MHz Bus Speed. I had installed the latest security update and repaired the permissions the day the problem started.
    Now to day I started the system and went in and created a Guest Account. I logged into the guest account and started Photoshop. Low and behold it worked just fine. So I logged out of guest and logged into my main user account And started Photoshop. Wouldn't you know it.... It works just fine. I can open any file I want with now problems.
    I got to thinking after I had done all of this that I wished I had tried to open a file in Photoshop today prior to creating the guest account to see if it still had the problem in my main user account.
    I did not change anything else on the system and all seems to work fine now. So at his point I am really not sure what the problem was.
    Again thanks for taking the time to respond to this issue.

Maybe you are looking for

  • Issue in po.

    Dear Guru's, I am having a problem in Po. 1.Actually first we have posted an entry in Migo and Miro in back date of march 31. Then i tried to transfer and consume the material on back date of 31 march.But there arised the problem..we have done every

  • HDMI audio issue

    I regularly use my l755 to stream video through an hdmi cable to an lcd tv. Recently, when i hook up the laptop to the tv, all other sounds come through the tv speakers except video sounds. This is the case with multiple tvs and video formats, (netfl

  • Pricing problem

    hi all, while i am creating sales order in exports when i enter the conditins like BASE PRICE,FRIEGHT, then it is working fine. it is showing the total net value properly. But, as soon as i enter INSURANCE condition then it is clearing the net amount

  • Export to Quicktime movie continued crashes. HELP

    I have sequence, it renders no problem. Whenever I go to export to Quicktime movie it crashes. I have gone and deleted all files associated with it and redone the sequence from scratch, and I keep getting the same results. Crash while exporting. I am

  • Keywords and LR 1.1

    I finally got updated to LR 1.1. Last week I was introduced to a "Missing a required dll file" message; jump on Google and with a couple of minutes found that I wasn't the only. Downloaded "Windows Installer Update" and was good to go. Enough about t