LOG_ACCESS_ERROR exception  raised

Hello,
I am getting short dump said above at EBP release 700 .
To create shopping cart  when click on link shop on home page,  error message shown  "Exception condition "LOG_ACCESS_ERROR" raised".
Dump is generated showing  RAISE statement in the program "SAPLBBP_PDH_MSG" raised the exception condition "LOG_ACCESS_ERROR".
expecting some clue
regards,
Santosh

I am not sure this will help in any way, but type mismatch and overflow mean the following:
Overflow: Too many characters. In other words the process could have expected "+" but instead was "something, something, something, dark side"
Type mismatch: seen quite often in relational databases, and VBA (also java) where you are expecting a 'number' and instead receive a 'string'. so for example it expected 123456, and received "Account 123456" or something along those lines.

Similar Messages

  • RSAR_TRFC_DATA_RECEIVED Function module does not exist or EXCEPTION raised

    Dear All,
            We have 2 production systems one is a APO server & the other being BW server.
            While checking in SM58 of our APO production server we found that so many entries were in error saying "ERROR REQU_<number> PG# 12 In BW" with target system as BWCLNT<CLIENT NO>.
    We checked in both the production systems for any job failure w.r.t same time span but could find nothing.
    When we tried to solve this by using F6 option to re-execute the LUW it says "Functional Module doesnot exists or Exception Raised". After doing checks it was found out that the Functional Module (RSAR_TRFC_DATA_RECEIVED) was existing . So we need to know about how we can solve this EXCEPTION RAISED issue.
    Thanks & Regards,
    SAPAPO
    Edited by: SAP-APO on Dec 30, 2009 8:38 AM

    Hi,
    This migth be problem with not catching exact exception in the code.There might be data you are passing which not getting caught by the exception.
    If you are using any code add this FM in the code or else try to debug where exactly u r facing this problem.
    Regards,
    Shiva Kumar G.C

  • Uncaught exception raised in Open Directory client-side plugin

    I am having an issue whenever I try to access my Open Directory. It says Uncaught exception raised in Open Directory client-side plugin.
    In updateConfigurationViewFromDescription: NSInvalidArgumentException *** - [NSplaceholderMutableString initWithString:]: nil argument.
    I'm having a hard time finding a directory with the relative plugin. Could you point me the right way? Perhaps finding and deleting that little bugger would help?  I'm running Lion Server 10.7.3 with the 10.7.3 Server Admin tools. The goal here is to set up Deploy Studio for our organization, which I had working for a little while until this little guy started rearing his ugly head.
    Thanks much-

    Dear cdolan92,
    not really. It has been a while. I think I also deleted server.app and admin tools and reinstalled those.
    Perhaps I even did a backup of open directory and turned off the master to local and back to master.
    But I am not sure any more.
    Sorry.
    Best
    H.

  • Exception Raised error, not sure how to fix it.

    So I bought this game, Dragon age origins, and I try to launch the application. When I do, I get this error " Exception raised,
    Unhandled page fault on read access to 0x00000038 at address 0x0088d374.
    Do you wish to debug it ?"
    It has a Yes and a No. Clicking yes has the application shut down, and No justs leaves me with a black screen.
    I was wondering if there's a general way to get rid of this error.

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at the top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Then...
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • In which of the following sections of a PL/SQL block is a user-defined exception raised?

    Hi,
    A (somewhat elementary) question:
    In which of the following sections of a PL/SQL block is a user-defined exception raised?
    a) Exception section
    b) Declarative section
    c) Error handling section
    d) Executable section
    I'd be interested to hear people's answers.
    Thanks.

    As Etbin already noted, there are only 3 sections and user-defined exception can be raised in any of them. User-defined exception raised in declarative section example:
    declare
        year_zero exception;
        pragma exception_init(year_zero,-01841);
    begin
        declare
            v_dt date := to_date(1721420,'j');
        begin
            null;
        end;
      exception
        when year_zero
          then
            dbms_output.put_line('Year 0!');
    end;
    Year 0!
    PL/SQL procedure successfully completed.
    SQL>
    User-defined exception raised in executable section example:
    declare
        year_zero exception;
        pragma exception_init(year_zero,-01841);
        v_dt date;
    begin
        v_dt := to_date(1721420,'j');
      exception
        when year_zero
          then
            dbms_output.put_line('Year 0!');
    end;
    Year 0!
    PL/SQL procedure successfully completed.
    SQL>
    User-defined exception raised in exception handling section example:
    declare
        year_zero exception;
        pragma exception_init(year_zero,-01841);
        v_dt date;
    begin
        declare
            v_num number;
        begin
            v_num := 1 / 0;
          exception
            when others
              then
                v_dt := to_date(1721420,'j');
        end;
      exception
        when year_zero
          then
            dbms_output.put_line('Year 0!');
    end;
    Year 0!
    PL/SQL procedure successfully completed.
    SQL>
    SY.

  • Javax.servlet.ServletException: exception raised while creating Advisor

    I am adding some personalization to a jsp in portal 7.0 which worked fine in 4.0.
    I am importing the pz.tld and using the pz:div tag '<pz:div rule="admin">'. We
    have 'admin' set up as a segment in the EBCC just like in 4.0. When the jsp compiles,
    I get a 'javax.servlet.servletexception: exception raised while creating advisor'
    exception.
    I'm just really unfamiliar with the Advisor and am not sure where to start. Any
    help would be much appreciated.

    It appears this error might occur on JNDI lookup failure. If you do a
    diff between the web.xml and weblogic.xml files between 4.0 and 7.0 in
    your webapp's web-inf directory what differences do you find? Are the
    ejb-ref and ejb-reference entries for the Advisor and other EJB's present?
    Is the ejbadvisor.jar deployed in your application? Is it present in
    the application directory? Is there a ejb component entry in config.xml?
    Is there a module entry in application.xml?
    If you find that this is not the right direction to look for the problem
    please post the full stack trace and a pz:div code snippet.
    -- Jim
    chris wrote:
    I am adding some personalization to a jsp in portal 7.0 which worked fine in 4.0.
    I am importing the pz.tld and using the pz:div tag '<pz:div rule="admin">'. We
    have 'admin' set up as a segment in the EBCC just like in 4.0. When the jsp compiles,
    I get a 'javax.servlet.servletexception: exception raised while creating advisor'
    exception.
    I'm just really unfamiliar with the Advisor and am not sure where to start. Any
    help would be much appreciated.

  • Uncaught exception raised in Server Client-side plugin

    When I try to connect to my XServe from the Server Admin on my desktop computer. I get the following error:
    Uncaught exception raised in Server Client-side plugin
    Sorry but the feature you tried to access cannot be used. Exception is:
    In updateConfigurationViewFromDescription: NSInvalidArgumentException * -[NSCFNumber count]: unrecognized selector sent to instance 0x18819ee0 .
    There is a second error with similar wording.
    If I say ok to the warnings I can make changes but they do not save.
    I can access the Server Admin on the XServe
    Anyone know of a solution so that I can login and edit the settings for my XServe from a remote computer?

    I'm getting this too, server is XServe running 10.6.6, remote Server Admin is on a 10.5.8 PPC iMac. No errors with same remote against a PowerMac server running 10.5.8. No errors with 10.6.6 remote against either server.
    Unlike the OP, however, the changes I've tried "take." The pop-ups are annoying though.
    Another issue with the 10.5 Server Admin/10.6 Server, if it isn't a thread hijack, disk volumes do not show up in the File Sharing pane, Share Points appear OK.

  • Exception raised: java.lang.NoSuchFieldError

    I just installed service pack 3 and can no longer launch WebLogic Server
    form within VisualAge. Here's the error I'm getting...
    Exception raised: java.lang.NoSuchFieldError
    java.lang.NoSuchFieldError
    java.lang.Throwable()
    java.lang.Error()
    java.lang.LinkageError()
    java.lang.IncompatibleClassChangeError()
    java.lang.NoSuchFieldError()
    java.lang.Class java.lang.Class.forName0(java.lang.String, boolean,
    java.lang.ClassLoader)
    java.lang.Class java.lang.Class.forName(java.lang.String)
    java.lang.Class
    weblogic.rmi.internal.Utilities.classForName(java.lang.String,
    java.lang.Class)
    java.lang.Class
    weblogic.rmi.internal.Utilities.classForName(java.lang.String)
    void weblogic.rmi.internal.OIDManager.initializeServer()
    void weblogic.rmi.internal.OIDManager.initialize()
    void weblogic.kernel.Kernel.ensureInitialized()
    void weblogic.t3.srvr.T3Srvr.start()
    void weblogic.t3.srvr.T3Srvr.main(java.lang.String [], java.lang.String,
    java.lang.String)
    void weblogic.Server.startServerStatically(java.lang.String [],
    java.lang.String, java.lang.String)
    void weblogic.Server.main(java.lang.String [], java.lang.String,
    java.lang.String)
    void weblogic.Server.main(java.lang.String [])
    void weblogic.integration.visualage.server.Server.main(java.lang.String [])
    Any help would be appreciated!
    Thanks
    Bob Baske

    I suggest that you file a bug report with our support organization. Be
    sure to include a complete test case. They will also need information
    from you -- please review our external support procedures:
    http://www.beasys.com/support/index.html
    Thanks,
    Michael
    bbaske wrote:
    >
    I just installed service pack 3 and can no longer launch WebLogic Server
    form within VisualAge. Here's the error I'm getting...
    Exception raised: java.lang.NoSuchFieldError
    java.lang.NoSuchFieldError
    java.lang.Throwable()
    java.lang.Error()
    java.lang.LinkageError()
    java.lang.IncompatibleClassChangeError()
    java.lang.NoSuchFieldError()
    java.lang.Class java.lang.Class.forName0(java.lang.String, boolean,
    java.lang.ClassLoader)
    java.lang.Class java.lang.Class.forName(java.lang.String)
    java.lang.Class
    weblogic.rmi.internal.Utilities.classForName(java.lang.String,
    java.lang.Class)
    java.lang.Class
    weblogic.rmi.internal.Utilities.classForName(java.lang.String)
    void weblogic.rmi.internal.OIDManager.initializeServer()
    void weblogic.rmi.internal.OIDManager.initialize()
    void weblogic.kernel.Kernel.ensureInitialized()
    void weblogic.t3.srvr.T3Srvr.start()
    void weblogic.t3.srvr.T3Srvr.main(java.lang.String [], java.lang.String,
    java.lang.String)
    void weblogic.Server.startServerStatically(java.lang.String [],
    java.lang.String, java.lang.String)
    void weblogic.Server.main(java.lang.String [], java.lang.String,
    java.lang.String)
    void weblogic.Server.main(java.lang.String [])
    void weblogic.integration.visualage.server.Server.main(java.lang.String [])
    Any help would be appreciated!
    Thanks
    Bob Baske--
    Thanks,
    Michael
    -- BEA WebLogic is hiring!
    Check our website: http://www.bea.com/

  • Exception raised while extract the xpath by reading the xmlschema

    Hi All,
    I am getting the exception when I am trying extract the xpaths by reading the following xmlschema :
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="urn:http.service.announcements.portlet.liferay.com" xmlns:intf="urn:http.service.announcements.portlet.liferay.com" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://model.announcements.portlet.liferay.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://model.announcements.portlet.liferay.com">
        <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
        <xsd:complexType name="AnnouncementsFlagSoap">
            <xsd:sequence>
                <xsd:element name="createDate" nillable="true" type="dateTime"/>
                <xsd:element name="entryId" type="long"/>
                <xsd:element name="flagId" type="long"/>
                <xsd:element name="primaryKey" type="long"/>
                <xsd:element name="userId" type="long"/>
                <xsd:element name="value" type="int"/>
            </xsd:sequence>
        </xsd:complexType>
    </xsd:schema>
    Exception Raised ....Unable to resolve Schema corresponding to namespace 'http://schemas.xmlsoap.org/soap/encoding/'.
    org.exolab.castor.xml.schema.SchemaException: Unable to resolve Schema corresponding to namespace 'http://schemas.xmlsoap.org/soap/encoding/'.
         at org.exolab.castor.xml.schema.reader.ImportUnmarshaller.<init>(ImportUnmarshaller.java:125)
         at org.exolab.castor.xml.schema.reader.SchemaUnmarshaller.startElement(SchemaUnmarshaller.java:604)
         at org.exolab.castor.xml.schema.reader.Sax2ComponentReader.startElement(Sax2ComponentReader.java:255)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.exolab.castor.xml.schema.reader.SchemaReader.read(SchemaReader.java:301)
         at XmlSchemaReader.main(XmlSchemaReader.java:131)

    Issue identified. The datatypes of the stream order id and the one from the tables differ.
    The Long could not be casted to the bigint format of CQL.
    On changing the datatype of ORDER_ID in the CorpInterfaceEvent to int, the join is successful.

  • Exception raised while creating Advisor

    Hi,
    I've built a portal based on the exampleportal. I'm now trying to integrate personalization.
    I've loaded 2 documents in the default content repository using loaddocs, and
    created a content selector in the EBCC (I synchronized after that). When creating
    my content selection rules, I can do a preview, and see my two documents, so the
    rule is working. Now, when I use the <pz:contentSelector ...> tag, exactly as
    described in the documentation, I get a stack trace saying : " Exception raised
    while creating Advisor". The stack doesn't tell anything about the error...
    I also tried using the <cm:select...> tag in various fashions, but it always
    returns me an array of size 0, or null.
    I haven't changed the configuration for the DocumentManager... What could have
    gone wrong ?
    Any help would be greatly appreciated !
    Thanks
    Phil

    Hello Philippe,
    Did you restart the docPool after you ran the BulkLoader (with loaddocs)?
    ( http://e-docs.bea.com/wlp/docs70/dev/conmgmt.htm#1023455 )
    That's probably not the problem, becuase I'd guess that you may have
    already restarted your server a few times and you still have the problem,
    but I thought I'd start there.
    Also, did you make sure your portal contains all the components necessary
    for the features you are using? Are you using Portal 7.0? If you are using
    Portal 7.0 and you created your portal domain with the domain configuration
    wizard, then your portal does not contain all of the tag libraries that it
    needs for full personalization. Compare your portal to the sampleportal.
    There is a note about this in the Release Note for CR079828
    http://e-docs.bea.com/wlp/docs70/relnotes/relnotes.htm#305089
    Ture Hoefner
    BEA Systems, Inc.
    www.bea.com
    "Philippe Cote" <[email protected]> wrote in message
    news:3db85f30$[email protected]..
    >
    Hi,
    I've built a portal based on the exampleportal. I'm now trying tointegrate personalization.
    I've loaded 2 documents in the default content repository using loaddocs,and
    created a content selector in the EBCC (I synchronized after that). Whencreating
    my content selection rules, I can do a preview, and see my two documents,so the
    rule is working. Now, when I use the <pz:contentSelector ...> tag, exactlyas
    described in the documentation, I get a stack trace saying : " Exceptionraised
    while creating Advisor". The stack doesn't tell anything about theerror...
    >
    I also tried using the <cm:select...> tag in various fashions, but italways
    returns me an array of size 0, or null.
    I haven't changed the configuration for the DocumentManager... What couldhave
    gone wrong ?
    Any help would be greatly appreciated !
    Thanks
    Phil

  • Exception raised: java.lang.reflect.InvocationTargetException

    Hi Everybody,
    I run into the below problem while trying to set the security realm in the WebLogic
    sp8 examples. I tried to find information about it on this newsgroup but so I couldn't
    find any helpful solutions. Please, help.
    Tue Apr 17 11:59:20 GMT 2001:<I> <WebLogicServer> Server loading from weblogic.class.path.
    EJB redeployment enabled.
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException: java.lang.NoClassDefFoundError: weblogic/security/acl/DefaultGroupImpl
    at weblogic.utils.reuse.Pool.getInstance(Pool.java:57)
    at examples.security.rdbmsrealm.RDBMSRealm.getDelegate(RDBMSRealm.java:113)
    at examples.security.rdbmsrealm.RDBMSRealm.getPermission(RDBMSRealm.java:512)
    at weblogic.security.acl.CachingRealm.getPermission(CachingRealm.java:1713)
    at weblogic.security.acl.CachingRealm.setupAcls(CachingRealm.java, Compiled
    Code)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:706)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:564)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1759)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    java.lang.NoClassDefFoundError: weblogic/security/acl/DefaultGroupImpl
    at weblogic.utils.reuse.Pool.getInstance(Pool.java:57)
    at examples.security.rdbmsrealm.RDBMSRealm.getDelegate(RDBMSRealm.java:113)
    at examples.security.rdbmsrealm.RDBMSRealm.getPermission(RDBMSRealm.java:512)
    at weblogic.security.acl.CachingRealm.getPermission(CachingRealm.java:1713)
    at weblogic.security.acl.CachingRealm.setupAcls(CachingRealm.java, Compiled
    Code)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:706)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:564)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1759)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)

    "WebLogic" <[email protected]> wrote:
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException: java.lang.NoSuchMethodErrorSame with me.
    I also noted, that in a file "clodscape.LOG" there are messages "4.10.2000 15:12 Thread[JDBCStartupThread,6,main] Thank you for your interest in Cloudscape products. Your evaluation license has expired. Please contact Cloudscape sales at 1-888-59JAVA1 or [email protected]"
    Maybe this is the source of the problem, not NT SP6?
    - Juha

  • HAL Error :Exception raised: com.oberon.runtime.OverflowException: Type Mis

    Hi All,
    Can some please help me to get out of this HAL error .
    I was facing the below error from HAL routine .
    In bound routine failed at 3/12/2009. Exception raised: com.oberon.runtime.OverflowException: Type Mismatch: Overflow
    Thanks in advance
    Edited by: Hyp on Dec 30, 2009 3:44 PM

    I am not sure this will help in any way, but type mismatch and overflow mean the following:
    Overflow: Too many characters. In other words the process could have expected "+" but instead was "something, something, something, dark side"
    Type mismatch: seen quite often in relational databases, and VBA (also java) where you are expecting a 'number' and instead receive a 'string'. so for example it expected 123456, and received "Account 123456" or something along those lines.

  • Mail.app exception raised

    I am getting the following error. It seems to happen when rules are applied. I complete rebuild my Rules and it is still happening. I even have the Junk Mail disabled. I am connecting to a Leopard Server.
    Anyone see this before? It makes Mail unusable.
    Apr 29 13:39:28 xxxxx Mail[603]: * -[MimeBody stringValueForJunkEvaluation:]: unrecognized selector sent to instance 0x697f6b0
    Apr 29 13:39:28 xxxxx Mail[603]: exception raised in routeMessages: * -[MimeBody stringValueForJunkEvaluation:]: unrecognized selector sent to instance 0x697f6b0

    Hola Jaime.
    This problem in Mail is usually caused by some Launch Services cache or preferences corruption. The following article describes how to manually reset Launch Services -- the notes at the bottom of the article also provide information about the side effects of deleting each of the files involved:
    Resetting Launch Services
    If you prefer using a cache cleaning utility instead of following the manual procedure described in the previous article, this other article provides links to some utilities that can be used for troubleshooting and cache cleaning:
    Resolving Disk, Permission, and Cache Corruption
    It seems that the most appropriate utility for solving this particular problem is Tiger Cache Cleaner, but you may also want to consider other utilities, such as OnyX, or Cache Out X, which are free. Whatever utility you choose, be sure to read this first:
    Side effects of System cache cleaning
    As an example, this is how you should proceed with OnyX:
    1. Quit all applications.
    2. Launch OnyX and enter your administrator password.
    3. Click Maintenance. In the Reset section, check LaunchServices database.
    4. You may uncheck any other pre-checked options if you wish.
    5. Click the Execute button.
    6. Restart the computer.

  • Insight on exception raised errors

    hi. i have been getting a lot of "exception raised, do you wish to debug?" errors on a game i'm running since i upgraded to lion. the game i'm running is irrelevant because i'm not asking for help on how to solve this issue, i just want some more information about this type of error. i tried googling it, but all i seem to find is posts on various gaming support websites. apparently this issue happens a lot in games and has been appearing since before lion was released (mine just didn't start happening until lion). my question is, is there anything in particular that provokes this type of error? what kind of factors go into this error, and exactly what kind of error is it? i understand that it gives you a choice to debug, yes or no, and i've read that if you hit no, it theoretically should let you keep running the application at least long enough to save your data. in my case, no matter if i press yes or no, the application still crashes. others have been having this issue, and we still don't know what causes it. what i'm trying to do is simply gather as much information about this type of error as i can so i can better understand it. can anyone offer any insight?

    Hi Maria,
    two things:
    first of all compile the version with JDK1.1.8. You most likely have used a command not available in 1.1.8, but your MI runs on Creme and Creme is 1.1.8. Well, you can compile the WAR file with any JDK you like and as long as you have not used any commands from Creme 1.3 or later, that works fine.
    Second you should precompile the JSP files for PDA usage, cause PDA can not compile JSP files by its own.
    Hope that helps!
    Regards,
    Oliver

  • Spool disappears in SP01 after exception raised or exiting application, but remains during LEAVE TO SCREEN '0'.

    Hi Experts,
    I'm using FMs SSF_OPEN and SSF_CLOSE to display multiple smartforms. After SSF_CLOSE the spool appears in SP01, when I exit the application (exit application and debugger) or raise an exception after FM SSF_CLOSE, the spool disappears from SP01.
    But if after SSF_CLOSE, I put SET SCREEN '0'. LEAVE SCREEN - which supposedly should exit the program, the spool is not being deleted from SP01.
    My question is, is there any way to commit the spool in SP01 even if I close the application or raise an exception? Should the code "COMMIT WORK", work for this requirement?
    Thanks in advanced,
    Jack.

    Hi All,
    I've solved this using COMMIT WORK

Maybe you are looking for

  • Load balancing on the local host only (6.40 Java)

    Hello! When configuring load balancing for Web AS 6.20 (Java), the property "LocalLoadBalancing" was available in the ServiceManager of the dispatcher. See Note 772561. This property is not available in Web AS 6.40 (SP14). How can I now ensure that a

  • Multiple root in Orgchart

    Dear All, Is it possible when the user belongs to 2 orgunits or more to have a virtual orgunit root and under this the user will have his root orgunits? Now when I implemented the dynamic rooting for user. it shows the root object as the first orguni

  • Upgrade my speed processor from 2.16 to 2.8 GHz

    Can I do this ?

  • Show row/column with empty dimension values.

    I have 2 columns where 1 column is dimension and 1 column is measure.  I need to hide the row when the dimension is empty. What I did is at the block I UN-TICK  "Show row/column with empty dimension values".  But it didnt works. Thanks.

  • I lost all contacts while upgrading to IOS6

    I have iPhone 4S. Got a message about upgrading it to IOS6.... When finish I r.ealized I lost 800 contacts I had on it. I am sure I am not alone in this truble . We have to sue those guys who did such an amatural job. It's unbelievable how they focus