LIST_LINE_NOT_FOUND Exception Raised (WRITE Sentence)

Hi guys!
I'm back with a new issue:
I have developped a program which i use to load data in several infotyes, and while the process is being executed,  I'm writing some info (Using WRITE Sentence), just to show a log, when the process is done.
When i run the program in dialog mode, everything's fine and the log shows OK, but when i run it in background mode, i got this dump, after printing about 400 - 500 lines in the Spool.
I'm pretty confident that this is not a developpment issue, (maybe something related with the spool, 'cause when i ran it with another user it crashes at line number 100 - 110, meaning it prints even less lines).
The thing is that i am not an expert in these issues and i was wondering if you guys could give me a hand on this.
Thanks a lot.
Regards.
Zapicas.

I've tried deleting the old generated spool requests but it's still not working at all;
I couldn't even find any info regarding this exception LIST_LINE_NOT_FOUND, I've tried to force the system to dump using this sentence in a Z report but i was unable too, Looks like it's not a very common problem....
I'll keep trying.
Thanks.

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

  • Exception raised in f4 help

    hi ,
       i am new to this forum.i have a problem with my coding.just a simple program for creating a search help for select options. i paste my code below while i executing it it raise exception. i dono what is the mistake.pls anyone help me.thank in advance.
    *& Report  ZIRIN_AUTO
    REPORT  ZIRIN_AUTO.
    tables:EKPO,MARC,EKKO.
    type-pools: slis.
    SELECTION-SCREEN BEGIN OF BLOCK 1 with frame.
    select-options:S_MATNR FOR EKPO-MATNR,
                   S_MATKL FOR EKPO-MATKL,
                   S_EBELN FOR EKPO-EBELN,
                   S_BURKRS for ekko-bukrs,
                   s_werks for  ekpo-werks,
                   s_lifnr for ekko-lifnr,
                   s_ekgrp for ekko-ekgrp,
                   s_ebelp for ekpo-ebelp,
                   s_bedat for ekko-bedat.
    SELECTION-SCREEN END OF BLOCK 1.
    types:begin of ty_ekpo,
          matnr type ekpo-matnr,
          matkl type ekpo-matkl,
          ebeln type ekpo-ebeln,
          werks type ekpo-werks,
          ebelp type ekpo-ebelp,
          end of ty_ekpo.
    types:begin of ty_ekko,
          bukrs type ekko-bukrs,
          lifnr type ekko-lifnr,
          ekgrp type ekko-ekgrp,
          bedat type ekko-bedat,
          statu TYPE ekko-statu,
          end of ty_ekko.
    types:begin of ty_marc,
          kautb type marc-kautb,
          end of ty_marc.
    types:begin of ty_final,
          matnr type ekpo-matnr,
          matkl type ekpo-matkl,
          ebeln type ekpo-ebeln,
          werks type ekpo-werks,
          ebelp type ekpo-ebelp,
          bukrs type ekko-bukrs,
          lifnr type ekko-lifnr,
          ekgrp type ekko-ekgrp,
          bedat type ekko-bedat,
          statu TYPE ekko-statu,
          kautb type marc-kautb,
          end of ty_final.
    DATA:it_ekpo  type  table of ty_ekpo,
         wa_ekpo  type  ty_ekpo,
         it_ekko  type  table of ty_ekko,
         wa_ekko  type  ty_ekko,
         it_marc  type  table of ty_marc,
         wa_marc  type  ty_marc,
         it_final type table of ty_final,
         wa_final type ty_final,
         it_fieldcat type slis_t_fieldcat_alv,
         wa_fieldcat type slis_fieldcat_alv,
         it_return type STANDARD TABLE OF DDSHRETVAL,
         wa_return type DDSHRETVAL.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-low.
      PERFORM func.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_matnr-high.
      PERFORM func.
      START-OF-SELECTION.
    form func.
        select ekpo~matnr ekpo~matkl ekpo~ebeln ekpo~werks ekpo~ebelp ekko~bukrs ekko~lifnr ekko~ekgrp ekko~bedat ekko~statu marc~kautb INTO table it_final
                                                                                    FROM  ekpo inner JOIN ekko on ekpo~ebeln =  ekko~ebeln
                                                                                    inner join marc on ekpo~matnr = marc~matnr
                                                                                    WHERE ekpo~matnr = s_matnr.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
       EXPORTING
    *    DDIC_STRUCTURE         = ' '
         RETFIELD               ='MATNR'
    *    PVALKEY                = ' '
    *    DYNPPROG               = ' '
    *    DYNPNR                 = ' '
    *    DYNPROFIELD            = ' '
    *    STEPL                  = 0
    *    WINDOW_TITLE           =
    *    VALUE                  = ' '
    *    VALUE_ORG              = 'C'
    *    MULTIPLE_CHOICE        = ' '
    *    DISPLAY                = ' '
    *    CALLBACK_PROGRAM       = ' '
    *    CALLBACK_FORM          = ' '
    *    MARK_TAB               =
    *  IMPORTING
    *    USER_RESET             =
       TABLES
         VALUE_TAB              = it_final
    *    FIELD_TAB              =
        RETURN_TAB              = it_return
    *    DYNPFLD_MAPPING        =
      EXCEPTIONS
        PARAMETER_ERROR        = 1
        NO_VALUES_FOUND        = 2
        OTHERS                 = 3
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop at it_final into wa_final.
          WRITE: / wa_final.
        ENDLOOP.
    ENDFORM.

    Hi,
    try using the below code:
    DATA:  lc_dynprofield type help_info-dynprofld  value
                                    'EKPO_MATNR',
                 lc_matnr     type dfies-fieldname     value
                                    'MATNR'.
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'
        exporting
          retfield           = lc_matnr
          dynpprog      = sy-repid
          dynpnr          = sy-dynnr
          dynprofield   = lc_dynprofield
          value_org     = 'S'
        tables
          value_tab     = li_final
        exceptions
          parameter_error = 1
          no_values_found = 2
          others          = 3.
    Hope this will help.
    Regards,
    Gaurav.

Maybe you are looking for

  • How do I export from FCP to a QuickTime file with multiple audio channels?

    I'm delivering a project where the first step is to generate an HD Cam SR master, which I will be doing at a post-production lab. They will then do a QC check for me. To generate this HD Cam SR master, they need to me to bring in my 98-minute long mo

  • Mac Mini not displaying on two screens - was fine, but now it is not!

    Hello, At my work we have a Mac Mini running Keynote with videos and various slides looping round, displaying on a LG 42" LCD screen in our display window. On the other side of the window - the bit the public does not see - is a monitor to start the

  • 10g to 11gR2 Upgrade using Data Pump Import

    Hi, I am intending to move a 10g database from one windows server to another. However there is also a requirement to upgrade this database to 11gR2. Therefore I was going to combine the 2 in one movement by - 1. take a full data pump export of the so

  • Why flesh player cannot work for the game that I have downloaded on computer?

    When I try to play the game that I have downlaoded on computer this morning,I cannot open it.And the game points out that the flesh player for this game is failed to auto update.My computer system is windows 8.

  • Flat Idoc and receiver determination

    Hi Folks, I have a scenario in which the Idoc is sent to XI in a flat format (Flat Idoc) using tunneling mechanism. The receiver determination configured is conditional based (Verifies the values in the specified fields of the Idoc). Now my question