Which trigger fires when i press cancel query button in oracle d2k forms.

hi all,
i have simply press then enter query but didn't enter anything in form and then press the cancel query. so i just want to know that what trigger will fire when i press the cancel query button in d2k form.
Regards,
kam.

Why not ask into Forms<br>
<br>
Nicolas.

Similar Messages

  • I have just updated my MBP to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    I have just updated my MBP 17 / retina display to Maverick OS. I am unable to shutdown or log off. When i press the shutdown button, a black screen appears which goes off on pressing any key. The shutdown or log off dialog does not appear. Your kind help is much appreciated.

    The button response has changed. 
    Short press : sleep
    Medium press (2-3 sec) : restart, shutdown, sleep dialog
    Long press : force shutdown. (Same as before)

  • Ive just done a restore on my iphone 3gs ios 5.0.1 and when it asks me to put a in my itunes password the email adress in isn't mine and when i press cancel it pops up again with a different one this happened about 5 times n then it went away anyone no y?

    Ive just done a restore on my iphone 3gs ios 5.0.1 and when it asks me to put a in my itunes password the email adress in isn't mine and when i press cancel it pops up again with a different email does anyone know why?
    some i get are
    sha**anhall@sha**anhall.com
    m**t_uniQue.apple.com
    s**[email protected]
    put astricks's there because i dont wanna get in toruble :/

    And I don't have any cracked apps

  • TS1367 Hallo,I have an IMAC 21.5. which does not start.When i press the power button i hear only beep with an interval of 4-5 seconds.Some times when i take off the RAMS and put them again then get a white screen and shows that i have to insert a bootable

    Hallo ,I have an IMAC 21.5. which does not start.When i press the power button i hear only beep with an interval of 4-5 seconds.Some times when i take off the RAMS and put them again then get a white screen and shows that i have to insert a bootable device.Then i bought OSX mountainlion on line and wrote it on a DVD and tried with a USB key board to start the DVD.But does not work.Please help me to get this imac work.
    Thankyou in advance  for your help.
    Terrence

    Hey terremo,
    Thanks for the question. From the information you provided, it sounds like the iMac is successfully turning on, however video is not displayed. These symptoms can usually be isolated further by the troubleshooting steps in this article:
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/HT1573
    Thanks,
    Matt M.

  • Program prints when i press CANCEL

    this is the print method:
    public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException
         Graphics2D  g2 = (Graphics2D) g;
         g2.setColor(Color.black);
         int fontHeight=g2.getFontMetrics().getHeight();
         int fontDesent=g2.getFontMetrics().getDescent();
         //leave room for page number
         double pageHeight = pageFormat.getImageableHeight()-fontHeight;
         double pageWidth = pageFormat.getImageableWidth();
         double tableWidth = (double) table.getColumnModel().getTotalColumnWidth();
         double scale = 1;
         if (tableWidth >= pageWidth)
              scale =  pageWidth/tableWidth;
         double headerHeightOnPage = table.getTableHeader().getHeight()*scale;
         double tableWidthOnPage = tableWidth*scale;
         double oneRowHeight = (table.getRowHeight() + table.getRowMargin())*scale;
         int numRowsOnAPage = (int)((pageHeight-headerHeightOnPage)/oneRowHeight);
         double pageHeightForTable = oneRowHeight*numRowsOnAPage;
         int totalNumPages = (int)Math.ceil(((double)table.getRowCount())/numRowsOnAPage);
         if(pageIndex>=totalNumPages)
              return NO_SUCH_PAGE;
         g2.translate(pageFormat.getImageableX(),pageFormat.getImageableY());
         g2.drawString("Page: "+(pageIndex+1),
                                               (int)pageWidth/2-35,
                                               (int)(pageHeight+fontHeight-fontDesent));//bottom center
         g2.translate(0f,headerHeightOnPage);
         g2.translate(0f,-pageIndex*pageHeightForTable);
         //If this piece of the table is smaller than the size available,
         //clip to the appropriate bounds.
         if (pageIndex + 1 == totalNumPages)
              int lastRowPrinted = numRowsOnAPage * pageIndex;
              int numRowsLeft = table.getRowCount() - lastRowPrinted;
              g2.setClip(0, (int)(pageHeightForTable * pageIndex),
                                       (int) Math.ceil(tableWidthOnPage),
                                       (int) Math.ceil(oneRowHeight * numRowsLeft));
         //else clip to the entire area available.
         else
              g2.setClip(0, (int)(pageHeightForTable*pageIndex),
                                       (int) Math.ceil(tableWidthOnPage),
                                       (int) Math.ceil(pageHeightForTable));
         g2.scale(scale,scale);
         table.paint(g2);
         g2.scale(1/scale,1/scale);
         g2.translate(0f,pageIndex*pageHeightForTable);
         g2.translate(0f, -headerHeightOnPage);
         g2.setClip(0, 0,(int) Math.ceil(tableWidthOnPage),(int)Math.ceil(headerHeightOnPage));
         g2.scale(scale,scale);
         table.getTableHeader().paint(g2);//paint header at top
         return Printable.PAGE_EXISTS;
    }this is the print button:
    JButton print = new JButton("Print Results");
    print.addActionListener(
         new ActionListener()
              public void actionPerformed(ActionEvent evt)
                   PrinterJob pj = PrinterJob.getPrinterJob();
                   pj.setPrintable(ScienceOlympiadProgram.this);
                   pj.printDialog();
                   try
                        pj.print();
                   catch (Exception PrintException)
    );everything works properly. when i run the program, the print button does its job, prints the data almost the way i want it (that will be fixed later) but the only problem is when i press Cancel on the dialog box, the program prints anyway. seems like an easy fix, but I'm mentally wiped. any suggestions are greatly appreciated!
    thank you,
    Hristo

    That's because you never test the value returned by printDialog().
    {color:#0000ff}http://java.sun.com/javase/6/docs/api/java/awt/print/PrinterJob.html#printDialog(){color}
    Returns:
        true if the user does not cancel the dialog; false otherwise.
    Also, an empty catch block is not advisable, in case of an Exception you won't know what went wrong.if (pj.printDialog ()) {
       try {
          pj.print ();
       } catch (PrinterException ex) {
           ex.printStackTrace ();
    }db

  • Does a Insert trigger fire when the insert is committed?

    I'm curious, does a Insert trigger fire when the insert is committed? If you could point to an article as well that would be great !
    Thanks,
    Dman780

    Its depends of FOR | AFTER
    FOR | AFTER
    AFTER specifies that the DML trigger is fired only when all operations specified in the triggering SQL statement have executed successfully. All referential cascade actions and constraint checks also must succeed before this trigger fires.
    AFTER is the default when FOR is the only keyword specified.
    AFTER triggers cannot be defined on views.
    For mor information : http://technet.microsoft.com/en-us/library/ms189799.aspx

  • When i open ibook, the iTunes store asks for my password. it goes away when i press cancel or when i put in my password. why is this happening?

    When I open IBook, the ITunes store asks for my password.  It goes away when I press cancel or enter my password.  It seems unnecessary to me.  Why is it doing this?  I already paid for the book. 

    If you are trying to update information for your apple id then go to appleid.apple.com and click on manage your apple ID... you'll probably have to enter your old email address/password

  • Ever since I updated to iOS 8 on iPhone 5, sometimes when I press the home button just once it will open the app switcher or even the assistive button. Anyone else have this problem? Is it an iOS 8 glitch? Please help - very annoying.

    I updated to iOS 8 on my iPhone 5 yesterday and now when I press the home button even once, it opens the app switcher (which is supposed to only open after pressing the home button twice quickly). Sometimes pressing the home button once even brings up the assistive button (which for me should take three button presses). This did not happen before I updated my software. Has anyone else had this issue? Know how to stop it? Very annoying and at this point feel like I should have waited before I did the update.

    Hello ..do you have a history on the phone? did you get it wet? was it dropped? have you been using an authentic ORIGINAL apple charging cable?
    this problem occurs when there is a short circuit  in the phone... you  most likely got  it wet at some point and maybe didnt even realize it? The moisture in the phone hasb probablly  oxidized one or several capacitors, integrated chips thereby short circuiting the phone. that is why he phone  is acting erratic because these short circuits inadvertently "activates" other circuits.. eventually the phone will not turn on anymore- the heat will stress the citcuit board and you will have discontinuity along your main power lines and the phone will cease to function..i see this alllll the time in our shop
    the fact you upgraded to ios6 will even work the phone harder because its a more powerful operating system taking full advantage of the A4 chip..

  • I have accidentally deleted my voice memo when i pressed the 'delete' button, thinking that is to change the name of my voice memo. is there a way to retrieve the memo back?

    I have accidentally deleted my voice memo when i pressed the 'delete' button, thinking that is to change the name of my voice memo. is there a way to retrieve the memo back?
    really do not understand why apple provides just one confusing delete button in its newer ios, instead of the previous versions which actually gives a confirmation button of whether to delete voice memo.

    What system did the Mac come with and what system are you running now? If it's 2 years old, i.e. bought in 2010 then it came with Leaport or Snow Leopard installed and would have had install disks.  Included in those disk would be a disk similar to one of these:
    That would have included iPhoto 8 (09) if bought before October 20, 2010 or iPhoto 9 (11) if bought after that date.  In either case you should have a disk like in the screenshot.  If not then you'll have to purchase an iLIfe 11 boxed disk from a 3rd party retailer like Amazon.com: iLife 11 and install your missing applications from it and then apply the latest updaters from the Apple Downloads web page/
    OT

  • Workin in Live View when I press the zoom button to focus I get a white screen with a 5x or a 10x wr

    Working in Live View  When I press the zoom button to focus I get a white screen with a 5x or a 10x written.  I don't get the zoom picture.  It just started doing this today and I've been using it for years.  Any help?  Thank you.  OH   I have a 450D  (rebel xsi)
    Solved!
    Go to Solution.

    Which camera model?
    Also, what are your exposure settings? Canon DSLRs do exposure simulation in live-view. So if the settings would result in an over-exposure you might be cropping in to view an all white area.
    Tim Campbell
    5D II, 5D III, 60Da

  • HT201401 When I press the + and - buttons, the volume icon appears, but the slider is empty. When I receive a call, I hear it ring, and I can hear the ringtones in the sound menu. However, the message/mail notifications don't make any noise, and I can't h

    When I press the + and - buttons, the volume icon appears, but the slider is empty. When I receive a call, I hear it ring, and I can hear the ringtones in the sound menu. However, the message/mail notifications don't make any noise, and I can't hear the sound menu.
    - During a phone call, if I put the conversation on speakers ==> it works and the volume bar reappears. I can control the volume with + and - buttons. But when the conversation is over, the bar disappears again.
    - With the headphones, everything is ok!
    - I also noticed (only a few times) that when I do a silent to ringer mode, the volume slider reappears and works correctly during 2 or 3 seconds, before disappearing again.
    I don't know what is problem,because the speakers work.

    Hello jam5064,
    We've an article which provides tips that can help get your iPhone working correctly.
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/TS5180
    Cheers,
    Allen

  • Why does my 4s keep returning tot the boot screen (apple logo) when I press the home button to see the lock screen?

    3 or 4 times since I first fired up my iPhone 4S yesterday, it has displayed the boot screen (apple logo) when I press the Home button to display the lock screen. After 10-20 seconds the phone displays the lock screen, but at that point it has to search for a cell signal (as if the phone just booted up), which takes another 20-30 seconds.
    Is anyone else having this issue?
    Another thing that has happened only once, but that seems related, is that when I clicked the lock button on the top of the phone, the phone displayed the spinning circle that usually displays when an iPhone or iPad is shutting down.
    Any ideas on what MIT be causing this?

    Disk repair hasn't worked as well.
    I just wanted to add a quick observation: after I tried the TM restore for the first time, Safe Boot in verbose mode seems to be stuck at this line "VBoxAdpDrv: version 3.1.0 r55467". This may point to the problem being a Virtual Box problem.
    I use Virtual Box extremely rarely - haven't used it in many months. After a re-install, I'm going to remove it and then try the upgrade. If it works, then we've probably found the culprit. If it is real, Apple should maybe add a line saying Virtual Box known to cause problems with this upgrade (or fix it ).

  • HT3964 My MacBook is not responding when I press the power button, does anyone know how to fix this? Thank you :)

    Hi, when I press the power button on my MacBook nothing happens and it is driving me crazy If anyone knows how I can fix this problem, I will appretiate it very much
    Thank you

    Try an SMC reset, which can often fix that:  http://support.apple.com/kb/HT3964 . Note as you scroll down, there are two sets of directions for MacBooks, depending on whether you can remove the battery or not.

  • When I try to download iTunes for Windows I get a download Dialog but when I press the Save button, nothing happens

    I am trying to install iTunes on my Windows PC (I've tried on a W7 W8 and W8.1) After clicking the Download Now button my browser goes to the Thank you page and I get an Opening iTunes64Setup.exe dialog with a Save File and a Cancel button. I press Save File but nothing else happens.

    No, Nothing happened, nothing was downloaded. When I say nothing happened I mean NOTHING HAPPENED, What can I say to make it more clear. How could I run a file that wasn't downloaded.....Nothing happened, rien, nada, b***** all. Why would I post a message saying "When I press the Save button nothing happens" if something had been downloaded.
    I've found out why. It is because I am using Firefox. Presumably a case of Apple treating us users of the superior Operating system (Windows) with distain.

  • Some times when I press the home button to read my finger the screen becomes black and it shows the Apple logo, this take a few seconds to get back the screen and this has been happening even 3 or 4 times in a row!   What should I do?

    Some times when I press the home button to read my finger the screen becomes black and it shows the Apple logo, this take a few seconds to get back the screen and this has been happening even 3 or 4 times in a row!
    What should I do?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

Maybe you are looking for

  • Importing data from Powerbook G4 to Macbook Pro

    I would like to import my address book data and ICal date from my old Powerbook G4 to my new Macbook Pro. Can anyone tell me where this data resides on my Powerbook G4 and how to move it over? Many thanks, Jim

  • Can't get past gray screen with file icon on it

    When i turn on my computer the power light goes out but the gray screen stays on. After two or three minutes an icon of a file with a question mark appears. I cannot get past this screen. I have removed my battery and tried again. I have also tried t

  • Trouble with access database online

    Hello everyone, I created an applet that simply inserts data into an access database and then prints it out on the screen the sql insert statement. I signed the applet so I can trust it so I wont get any security errors. When I upload it to the site

  • Custom Apex theme prohobits CSV Download link

    Hi, I'm using Apex 3.2.1.00.12; Database version = 11.1.0.7.0. A customized theme is used for the application. For a reports region I added CSV Download link, but it is not showing when i run the page. Please let me know if any settings to be changed

  • Getting HWND to Swing component with C++ as main

    I've ran into another issue with the Native interface , it occurs when mixing it with JNI. Anyone know why the class load fails on the Native Invocatuon side if I include a JNI call on the Java side?? Here's the sequence 1 .Main.cpp -> 2 . MainNative