Complains about a HANDLED exception !

People,
I am still getting the ORA -01858 error in reports 2.5 on a valid trig on a p/form item. We pass params from reps2.5 p/form facility here. Can anyone suggesy anything please? Get ready, here's my code:
function RSEQValidTrigger return boolean is
cursor chek_rec is
select 'X'
from SSBOSS.SSBKCDEP_LOG
where rseqno = :rseq
and locn_id = :area
and dseqno between :dseq1 and :dseq2;
dateformaterr EXCEPTION;
pragma EXCEPTION_INIT(dateformaterr,-1861);
dateformaterr2 EXCEPTION;
pragma EXCEPTION_INIT(dateformaterr2,-1858);
dateformaterr3 EXCEPTION;
pragma EXCEPTION_INIT(dateformaterr3,-1847);
v_dummy varchar2(1) := null;
begin
if :dseq1 is not null
and :dseq2 is not null then
if :rseq is not null then
open chek_rec;
fetch chek_rec into v_dummy;
if v_dummy = 'X' then
null;
close chek_rec;
return (TRUE);
else
srw.message(0004,'Receipt number'||' '||to_char(:rseq)
                              ||' '||'does not exist for location'
                              ||' '||:area
                              ||' '||'for range'
                              ||' '||to_char(:dseq1)
                              ||' '||'to'
                              ||' '||to_char(:dseq2)||'!');
close chek_rec;
return (false);
end if;
else
return (TRUE);
end if;
else
return (TRUE);
end if;
exception
when dateformaterr then
srw.message(0006,'Cancellation date must be of format ''DD-MON-YYYY'' ''!''');
return (false);
when dateformaterr2 then
srw.message(0006,'Cancellation date must be of format ''DD-MON-YYYY'' ''!''');
return (false);
when dateformaterr3 then
srw.message(0006,'Cancellation date must be of format ''DD-MON-YYYY'' ''!''');
return (false);
end;
Please be assured that I appreciate yourpreciious and valuable time.
Arios
nik.

After reading the source code for the tool it turns out that it just doesn't handle textual labels correctly in intel_syntax mode. The intel parser logic will interpret all previously defined symbols as a 'memory' operand and then refuse to accept the jmp instruction because it requires a 'displacement' operand.
The forward jumps happen to work because the type of an operand with undefined symbols are resolved in the backend which is shared for both intel and att modes. At that point all labels in the source code have been defined so it can correctly distinguish between a memory and displacement operand.
The good news is that I did find a way to get the get the assembler to jump backwards correctly by using local labels as described in 'Mac OS X Assembler Reference' and the latest GAS documentation. You can specify numeric labels and jump to them using #b and #f. The intel parser explicitly checks for this suffix and treats it as a displacement.
<pre>
.intel_syntax
fooA: jmp wtfA
0: wtfA: ret
barA: jmp 0b
</pre>
I'll be putting in a bug report for this one since it is not fixed in cctools-750~70.
Thanks.

