CHARACTER MODE DISPLAY ON THE SCREEN

So that we may better diagnose problems, please provide the following information.
- hp lh3
- 09:30
- WINDOWS 98 + 4.0
- windows NT 4.0
- We create oracle report As character mode but we note some issue when we run the report to screen the report display garbage but to printer it was ok
Please let me know ASAP is there any disconfirmation I did not do it
Khalil

what parameters are you using to run your report?
You can run it to a file with the txt extension on the web server machine and then call this file from forms with web.Show_document builtin.

Similar Messages

  • Firefox will not display on the screen even though with Process Explorer I see Firefox.exe active but no CPU usage

    I use Firefox v10.0.2 as default browser on Dell XPS8300 e/w Intel Core i5 & Windows 7 Ultimate and Compaq Presario CQ57 e/w Intel Core i3 & Windows 7 Home. More frequently on the (about 90% of attempts) than the Dell (50% of attempts) Firefox will not display to the screen when I click on icon. When it happens I cannot display other programs. I specifically say display because I believe Firefox has started. To circumvent the problem I installed Process Explorer on both machines and start this program first then click on Firefox icon. When problem occurs I can see Firefox.exe process in Process list; some CPU consumed but, then, no CPU activity. If I click on Firefox icon again another process opens in Process list but with same response - some CPU consumed and then no CPU activity. If I have 2 processes running and kill the 1st process, the 2nd will display and everything from then on is normal. If I do not open a 2nd process but kill the 1st process then click on Firefox icon Firefox is displayed and everything from then on is normal. This problem has occurred since original installation on both new machines. I've updated video drivers in both machines.

    Ok, let's see if we can fix this and get it working for you!
    First, if you start Firefox in [[safe mode|safe mode]] (restart your computer first, then when you open Firefox, hold down the shift key) does it start up more reliably? This is usually caused by a faulty add-on. If it does help, then restart Firefox, go into the Firefox button, then add-ons, and disable your extensions one by one until you find the trouble maker.
    Also, try updating to Firefox 11, it has several bug fixes that might make life easier here.
    Just as a few basic troubleshooting steps to make sure we have all the bases covered,
    Run all Windows Updates, install all needed service packs, etc.
    Update all your plugins (Flash, Java, etc.): [http://www.mozilla.org/plugincheck/ http://www.mozilla.org/plugincheck/].
    Download and Install MalwareBytes Anti-Malware, run a full Scan. [http://www.malwarebytes.org/ http://www.malwarebytes.org/]. This helps check that there are no viruses on your computer causing issues. you can uninstall this program after you clean off any infections.

  • Problem in the code while fetching records and displaying in the screen

    Hi,
       I have developed a screen which is having various fields, all the records are stored in a ztable,when i enter the records into various i/o fields and press submit pushbutton they are stored in the table now, what i wont is when i enter one record the (primary one) and press enter the corresponding records of that record should be shown in the i/o fields means they should be fetched back from the d/b table and displayed on the screen. For this i Have written a code please see it once.
    TABLES : ZFISALDT.
    DATA ITAB LIKE ZFISALDT OCCURS 0 WITH HEADER LINE.
    ZFISALDT-BILLINGDOCU = ITAB-BILLINGDOCU.
    ZFISALDT-SALESDOCU = ITAB-SALESDOCU.
    ZFISALDT-FORM402 = ITAB-FORM402.
    ZFISALDT-SALESTAXFORM = ITAB-SALESTAXFORM.
    ZFISALDT-FREIGHTDOCNO = ITAB-FREIGHTDOCNO.
    ZFISALDT-FPARTYNAME = ITAB-FPARTYNAME.
    *&      Module  STATUS_5555  OUTPUT
          text
    MODULE STATUS_5555 OUTPUT.
      SET PF-STATUS 'SALALL'.
      SET TITLEBAR 'SAL'.
    ENDMODULE.                 " STATUS_5555  OUTPUT
    *&      Module  USER_COMMAND_5555  INPUT
          text
    MODULE USER_COMMAND_5555 INPUT.
    CASE SY-UCOMM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    WHEN 'SUB'.
    IF ZFISALDT-BILLINGDOCU = ' '
    OR ZFISALDT-SALESDOCU = ' '.
    MESSAGE 'PLEASE FIRST SUBMIT THE BILLING DOCUMENT NO AND SALES DOCUMENT NO' TYPE 'E'.
    ENDIF.
    ZFISALDT-BILLINGDOCU = ZFISALDT-BILLINGDOCU.
    ZFISALDT-SALESDOCU = ZFISALDT-SALESDOCU.
    ZFISALDT-FORM402 = ZFISALDT-FORM402.
    ZFISALDT-SALESTAXFORM = ZFISALDT-SALESTAXFORM.
    *ZFISALDT-FREIGHTDOCNO = ZFISALDT-FREIGHTDOCNO.
    *ZFISALDT-FPARTYNAME = ZFISALDT-FPARTYNAME.
    *SUBMIT ITAB.
    WHEN ' '.   (THIS THE PART OF CODE WHICH IS NOT WORKING)
    SELECT * FROM ZFISALDT INTO corresponding fields of TABLE ITAB WHERE BILLINGDOCU = ZFISALDT-BILLINGDOCU.
    ITAB-BILLINGDOCU = ZFISALDT-BILLINGDOCU.
    ITAB-SALESDOCU = ZFISALDT-SALESDOCU.
    ITAB-FORM402 = ZFISALDT-FORM402.
    *ZFISALDT-BILLINGDOCU = ITAB-BILLINGDOCU.
    *ZFISALDT-BILLINGDOCU = ITAB-BILLINGDOCU.
    *ZFISALDT-SALESDOCU = ITAB-SALESDOCU.
    *ZFISALDT-FORM402 = ITAB-FORM402.
    *ZFISALDT-SALESTAXFORM = ITAB-SALESTAXFORM.
    append ITAB.                                                      (ALSO USED INSERT BUT NOT WORKING)
    WHEN 'ENTER'.
    IF ZFISALDT-BILLINGDOCU = ' '
    OR ZFISALDT-SALESDOCU = ' '.
    MESSAGE 'PLEASE FIRST SUBMIT THE BILLING DOCUMENT NO AND SALES DOCUMENT NO' TYPE 'E'.
    ENDIF.
    ZFISALDT-FREIGHTDOCNO = ZFISALDT-FREIGHTDOCNO.
    ZFISALDT-FPARTYNAME = ZFISALDT-FPARTYNAME.
    ZFISALDT-FREIGHTBILLNO = ZFISALDT-FREIGHTBILLNO.
    ZFISALDT-FREIGHTDATE = ZFISALDT-FREIGHTDATE.
    ZFISALDT-TRUCKNO = ZFISALDT-TRUCKNO.
    ZFISALDT-FREIGHTAMOUNT = ZFISALDT-FREIGHTAMOUNT.
    ZFISALDT-COMNAGBILL = ZFISALDT-COMNAGBILL.
    ZFISALDT-AGENTNAME = ZFISALDT-AGENTNAME.
    ZFISALDT-CAGDATE = ZFISALDT-CAGDATE.
    ZFISALDT-CMNAGAMOUNT = ZFISALDT-CMNAGAMOUNT.
    ZFISALDT-SHIPMENTNAME = ZFISALDT-SHIPMENTNAME.
    ZFISALDT-SHIPDOCUNO = ZFISALDT-SHIPDOCUNO.
    ZFISALDT-SHIPBILLNO = ZFISALDT-SHIPBILLNO.
    ZFISALDT-SHIPBILLDATE = ZFISALDT-SHIPBILLDATE.
    ZFISALDT-BLNOGOV = ZFISALDT-BLNOGOV.
    ZFISALDT-CHAAGENTNAME = ZFISALDT-CHAAGENTNAME.
    ZFISALDT-CHABILL = ZFISALDT-CHABILL.
    ZFISALDT-CHADATE = ZFISALDT-CHADATE.
    ZFISALDT-CHAAMOUNT = ZFISALDT-CHAAMOUNT.
    ZFISALDT-B_L_NO = ZFISALDT-B_L_NO.
    ZFISALDT-B_L_NODATE = ZFISALDT-B_L_NODATE.
    ZFISALDT-DEPBLICNO = ZFISALDT-DEPBLICNO.
    ZFISALDT-LICENCE_DATE = ZFISALDT-LICENCE_DATE.
    ZFISALDT-FOC_VALUE = ZFISALDT-FOC_VALUE.
    ZFISALDT-DEPB_VALUE = ZFISALDT-DEPB_VALUE.
    INSERT ZFISALDT.
    CLEAR ZFISALDT.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_5555  INPUT
    This is the code please check it once.
    Thanks in advance.

    Hi Sumeet.
    WHEN ' '.  " (THIS THE PART OF CODE WHICH IS NOT WORKING)
    SELECT * FROM ZFISALDT INTO corresponding fields of TABLE ITAB WHERE BILLINGDOCU = ZFISALDT-BILLINGDOCU.     
    " here in where condition u r checking with ZFISALDT-BILLINGDOCU, i guess there is no value in that, Once check in debugging mode and proceed further.
    Regards,
    Aby

  • Stupid question: my top 'dock' is not displayed on the screen. How do I get it back and what is it called?

    Stupid question: my top 'dock' is not displayed on the screen. How do I get it back and what is it called? It's just annoying that I have to reach high for it!

    Menu bar. Are you in Full Screen Mode?
    OS X Mavericks: Take apps full screen
    In all apps?

  • HT4528 While I was trying out the voice over option on my phone I somehow put it in a mode to where the screen stays black and it will only talk to me.  How do I get it back to normal?

    While I was trying out the voice over option on my phone I somehow put it in a mode to where the screen stays black and it will only talk to me.  How do I get it back to normal?

    "If VoiceOver is on and the screen is black, but you can still use the device by pressing volume up and volume down, you may have screen curtain on. Try triple-tapping using three fingers on the device display to turn off screen curtain. Or connect the device to iTunes"
    http://support.apple.com/kb/HT3577?viewlocale=en_US&locale=en_US

  • Electrical noise when a white background is displayed on the screen

    My iMac 27 mid-2010 got the LCD and graphics card replaced recently, due to the infamous dark spots on the display and some other video problems (vertical dotted lines on the screen).
    Those issues are fixed, but now I have a new problem that didn't exist before the repair:
    There is an annoying high-pitched electrical noise, but only when a white background is displayed on the screen. For example: When I open a blank page in Safari, the noise comes up. If I switch to another tab with a black background web page, the noise disappears.
    The noise is perfectly noticeable, and very annoying, when using the computer in a silent room. It is not related to display brightness, since it's always there no matter what brightness level I set.
    The Genius in the local Apple Store was able to hear it, so it's not a problem of perception. But he could neither find the cause nor solve the issue, so he returned the computer to me, with a vague 'its a normal noise, maybe caused by the CPU or the graphics card when they have to display white backgrounds'.
    Well, the thing is, this noise wasn't there before the LCD/graphics card replacement. I'm pretty sure about it, since I have been using this computer in a daily basis for the past two years and I know each and every noise that comes out of it.
    I would like to ask if any of you know of this problem. I've done a lot of searching in the internet, but couldn't find anything about this noise in particular.
    Thanks,
    Miguel

    Hi, thanks for your suggestion.
    Unfortunately, they have made up their mind about this issue. I even talked to the Store Manager, asking for a solution, but he pretty much ignored me saying he had full confidence in his team: if the genius says the noise is 'normal', then there's nothing more to discuss. Full stop.
    They just replaced a fan, which didn't solve anything, because the noise is clearly electrical in nature, NOT mechanical. I suspect it's related to capacitor resonance in the graphics card. The display and LED backlight panel seem to be OK, since the noise is not heard when I use the mac in target display mode via the mini-displayport input.
    I gave them this information in order to help with the diagnosis, but they didn't even bother to write it down.
    So far, the Apple Technical service seems very un-professional to me. I'm stuck with a defective computer for which I've paid 2.000 euros + Apple Care.
    Well, in this case, Apple doesn't Care at all. I can't even find an email address where I can submit a written formal complain.
    (Sorry for the rant)

  • I would like to share my ipad on my Windows machine. I got the Ipad to HDMI adaptor but nothing is displayed on the screen... Do I need any additional softwares?

    I would like to share my ipad on my Windows machine. I got the Ipad to HDMI adaptor but nothing is displayed on the screen... Do I need any additional softwares?
    Actually I would like to have the Ipad connected to pc and then run an application on the ipad (which is shown on my windows machine) and record it on the windows machine... Is this feasible?

    If you have an HDMI connection on your computer, it is most likely an output, it won't recieve a signal unless it's on a video capture card. Recording to the PC could be a difficlut task. HDMI is encrypted to keep you from copying but there are ways to do it. It would also depend on what content you intended on recording. If it's movies you have purchased or rented, it would be illegal.

  • My Contacts program opens but doesn't display on the screen (it appears to be off above the top right hand corner).

    My Contacts program appears to open, but doesn't display on the screen (it appears to be sitting just above the top right hand corner). any suggestions on how to get it back?

    Launch Contacts, then on the "Window" menu select "Zoom". That should maximise the window and give you access to the bottom-right corner where you can resize it, and the bar at the top which you can drag around.

  • Vertical blue line is displaying on the screen.

    In my iphone4 the vertical blue line is displaying on the screen.please provide the solution.
    the running ios is 6.1.3.

    If your iPod Touch, iPhone, or iPad is Broken
    Apple does not fix iDevices. Instead, they exchange yours for a refurbished or new replacement depending upon the age of your device and refurbished inventories. On rare occasions when there are no longer refurbished units for your older model, they may replace it with the next newer model.
    ATTN: Beginning July 2013 Apple Stores are now equipped to do screen repairs/replacements in-house on iPhone 5s. In some cases while you wait. According to Apple this is the beginning of equipping Apple Stores with the resources needed to do most repairs for iPhones, iPads, and iPod Touches that would not require major replacements. Later in the year the services may be extended as Apple Stores become equipped and staffed with the proper repair expertise. So, if you need a screen repaired or a broken screen replaced or have your stuck Home button fixed, call your local Apple Store to see if they are now doing these in-house.
    You may take your device to an Apple retailer for help or you may call Customer Service and arrange to send your device to Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes international calling numbers.
    iPod Service Support and Costs
    iPhone Service Support and Costs
    iPad Service Support and Costs
    There are third-party firms that do repairs on iDevices, and there are places where you can order parts to DIY if you feel up to the task:
    1. iResq or Google for others.
    2. Buy and replace screen yourself: iFixit

  • HT201401 cannot open the menu and cannot even turn it off, the white apple image is displayed on the screen. how can i get into the menu?

    cannot open the menu and cannot even turn it off, the white apple image is displayed on the screen. how can i get into the menu?

    Hold 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.

  • Apple iPAD 2.  Needs password to unlock iPAD; however there is a permanent keyboard displayed on the screen that does not respond to touch. iPAD switches on with button but does not turn off using it at moment.  Can you help please?

    Apple iPAD 2.  Needs password to unlock iPAD; however there is a permanent keyboard displayed on the screen that does not respond to touch. iPAD switches on with button but does not turn off using it at moment.  Can you help please?

    Try a reboot by holding both the power and home buttons until the apple logo appears, ignore the red slider if that appears.  See if that clears the glitch.

  • Is there a way to make iPhone speak what is displayed on the screen, with a simple click?

    is there a way to make iPhone speak what is displayed on the screen, with a simple click? Instead of going through the Accessibility and VoiceOver feature. This will be very useful if I am driving, or tired of reading from the screen, or watching other stuff ... thanks

    No.
    What is available via Accessibility settings is it.

  • Pavilion p6228p-b desktop keeps turning on and off but no display on the screen

    I've been having problems with my computer since i bought a new video card. Therefore, I decide to take it off the computer and work with the one that was originally installed. On the process of taking the video card off i decide to clean it also. No chemicals or even water, pressure air alone. Ever since, I haven't been able to turn the computer on properly. The computer turn on and like a minute later it turns off automatically, and it continues doing this until i disconnect it. The power button alone won't turn the computer off. In all this process there is no display on the screen at all. By the way, the screen works fine. Can anyone help me?

    on the hp site for your machine there are some updates for bios and utilities....this may help. all in all i think these machines are coming to their use by date and i myself am researching a new machine. my ol'banger may go at anytime...

  • I have the iPad with retina display and the screen is cracked, however it is not yet a year old, how much does it cost to replace it

    I have the iPad with retina display and the screen is cracked, however it is not yet a year old, how much does it cost to replace it?

    I don't know what country that you are in, but in the US the price for repair (i.e. replacement) is (from here) $299 for the iPad 3, and  here in the UK (from here) £256.44

  • I have an external display, but the screen ratio is messed up in games.

    I've got:
    - A new MacBook Pro 15" with Lion (a month old maybe), it's the 2.2 GHz one (with 8 GB RAM)
    - A Samsung Syncmaster BX2235 screen, working at a resolution of 1920x1080 pixels
    - A VGA connector to plug the Syncmaster in to the laptop.
    My problem:
    When I normally use my laptop with my external display in Lion it supports 1920x1080 without a problem (see photo 1), when I watch a movie in full screen too, but as soon as I start up a game (any game: WoW, TF2, Worms, etc) in full screen and I set the resolution to 1920x1080 it'll mess up the screen (see photo 2). I'm not sure if you see it at first glimpse but there are black bars at both the left and the right side of the screen, the left one is bigger than the right one.
    Anyway in WoW there is a function that you can run the game in Windowed but still Full Screen. When I do that I can access the top OSX bar (the one with the clock), and click on the display icon. It now shows there are 2 versions of 1920x1080 @ 60Hz (see photo 3). If I click the one that isn't checked, it'll fix the screen and I can view the game on this display exactly the way I want it.
    I had an older MacBook Pro (from 2009, 15", 2.8GHz Dual Core) running Snow Leopard, I played some of the same games on that and I NEVER had problems with this screen. I gave it to my sis so I tested it again and there are still no problems.
    Now naturally my question is: what is the problem and how can I fix it?
    Photo 1: http://imageshack.us/photo/my-images/835/fotoik.jpg/
    Photo 2: http://imageshack.us/photo/my-images/38/fotocopyt.jpg/
    Photo 3: http://imageshack.us/photo/my-images/851/fotocopy2.jpg/

    Restore

Maybe you are looking for

  • Embedded OC4J  - Web Service works... not OC4J!

    I have a very interesting issue here.. when I run my EJB 3.0 - Web service in Jdeveloper using the embedded OC4J, I am able to successfully test my services. But, When I deploy the Web service to an OC4J server, I get the folowing error when I try to

  • Activation doesn't work on newly bought Iphone5 - there is written that the server is temporarily not available??

    Hey people I just bought an iPhone5 in a store, and I can't activate it. There is written that the activation server is temporarily not available. What's happening ?

  • Select for a hashed table

    Hi All, This is a repost but this time Ill be specific. How do I select from a table into a hashed table faster without using "select distinct"? my primary concern is the speed of the select statement, and im afraid I cannot get rid of the hashed tab

  • Is it poosible to use .dll directly in java

    I had one .dll file ,i also knew the functions in that .dll .Now my doubt was is it poosible to use that .dll in my java application.If it is possible please help me on this issue.

  • Unable to access URL using HttpURLConnection

    Hi, I am using HttpURLCOnnection class to post a data to a url(which is a web service). The webservice accepts data as text/xml. Following is the code snippet i used: URL url = new URL("http://xxx.xxx.xx.xx:8080/SampleWebService.svc"); HttpURLConnect