Screen moving when using Execute query (F8)

Hi i have a screen oracle form when i used the key F8 ( execute query) then the screen moved down a half. Could you please help me how to fix it.

Try Using this in WHEN_NEW_FORM_INSTANCE
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW, WINDOW_STATE, MAXIMIZE);

Similar Messages

  • IPhoto 6 Unable to Zoom in Full Screen Mode when using projector

    When in full screen mode in iPhoto 6 I am able to zoom quite nicely but when I attach a projector I lose the slide for zooming. How do I zoom in full screen mode when using a projector?
    Mac Book   Mac OS X (10.4.9)  

    ParkerT
    Given that the zoom works normally, this is not an iPhoto issue. The problem lies in the interaction between your MacBook and the Projector. You might have more luck posting on the MacBook forum
    Regards
    TD

  • How to numberformat when using sql:query alogn with c:forEach JSTL tags

    Is there anyway to format the numeric values returned from the database when using <sql:query> alogn with <c:forEach> tags
    Here is my jsp code
    <sql:query..../>
    <c:forEach var="row" items="${queryResults.rows}">
    <tr>
    <td><c:out value="${row.COL1}" /></td>
    <td><c:out value="${row.COL2}" /></td>
    </tr>
    </c:forEach>
    Col1 values are numeric without any formats Eg: 1000, 10000, 1000000 etc.
    how can i format them to 1,000 , 10,1000 , 100,000 etc

    It is polite to mention what your answer was. These posts are not just here for you to ask questions, but to be used as a resource for other people to find answers. Saying "I solved it" with no details helps noone.
    I presume you discovered the JSTL <fmt:formatNumber> tag?

  • Getting error when we execute query in RSRT1

    Hi Gurus,
    I Loaded Transaction data in "0CCA_C11" cube and also loaded master data too.
    but when i execute query in RSRT1 i am getting error message
    1) Could not enter feature 0COSTCENTER__0PROFIT_CTR with SID 133 into table /BI0/SIOBJNM
    2)System error in program CL_RSR and form GET_CHANMID-02- (see long text)
    3)Error when generating dataProvider.
    For 0COSTCENTER i loaded master data but for '0PROFIT_CTR' i am unable to load Hierarchy data because still the request is yellow even showing 58 from 58 records.
    can any once can help me to soleve this issue.
    Thanks in advance.
    Raju.k
    *points to be assigned.

    Raju,
      Try replicating your hierarchy DS and reload data.
    hope it helps,
    balaji

  • Not being able to hear application audio on quicktime screen recording when using headset

    Can someone tell me how to still hear the computer audio (like the application sound) on while using quicktime screen recording when using headset?
    Someone help me please or tell me another application to do this with.

    hi paula
    your problem could be hardware/software. lets hope its software issue first and i'd like you to do these:
    if you have personal files on volume c, copy/backup them. shut down your computer, press one key recover button to perform clean windows installation. then check if the issue still persists.
    if you don,t want to use okr, you can use windows restore to restore your computer to previous restore points but if it's windows/virus issue, it may not help.

  • HOW TO KEEP SCREEN ON WHEN USING GPS OR SHOOTING THE VIDEO

    I was wondering if there any setting I could leave the screen on when using GPS or shooting the video, I'm currently set backlight timeout is 2 mins. After 2 mins device will automatically out and I have to reenter the password for continue my video, This is very inconvenience when using GPS or shooting the video.  
    Is there any one out there can assist? thanks in advance. 

    Did you get an answer?

  • Our ipad 1 goes to a black screen periodically when using the internet.

    Our iPad 1 goes to a black screen periodically when using the internet. We have to hit the home button and hope we end up back at the site we were previously at. We have updated the iPad, but it still happens. Any suggestions on a solution?

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...

  • Capturing computer screen action when using PhotoShop

    How can I capture instructional "footage" from the screen when using/demonstrating PhotoShop? I'd like action video (yes, seeing the cursor moving) - not just capturing a still of the screen.
    Thanks!
    Deb
    iMac Intel   Mac OS X (10.4.7)  

    Depends on your need for resolution and post production manipulation like zooms and highlights. You need patience to use SnapZ.
    The big dogs like Total Training use expensive scan convertors from outfits like LyonLamb.
    Us little doggies just shoot the screen with a good camera.
    bogiesan

  • ORA-03114 not connected with Oracle when  I execute Query

    Hi!
    I have a Problem with Oracle 9 but I don't know what wrong.
    When I execute this query I get an error everytime:
    select * from
    perleist pl
    left outer join leikat l on pl.lsnr = l.lsnr
    where pl.von < sysdate
    and
    pl.id not in
    select idperleist from rechaus
    where buch_schl <> 'STRN'
    It's not the complete select but the point is I use
    "left outer join leikat l on pl.lsnr = l.lsnr"
    ( not the (+) - Opoerator) and a "not in" -Clausel.
    Without the "not in" -Clausel the select runs fine.
    Sorry for my bad english g
    Thx for help :)
    Michael

    Hi!
    My Selection doesn't run :((
    The Selection runs with (+) -Join and not with "left outer join" .
    i need the "left outer join" couse the Application runs on Oracle
    and Interbase with same Selections. Other Selections with "left outer Join"
    are running under my Oracle 9.2 Database.
    Here something I tested:
    Selection runs with (+)- Join and count ():
    select count(pl.id) anz
    from perleist pl , leikat l
    where
    pl.lsnr = l.lsnr (+)
    --left outer join leikat l on  l.lsnr = pl.lsnr
    and (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Runs without count() and with "left outer join" :
    select --count(pl.id) anz
    from perleist pl
    left outer join leikat l on pl.lsnr = l.lsnr
    where (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Error ORA-03114 when usinf count () and
    "left outer join":
    select count(pl.id) anz
    from perleist pl
    left outer join leikat l on l.lsnr = pl.lsnr
    where
    (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Selection runs without "not in"
    Selection runs without count()
    Selection runs with (+) and not with
    "left outer join"
    Thx for help :)
    MD

  • When Press "Execute Query" LOV return Item not showing

    I created a LOV and defined return items.
    In the form I created display items, database property NO and assign variable name which is in LOV.
    When I enter a new record LOV shows the return item but when I am executing query only database record is showing and I want to show the all item even they are in database or not.
    Message was edited by:
    Kamran

    execute query populates only database items. To populate non database items after execute query, use post query trigger.

  • Why does the screen unlock when using voice dialer on iphone 5S?

    Here's the scenario I'm referring to:  my iphone is in my pocket with the screen locked and headphones plugged in. I toggle the mic switch and use voice control to place a phone call. On every other iphone I have owned, the screen stays locked. On the 5S, the screen unlocks when the call begins, making the end call button or other phone buttons able to be activated accidentally by my leg.
    Why did they change this feature on the 5S?  The iphone 5 stays locked in the same scenario. Just updated to 7.0.4 and it still hasn't been fixed. Is there a way to fix this issue?

    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • Selection screen validation when using PNP LDB

    Hi guys,
    I want to validate my selection screen parameters.Thats is if somebody wants to run the program without giving any input parameters to the selection screen(trying to run the report with a blank screen) I want to pop up an error/information message so that it will return the selection screen.I am using PNP Logical database for my selection screen.Please help.Thanks in advance.
    Thanks,
    Karthik.

    Welcome to SDN.
    If you are using PNP logical data base then validating the fields will be little tricky...
    You canc check all the other fields in START-OF-SELECTION and if they are empty return eroor. Remember all the field s on the scree... so I will suggest you to choose HR report Category accordingly.
    Also,when it comes to date field then you need to check for the start and end dates rather than blank fields as SAP defaulted them to system start and end date.
    Still, I will prefer to create a HE Report Category for the PNP database and use the screen while validating....that will be easy...

  • Photoshop CS6 - Screen flickering when using brushes with new MacAir 2013

    Would the Adobe team please respond to the issues reported by several users:
    http://forums.adobe.com/message/5449199
    A number of users experience severe screen flicker in Photoshop CS6 when using any of the larger brush type tools (cloning, eraser, brush, spot healing, burning, and dodging).  As many on this thread are experiencing, it is awfull and unusable! The flicker is screen wide black boxes, sometimes the whole screen goes black.  It only seems to happen when we put the cursor over the image to edit.
    Hardware:  MacBook Air 13", Haswell 1.7 GHz, 8GB, 512 SSD Software:
    Photoshop CS6 v13.1.2 20130105.r.224, OS X v10.8.4 (and perhaps others)
    Looks like a CS6 is not compatible with teh new MacAir. Please look into this and advise.
    Adobe Photoshop Version: 13.1.2 (13.1.2 20130105.r.224 2013/01/05:23:00:00) x64 Operating System: Mac OS 10.8.4 System architecture: Intel CPU Family:6, Model:69, Stepping:1 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading       
    Message was edited by: GSVAI

    An update:
    I went to the Apple store and brought myself a more recent MacBook Air (13", 4/256 FYI, they were out of the 8/512 model).    I can't reproduce *exactly* what you're showing, but got the flicker to happen by resizing the cursor.    Also, while painting, the screen seems to stop updating except for the cursor -- not only is Photoshop unable to draw, but other applications stop drawing as well.  And a few times it hasn't even updated the cursor (while all other apps seem frozen).  That's not normal.
    When I see the flickering, I frequently see the menubar and other UI elements draw at the wrong location on the LCD, then black, then redraw in the correct location -- repeat in different positions and lots of "static" until I stop changing the cursor.  That's more evidence of a hardware or and odd driver issue.  The odd thing is: it doesn't happen all the time.  It's possible that the one we have at the office also shows the problem, but we didn't test long enough.
    I'm trying to reach out to my hardware contacts at Apple - but it's a weekend before a holiday, so we may not make progress immediately.
    One thing that would be useful here: the model of MacBook Air that you have that shows (or doesn't show) the problem. 

  • License Key When Using Executable Windows Installer

    Post Author: Robert Flaherty
    CA Forum: Deployment
    When using the executable Windows Installer for installing the Crystal 2008 runtime files on client PC, do you need to enter your license key?  If you leave the field blank, what happens?

    It sounds like the key you are trying to use is for setting up a KMS, not for activating a windows server station.
    If you want to use a KMS, use the following key:
    http://technet.microsoft.com/en-us/library/jj612867.aspx
    Also be sure to create the service record for the KMS in DNS:
    http://technet.microsoft.com/en-us/library/ff793405.aspx

  • Screen Flicker when using Lightroom

    I'm helping a friend try to resolve a problem he has when using Lightroom.  He's using a Dell Inspiron 546 desktop with an AMD Athlon II X2 250 (3.0GHz, 2MB cache), 4 GB DDR2 SDRAM (800MHz), ATI Radeon HD 4350 (512mb), 7200RPM drive, Windows 7 Home Premium (64bit).
    When Lightroom runs, the screen flickers and the CPU pegs out at 100%.
    Are there any known ways to overcome this issue?

    At this point, I think I will have to go back to LR 3.x.  Lightroom 4 is so unstable that I cannot get it to work.  I constantly get not responding messages and screen flickering in the develop module.
    I have done everything I can find and nothing seems to work.  It is either an incompatibility with the AMD video drivers (best guess) or there is something seriously wrong with the code (second guess), however LR 3.2 does not have this issue.
    Lightroom version: 4.2 RC [844780]
    Operating system: Windows 7 Home Premium Edition
    Version: 6.1 [7601]
    Application architecture: x64
    System architecture: x64
    Physical processor count: 6
    Processor speed: 2.8 GHz
    Built-in memory: 16381.5 MB
    Real memory available to Lightroom: 16381.5 MB
    Real memory used by Lightroom: 603.5 MB (3.6%)
    Virtual memory used by Lightroom: 621.6 MB
    Memory cache size: 191.8 MB
    System DPI setting: 96 DPI
    Desktop composition enabled: Yes
    Displays: 1) 1920x1080, 2) 1280x1024

Maybe you are looking for

  • HELP!!! windows vista and itunes ipod cannot update

    hi can you guys plz help because my ipod won't update and i know its a compatability issue with vista -i turned off the uac -ran itunes in administrator mode and doing those things doesnt work plz help me finda solution thx in advance

  • Blue screen when running videos

    Hi I have a pavilion dv6 laptop product number XE056EA#ABV  I get blue screen and computer crashes when i run videos. Recently I received help from HP community and  downloaded the latest graphics adpater dirver. The problem was solved when using goo

  • Avoid popup dialog in smartforms

    hi all, i'm facing a problem, i want to avoid popup dialog in smartforms. i have set structure SSFCTRLOP-no_dialog = 'X'. but it still show popup dialog. did i miss something?

  • Portal Tutorial does not install on win2000

    while installing the 9ias portal tutorial, the ssoimp.cmd, secimp.cmd, pageimp.cmd, contimp.cmd programs do not run on win2000. What can be done, aside from standing up an NTserver... http://technet.oracle.com//docs/products/iportal/doc_index.htm par

  • Difference between AWR ,ADDM ,ASH

    Hello Can some one please explain me the difference between AWR ASH AND ADDM database reports Thankyou