Similar Messages

  • Apple Support ignores me completely, there is no way I can complain about lack of feed back and I even have paid for a protection plan!

    I have paid for an extended support through the Apple protection plan. Frankly I do not understand what I´ve paid for as there is no support and no plan, except ignorance and waiting time.
    I have had and still have serious problem with my Mac Book Pro, and spent loads of money on phone charges with mainly negative results. All I have "achieved" is wasted time. I just wonder if it is only me who feel totally helpless as the Support People are not really helping. I´ve spent approsmimately 200 USD in phonecharges on their support phone, so far. But that is nothing compared to the hours spent waiting for answer and listening no absolute nonsense. Finally I went to an Apple store who sent the machine in for repair, and one fault was the motherboard. However I could still not connect with my Time Capsule and Aperture seemed to have lost all my photos. This all happende after upgrading to Mountail Lion. Also the cable network isn´t working. I can easily see on the net that I am not the only one with problems. I´ve ended up with solving most of this myself, except the network connection. It is still not working.
    I am actually deeply dissapointed with Apple and I cannot find any way to even forward a complaint. Not that I believe it would help, but at least I´ve tried. I also think it would be fair to to get my money back for a product I´ve paid for which obviously isn´t working, namely the Apple Care Protection Plan.

    Hi, so you suggest I should be grateful for getting what I have paid for? Sorry but that's only getting what I paid for. Add to that, that this has been against the phone support I've used a lot of time and money for! I don't feel anything but hopelessness for the total lack of customer support. An expensive Mac Book Pro shouldn't fail after 2 years in the first place! But failure may of course happen with the best products, and Apple as well. The real fault however is Apple's arrogance and failure to fix it! Instead of getting help and guidance to a solution, I used hours and lost days of work, and was made to pay a lot for total unusable "assistance". I was even adviced to hold back on taking the Mac Book Pro to a store, as I was told the support person a senior, would figure it out. Well Apple definiately squezzed the lemon! Since the Time Capsule/Time Machine system didn't fuction I was also in a stale mate as I needed assurance that My files wasn't lost when delivering the machine for repair. I was adviced that could happen. Quite a deadlock wasn't it! As an expert on Quality Assurance I was also suffering lost revenue in my work for clients. I finally had to buy a Samsung Ultrabook as working machine and backup, a neccesity as Apple obviously cannot be trusted when needed. Bill Gates and Windows has one advantage over Apple, they know things can go wrong and hence have much better support. Apple support is a maze were only the strongest and most persistent get through. I am one as I didn't accept being treated like that. That's the only reason I finally got a repair. However the machine is still not functioning as mentioned. I have a case number, a phone number and mail address to a senior support person, whom I've been trying to contact for more than a week, He has still not responded to my mails or phone calls. I cannot even figure out how to contact Apple to complain about such ignorance. Note by the way that here in Norway I must pay to call support and more often than not there is more than half an hour waiting time. I might spend hundred of dollars in that "game" without even knowing that I will get the support I've paid for and only keep paying even more for wasting my time! This is simply not good enough, it is no less than arrogant and wrong! I frankly think Apple is doing a big mistake with such por treatmen of their customers.

  • Handling exception logging in a Java task scheduler program?

    I need to design a Task Scheduler Where
    1) User should be able to schedule multiple task at the same time.
    2) There should be proper error handling on failure of any task and should not affect the other running tasks.
    I found the related programme at http://www.roseindia.net/java/example/java/util/CertainAndRepeatTime.shtml
    My concern is about handling of point 2 in program provided at above link. Say I schedule a recurring mail send process in above program which will be run first time on 12 september 2011 at 2 am, and will be repeated after every 2 hours Say a one process fais at 8 am. I want to log it in log file with task name and time details. Now if I look at above programme i.e CertainAndRepeatTime.java. This program will exit once it schedules all the tasks. Where and how should handle the logging?
    Posted at http://stackoverflow.com/questions/7377204/handling-exception-logging-in-a-java-task-scheduler-program but folks suggesting Quartz scheduler . My Limitation is that i can't for quartz because my project allows me to use only standard java library. Is there any way we can handle logging in the same programme in case of exception.

    Well, first of all I wouldn't trust any code from roseindia. So you might want to look for more reliable advice.
    As for your logging, you can add it for example to the TimerTask itself. I don't recommend adding logging to that roseindia cr*p though.

  • How to handle exceptions in a Service

    Hi,
    I'm trying to get the new Service (background thread) stuff working and am close but I have a problem with handling exceptions that are thrown in my Task. Below is my code, does anyone know if I am doing something wrong, or is this just a flaw in the system at the moment:
    Here is my service:
    public class TestService extends Service<String>
        protected Task<String> createTask()
            return new Task<String>()
                protected String call() throws Exception
                   System.out.println("About to throw exception from inside task");
                   throw new Exception("Test failure");
    }Here is my code using this service:
    public void doTest()
        final TestService test = new TestService();
        test.stateProperty().addListener(new ChangeListener<Worker.State>()
            public void changed(ObservableValue<? extends Worker.State> source, Worker.State oldValue, Worker.State newValue)
                System.out.println("State changed from " + oldValue + " to " + newValue);
        test.start();
    }When the task throws its exception I was hoping to get a state change to FAILED but the callback is never triggered. I've tried listening for invalidation of the state and also tried listening to all the other properties on Service (running, progress, exception, etc). There doesn't seem to be any feedback after the exception has been thrown.
    Am I using this wrong, or is it a bug?
    Cheers for you help,
    zonski

    Hi,
    This was working in the build #32. I updated the JavaFX to build #36 and it stopped working.
    I checked in the latest build #37 as well which was released last week and this doesn't work here as well.
    If the task is succeeding the state is getting changed to SUCCEEDED but in case of an exception there is no change in the state
    Edited by: user12995677 on Aug 3, 2011 2:07 AM

  • How can I handle exception? - to give user more friendly notification

    Hi!
    User gets an error:
    'Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. current checksum =...'
    How can I handle this exception (when two users want to modify the same set of data at the same time)? I would like to hide the above error message and give user more friendly notification.
    Thanks in advance,
    Tom

    Thanks Vikas for your answer.
    These workarounds are really creative and I want to use one of them. BUT my problem is to 'catch' the exception/error when two users want to modify the same set of data at the same time.
    Those solutions which we can read about in this link you gave me describe handling exceptions in pl/sql processes. How can I catch the error I am talking about in pl/sql code?
    Code would be like this:
    DECLARE
    two_users EXCEPTION;
    BEGIN
    IF --catch the error
    THEN RAISE two_users;
    END IF;
    EXCEPTION WHEN two_users
    THEN :HIDDEN_ITEM := 'Error Message';
    END;
    What should I put in a place where there is '--catch the error' ??
    Thanks in advance,
    Tom

  • What is the best way to handle Exception in Java?

    We are designing an application that will be developed using JSP + EJB .
    To deal with the exception part, we have thought about following solutions
    (1)All methods in EJB will be declare with throws clause, with the respect to the potential exceptions that can be thrown by method.
    We will catch only those exceptions, for which we can take alternative steps or further action when they occurred. All other exceptions will be thrown to the caller.
    (2)All JSP pages will have try/catch that catches exceptions thrown by EJB or by JSP code.
    (3)A common JSP file will be designated to handle Exception by setting isErrorPage property true and all JSP files are pointing to that particular file for exception handling.
    (4)Whenever any exception occurred in application, it will bubbled up and end user will get a common JSP page designed to handle exception.
    I am looking for the suggestions to improve this mechanism.
    Regards,
    Chetan

    The problem with the standard expection handling in a web environment is that all the potentially useful status information goes to the user, who probably won't make head nor tail of it. It also goes to the logs which someone might, or might not get arround to reading.
    What I do is to have a standard method called to deal with unanticipated exceptions and e-mail me a status report. This contains not just the extended stack trace (chasing any level of wrapped exception) but also details of the transaction being processed, including the user if known.
    Set up an e-mail alias with a list of people to receive these reports. Often you can have the problem fixed, and send the user an apologetic e-mail before they even get a complaint in.
    Create JSP tags to do this with any other per-page housekeeping.

  • Handling exception in custom components

    Hello,
    Is there any info about handling exceptions in custom components? I would like to expose some exceptions to the Livecycle process.
    Thank you

    I have faced this situation for a while and found solution.
    1.Create your custom Exception say (custom exception)
    2. Set the properties like errorcode,errormessage, and throwable (if u want to bubble up the exceptions).
    3. Create a custom object to hold the results (i.e like a java bean)
    4. In your custom component methods just return the custom object and set exception as a property.
    for e.g.
    public class CustomReturn {
    private String result;
    private CustomException exception;
    //getters & setters
    public class CustomException {
    private int errorCode = -1;
    private String errorMessage;
    private Throwable error;
    //getters & setters
    public class CustomClass {
    public CustomReturn testValue() {
    CustomReturn returnValue = new CustomReturn();
    try {
    //perform operations
    catch(Exception ex) {
    CustomException cex = new CustomException ();
    cex .setErrorCode(1000);
    cex .setErrorMessage(ex.getMessage());
    cex .setErr(ex);
    returnValue .setException(cex);
    return returnValue;
    return returnValue;
    As you see , you can check for the exception in your return type using the bean property.
    This will overcome the limitation of not able to retrieve the error stack incase of errors with default livecycle components.
    Hope this helps.
    -Senthil

  • Handling exceptions for a event handler method.

    Hi Mates,
                    I have two custom container in which i am displaying an alv grid usind objects. when a double click event is performed in one of the alv the other alv should be displayed. I now have to handle exceptions of the class  CX_SY_DYN_CALL_ILLEGAL_TYPE. This is raised for an invalid parameter type when calling a method dynamically. I cannot use the keyword "RAISING" in the definition of the event handler method. i checked with the syntax of the method definition in abap dictionary, there were no addition "RAISING" for an event handler method. please provide me with the solution (a sample code would do.)

    Hello,
    May be you should read about the TRY ... CATCH block which is used for handling exceptions.
    Basic construct of your code should look like this:
    TRY.
    " Your Dynamic Method call
      CATCH CX_SY_DYN_CALL_ILLEGAL_TYPE.
    ENDTRY.
    If you want to get the error message text:
    DATA:
    lcx_excp TYPE REF TO CX_SY_DYN_CALL_ILLEGAL_TYPE,
    v_err_msg TYPE string.
    TRY.
    " Your Dynamic Method call
      CATCH CX_SY_DYN_CALL_ILLEGAL_TYPE INTO lcx_excp.
      v_err_msg = lcx_excp->get_text( ).
    ENDTRY.

  • Please brief Describes about error handling with example

    dear
    please describe about error handling and exception handling

    Darryl Burke wrote:
    This is the third thread you have started here, without bothering to reply to responses on the two earlier threads. Not the best way to continue to get help on a forum, that.Not to mention the fact that it's a horribly broad and vague question that is better answered by a combination of books, tutorials, and google searches.

  • Additional uncaught exception thrown while handling exception.

    Hello all! I am *trying* to surf around the internet and do a little online shopping. I keep getting this error though and it is really bugging me/ruining my night. I am about ready to through my computer at a wall.
    Here is the error:
    Additional uncaught exception thrown while handling exception.
    Here is the full error as it appears on my screen:
    Additional uncaught exception thrown while handling exception.
    Original
    RedisException: Redis server went away in Redis->setOption() (line 23 of /home/www/usa.hunter-boot.com/htdocs/drupalroot/sites/all/modules/contrib/redis /lib/Redis/Client/PhpRedis.php).
    Additional
    RedisException: Redis server went away in Redis->setOption() (line 23 of /home/www/usa.hunter-boot.com/htdocs/drupalroot/sites/all/modules/contrib/redis /lib/Redis/Client/PhpRedis.php).
    It is REALLY bugging me. I don't know that much about computers other then the basics. I only use mine to write papers and go on the internet so if someone is nice enough to try and help me fix this issue then please don't use fancy tech lingo (dumb it down for me). Thank you!

    That's a problem on the web server, not on your computer.

  • Where can I complain about a bad HP Service Center (India)?

    Hi,
    I have my hp laptop under warramty. I have a faulty dvdwriter. I took to my service center. They said they will inform me when the writer stocks come to their office. Its 15days now and everyday I call them and each day they reply that no stock has arrived. I am very frustrated now. Where can i complain about this service center (except in consumer court)?

    Thank you for visiting the HP Support Forums. This forum is to leave feedback and suggestions directly relating to these message boards. If you have feedback for HP about their products or services, please use the link below:
    http://welcome.hp.com/country/us/en/wwcontact_us.html
    This is a user-to-user community, and not a venue to receive direct help or feedback from HP. If you have any further questions or concerns, please feel free to send me a Private Message.
    Thanks!
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • Love the iPhone, who to complain about activation illegal practices?

    Dear Folks,
    I got my iPhone, failed the credit check and went with PrePaid. AT&T/iTunes presented me with a page telling my pin/phone # and where to go to fund it. It also had a FAQ saying that my iPhone is fully functional except for the phone part until I fund it.
    It's completely locked and Apple sent me an email reminder to fund my account. I am very angry with these business practices.
    All I'm looking for is an email to complain about this issue to. This is misleading and illegal.

    "Use the form below to send us your comments. We read all feedback carefully, but please note that we cannot respond to the comments you submit."
    I want to reach a human being who's going to either fix the issue or issue me an apology.

  • How is it possible that so many people complain about the echo sounds during their phone calls, and that there is no reaction or sollution for this problem ???

    so many people complain about echo sounds during their phone calls , and Apple has no solution for this PROBLEM.???????
    I have an IPHONE 5, but I think if no solution is given by Apple, this one is the last iphone i bougth.

    My experience with iOS7 crashing seems to be tied to bluetooth and when I activate the keyboard in relationship to having a text box on the screen.
    Apple rarely acknowledges an issue, once they fix it, they just quietly bundle it into an update and it goes away.
    Issues can also be very difficult to track down given the number of iPads out there (millions) and I doubt (excepting school or business set up ones) that two iPads are identical. Issues can be hard to track down when the common denominator is hard to determine.

  • To whom do I complain about the calendar on the iPad 2 with iOS 7? I can no longer read my appointments. Is there an adjustment I can make? Larger text size doesn't help.

    To whom do I complain about the OS 7 calendar on the iPad 2? I used to be able to read my appointments. The new small font is horrible. Text size doesn't seem to change it. Can I change it?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430http://support.apple.com/kb/ht1430
     Cheers, Tom

  • I will never complain about Creative products again...long story

    Two days ago I was a winy little #$%&* complaining about what my Zen Touch didn't do. It didn't support Audible, it didn't support Janus, has few accessories, blah, blah, blah. Then, it didn't do anything...it broke. So, in my infinite wisdom, I decided that I would get a replacement. I had always looked for something a little smaller, a little sleeker, and not an iPod (that's another story altogether). I didn't go out and just grab what looked good on the shelf...no, I had my priorities. Battery life is important, almost more so than features. I looked up several candidates
    <BLOCKQUOTE dir=ltr>
    Zen Touch - 40Gb - 24 hour battery
    Sony Network Walkman HD05 - 20Gb - 40 hour battery
    iRi'ver (insert model here) - 20Gb - 6 hour battery (or was it 2)
    Apple iPod Photo - 60Gb - 2 hour battery
    Zen XTra - 60Gb - I don't remember the battery life[/quote]
    At the time, I didn't even consider a 5Gb player because I was distraught. I had just lost something that, until that morning, was just another thing that I took everywhere with me. I didn't realize the gaping hole that its loss would create.
    After reading some reviews, I settled on the Sony player. It's small, it's slick, ZDNet gave it a sweet review with the only real bad points being the software (Sonic Stage) and the only available music service (Sony Connect) and it's got a 40 hour battery. I got this beautiful piece of audio hardware back to the office and quickly downloaded some tunes from EMusic (excellent bit rates...better than ANY download service period...if you like independent labels), loaded SonicStage and dumped the songs on the player. At first I thought, "SonicStage is a little slow...", but I had no idea what I was in for. I played the device and noticed...the sound...a little tinny. So what! I'll mess with the EQ later! I have a 40 hour removable battery! I also noted, that you can't build playlists on the fly. They had a "Bookmark" feature, but the only way to add songs to a bookmark was if the song was currently playing. I missed "Add to selected" but hell, it's got a 40 hour battery. I got the beast home, installed SonicStage on my PC and pointed it to my music library of some 5000 songs. SonicStage didn't like the fact that my library was on a network dri've (I have a Buffalo LinkStation that has nothing but media on it.) It began the import and after 2 hours of lots of blinking lights on my router asked me if I wanted to copy the files to my local hard disk. Of course not! That's what I bought the link station for! Creative doesn't have a problem with this! Why was Sony concerned? I told it "No!" After about another hour of activity, It showed me that it had begun importing the files. Four hours later it was done. Seven hours total to import my files? No problem, I have a 40 hour BATTERY! I then, sleepily as it was 2:30 in the morning, began to copy music to the device. Since I had also done this at work, the software said that I couldn't put any files from another computer onto the device. I had to delete the songs on the device and register my home computer. Fine, the songs are still in my library. I deleted the files, the hourglass appeared...and stayed... Thirty minutes later...the hourglass...what the #$%&! Now, I was told ahead of time that I would absolutely hate the software by a friend that owns a newer MiniDisc player. I have a faster computer than him so I thought it would be different: it wasn't. I have a great deal of tolerance for computers because I am a computer programmer and technician. I could not deal with this...this THING had to go.
    Today, I returned the Sony THING and gave myself till lunch to think about buying a new player. I came to the following conclusion. My Zen Touch will get fixed. I will use my Zen Touch until it completely dies. I like Creative's Zen Explorer...it's small, fast, and integrated into Windows. I like being able to queue up exactly what I want to play on the fly. Sony's didn't offer any of that. The Zen Touch may be a little fat, a little old (technology ages quickly), but the Touch really does nearly everything I wanted and does it well. Sony didn't even come close...it was just a pretty face, a slim design, and a bad personality. From what I can tell, Sony designed it's software for smaller players and smaller libraries. To me it doesn't seem to keep in mind, that I may not want to play everything by one artist or genre. It doesn't allow me to play an album, queue up another, and another...it allows that functionality on the song level through it's bookmarks. From what I hear the iPod is similar, but since I have no experience with the iPod, I cannot comment (If it is I'll add that to my reasons not to buy an iPod).
    At lunch, I returned to Fry's (my 4th time in 2 days) and went looking. I picked up a 5Gb iRi'ver, then a Rio Carbon. I stopped... I was doing it again. Creative players had been good to me... I didn't need another big player...just a small player I could use as a backup...the Touch would be fixed! I then picked up a Zen Micro and didn't turn back. Perhaps my comfort level with the Creative devices is just way to high. Perhaps the Sony software just shocked me. Whatever it was; unless I can see how a player works and how the software reacts, I think Creative will always get first consideration when choosing a new device.

    SSR wrote:
    iTunes only works on two platforms, so it's hardly some paragon of development.
    It's still one supported platform more than any other software, including Creative's Mediasource. This is a paragon of development compared to other MP3 players' software.
    SSR wrote:
    The only reason they got it working on Windows was to sell more iPods and tunes from their store.
    You say that like it's a bad thing. One wonders why other MP3 player manufacturers haven't done the same thing in return to boost their own sales. There is no MP3 player to compete with the iPod on the Mac because it seems no other manufacturer is able to write compatible software or firmware. Gi'ven that the iPod started on the Mac and really started the MP3 player appeal for the masses, I find it staggering that no other MP3 player software developer even considered writing support for the Macintosh into their own software development plans.
    SSR wrote:
    I find the UI for iTunes *awful* so it's not as simple as you make out. Also the UI is hardly Windows compliant.
    You may not like the UI for iTunes, but hundreds of thousands of other people love it! I (personally) prefer WMP0, but iTunes is the only other MP3 player management software that even comes close to that. Mediasource is laughable next to iTunes. The iTunes UI may not be windows compliant, but that's hardly a failing. When I referred to compliancy, I mainly meant the firmware (such as UMS support) did not conform to any known standards which meant that the software developers for the management software faced the burden of making it compatible with other (non-Windows) platforms.

Maybe you are looking for

  • I restored my data on my iphone 5s to 2013 in error - how do I retrieve all recent photos etc

    I restored my data on my iphone 5s to 2013 in error - how do I retrieve all recent photos etc

  • Linux on Intel vs AMD

    Gurus, Have a question regarding running 64 bit oracle on intel vs amd (RHEL). We are currently running on AMD and have been happy. We are seeing a hardware switch away from amd in my co. Does anyone know if the performance of the Xeon 64bit oracle i

  • Increasing Bitrate for Encode resulting in horrible results

    I've been migrating from Final Cut Studio to all the various Adobe alternatives and having an issue with Encore right now.  I've been successfully making DVDs and letting Encore automatically encode for me (As I often times end up making a BluRay as

  • Email Replies- 2 Addresses

    I am now moving my email service to Gmail and plan to connect it to my BB Tour using the Google Sync service.  My Gmail account handles 2 email addresses- one Gmail address for personal, and a second address for business that uses a private domain ho

  • Hp pavilion d4 : some keys are not working

     some keys  are not working  as i used it after 4 months gap. do it need hardware replacement or it is due to moisture?