Applet window for 11.5.10.2 in windows 7

iam using oracle application 11.5.10.2.when i try to open the oracle application page front end navigation from my client machine windows 7 my application page jinit does not load and unable to get the application page.
when the applet loads during the navigation like system admin-->concurrent-requests-run the browser displays the alert like "internet explorer has stopped working" and browser gets hanged.
please provide a solution to open the application page and get the applet window
my internet explorer version is IE8
Aram

Please see these docs.
Recommended Browsers for Oracle E-Business Suite 11i [ID 285218.1]
Is Windows 7 Certified With Oracle E-Business Suite? [ID 1103276.1]
IE8 AND R12 SECURITY SETTING REQUIREMENT ON CROSS SITE SCRIPTING (XSS) [ID 1069497.1]
Thanks,
Hussein

Similar Messages

  • Windows for Mac, best option?

    Need to use Windows for work.  Can I purchase Windows for Mac. Will it cause problems , cost, and best option ... Thanks

    "Best" is such a subjective term.  I don't really like it.
    What do you do at work?  If you only surf web sites, and edit documents, then running Windows in a virtual hardware environment might be a good choice for you.  It will allow you to very easily perform backups, and it allows you to continue to run MacOS spps while you are running Windows.  THis is what I did at my last job and it was great for me.  I had Windows 7 Pro running is a virtual machine, and MacOS 10.8 running on the host hardware.  I could do snything that my job required on that virtual Windows PC and still have enough resources to run apps on my Mac at the sme time.
    Now if you do heavy graphic work (why wouldn't you use a Mac and MacOS apps for that?) or if you are doing heavy compiling, then you may want the full dedicated hardware resources of using Boot Camp and dual booting your machine between MacOS and Windows.
    The "best" answer depends upon what you have to do in Windows for work...

  • Blank help window for itunes

    I updated itunes to 7.01 on imac. Now the help window for itunes is blank. Help windows in other applications are fine

    I, too, just installed iTunes update to 7.0.1 and there is no iTunes help. It can be selected from the drop-down menu at the top of the Help Viewer window, and the iTunes categories are there, but selecting a category gives me an error message with suggestions on how to enter search words!
    When the most simple functions such as this fail to work I am just beyond words.

  • Applet running problem in ie 6.0 under Windows XP

    Applet running problem in ie 6.0 under Windows XP
    I have a PC running Iternet Explorer 6.0 running under Windows XP. I have developed an applet using JDK 1.3 which is running fine with applet viewer , but it is not running in ie. I have installed Netscape navigator and Opera 5. the applet is running fine in both of these browsers but somehow it is not running in IE.
    Later on I upgraded my JDK to 1.4. It also displays use Java2 (V1.4.1) for <applet> (requires restart) tck marked in Advance section under Tools-Options menu of IE.
    I have also tried and set various options in my Control Panel�s Java Plug-in but all in vain. I have searched the sites for this solution but no one answers specifically.
    I know it�s a small problem due to discarded JVM in IE under Windows XP but give me solution for that.
    Thanks in Advance
    [email protected]

    Dear I have the same problem .
    Applet running problem in 6.0 . Enen I have installed the latest Jre 1.5.
    What should I do. I am fedup with this problem.

  • Applet to Applet communication in one browser process with 2 windows

    Applet to Applet communication in Same IE process bu in different IE windows
    I have two IE windows
    (1) base window
    (2) child window (created through wondow.open() and hence share the same IE process and same JVM)
    Now I have two applets in one in base window and other is in child window and I want to do applet to applet communication. Since both applets are in different windows so AppletContext will not work and I tried to use custom AppletRegistory class to keep each Applet in static Hashtable. Now here comes the problem, Each applet gets different copy of this static Hashtable. i have tried hard to find the reason why a static varible has multiple copies running in the same JVM. Then my friend told me about something called class loader which is according to him is different for each window. I have tried this with two different iframes but in same window and it works fine and the reason being is that they share the same JVM. But why this fails for different windows althougt they also have same JVM?
    I am using JRE v5 update 7 and IE6 on WIN XP SP2.
    Thanks in advance..

    Try this example :
    Files used :
    1). AppletCom.html
    2). First.java
    3). Second.java
    1).AppletCom.html
    <HTML>
    <BODY bgcolor="#FFFFFF" link="#0000A0" vlink="#000080">
    <LI><H2><I>Inter applet communication Applet</I></H2>
    <applet code=First.class name="theFirst" width=250 height=100></applet>
    <applet code=Second.class width=350 height=100></applet>
    <BR>
    Source First.java Second.java
    <P>
    <HR>
    <i>Last updated 8/5/97 Martin Eggenberger</i>
    <HR>
    </BODY>
    </HTML>
    2). First.java
    import java.awt.*;
    <applet code="First" width="200" height="200">
    </applet>
    public class First extends java.applet.Applet {
    //Variables for UI
    Label lblOutput;
    public void init() {
    //Create the UI
    add(new Label("The First applet."));
    lblOutput = new Label("Click on a button in the Second applet.");
    add(lblOutput);
    public Color getcc()
    return Color.pink;
    public String getnm(int a,int b)
    int cnt=a+b;
    String str;
    str="Sum is :_________"+cnt;
    return str;
    public boolean handleEvent(Event event) {
    if ("One".equals(event.arg)) {
    lblOutput.setText("You clicked: One");
    return true;
    } else if ("Two".equals(event.arg)) {
    lblOutput.setText("You clicked: Two");
    return true;
    } else if ("Three".equals(event.arg)) {
    lblOutput.setText("You clicked: Three");
    return true;
    return super.handleEvent(event); }
    3). Second.java
    import java.awt.*;
    import java.applet.*;
    <applet code="Second.java" width="200" height="200">
    </applet>
    public class Second extends java.applet.Applet {
    //Declare the UI variables
    Button btnOne;
    Button btnTwo;
    Button btnThree;
         Applet f;
    Label lb;
    public void init() {
    //Build the UI
    btnOne = new Button("One");
    add(btnOne);
    btnTwo = new Button("Two");
    add(btnTwo);
    btnThree = new Button("Three");
    add(btnThree);
    lb=new Label("SUNO RE KAHANI TERI MERI SHHHHHHH");
    add(lb);
    setLayout(new FlowLayout());
    // lb.setSize(100,100);
    public boolean handleEvent(Event event) {
    if (event.id == Event.ACTION_EVENT && event.target == btnOne) {
         f = getAppletContext().getApplet(new String("theFirst"));
    First applet1=(First)f;
    // int cnt=applet1.givenum(22,25);
    // String str="Sum is:"+cnt+" Fine";
    String str=applet1.getnm(22,25);
    lb.setText(str);
    Color cl=applet1.getcc();
    setBackground(cl);
    return f.handleEvent(event);
    } else if (event.id == Event.ACTION_EVENT && event.target == btnTwo) {
    f = getAppletContext().getApplet(new String("theFirst"));
    return f.handleEvent(event);
    } else if (event.id == Event.ACTION_EVENT && event.target == btnThree) {
    f = getAppletContext().getApplet(new String("theFirst"));
    return f.handleEvent(event);
    return super.handleEvent(event);
    I had this example, so i am sharing it as it is.. instead of giving you any link for tutorial... hope this helps.
    Regards,
    Hiten

  • HT1349 mini graphics to vga adapter for macbook how to install in windows 7.

    mini graphics to vga adapter for macbook how to install in windows 7.
    i have macbook with windows 7 operating system.

    Can you be more specific?
    What are you trying to do?

  • MediaSource sub-windows for Album/Artist/Genre have gone

    My wife's Zen Micro (2--02) doesn't seem able to have its music organised by Creative MediaSource Explorer.
    I'm sure that MediaSource used to display not only the tracks but had little sub-windows where you could select Album, Artist or Genre and get all the tracks associated with your choice.
    However, all that I get now is a list of filenames. OK, I can click on these to get the next folder level which seems to be the album name, then further click to get to the track(s).
    What I can't do is get the thing to list all tracks or all albums or all genres. It's just hopeless.
    MediaSource, as I say, used to show little sub-windows when I had my Zen Xtra but now my wife's Zen Micro's been added and everything upgraded, these sub-windows for Album and Artist do not appear as they do in the illustration with the blurb...not even with my Zen Xtra.
    Further, the Zen Micro doesn't seem to have a list of selected tracks like my Xtra does. The help files seem to refer to one but I'm blowed if I can find it, either via my PC or via the player's own display.
    How do you see what's coming up next to play?
    Everything's upgraded to the latest using Auto update and I re-loaded the f/w.
    Can anyone tell me what I'm doing wrong, please?

    In the bar above the list of tracks there should be a Find box. Next to this is a View button, next to that is a small downward triangle which, when clicked, allows you to select Genre, Album, Artist. Play around with those 2 buttons and you should be able to get back the view you want.
    To view the selected tracks click on View in the menu bar and then choose Now Playing Window.
    PB
    Message Edited by PeeBee on 07-8-2005 04:47 AM

  • Some artists don't qappear in browser window for a playlist

    I've been struggling to find a way to browse a large library of classical music. The browser window is a great idea but I can't find a way to add a browser window pane for the Composer tag. So I selected all the tracks with composer=beethoven and made a playlist.
    I notice that some artists for tracks in the playlist don't appear in the Artist browser pane. (For example, Szell/ Cleveland Orchestra.) I don't know how many Artist names are missing from the Browser's Artist but there are at least 2 missing.
    I can see the Artist name "Szell..." in the track listings for the playlist. If I'm browsing the library, I see "Szell ..." in the Browser window Artist pane. I just don't see "Szell ..." in the Artist Pane of the browser window for the Beethoven Playlist.
    I tried deleting the Beethoven playlist and re-creating it. I get the same problem again.
    I'm using iTunes for Windows v 4.7.1.30. I haven't upgraded to the latest iTunes for Windows because I see reports of problems after the upgrade.
    Bill

    My quess on weather or not an artist's name appears
    depends on the nature and quality of the CD. On my CDs
    of Beethoven symphonies or piano concertos Beethoven's name
    will appear.
    As I said in my first message, the artist name appears in the track listing. I have edited the tags to show the correct composer ("Beethoven" in this case) and to show the soloist then conductor and then the orchestra in the artist tag. ("Szell/ Cleveland orchestra" in this case.)
    I see the "Szell..." in the artist field for the tracks for the symphonies conducted by Szee in my library. When I select Library in the source list, I see "Szell..." in the Artist Browser list. However, when I select the Beethoven playlist, I don't see "Szell ..." in the Artist Browser list. I see the tracks listed and the Artist field says "Szell ..." as expected.
    This isn't a problem with the information in the CDDB database iTunes uses to get the tag values it assigns to tracks from a CD. I've edited the tags to fit my conventions.
    Bill Hunt

  • Getting error message that states itunesexe has been set to run in compatibilty mode for an older versions of windows for best results turn off compatibility mode for itunes before you open it .How do i turn off compatibility mode?

    recieved error message that states" itunes exe has been set to run in compatibility mode for an older versions of windows for best results turn off compatibility mode for itunes before you open it. How do i access compatibility mode and turn it off ? Believe i have Windows 7.

    Try the following document, only be sure that none of the boxes in the compatibility tab are checked (not just the compatibility mode box itself): 
    iTunes for Windows: How to turn off Compatibility Mode

  • Open a link in new window for .doc, .xls, .pdf

    How to link a PDF, word, & Excel file in fla by clicking
    a button?
    That link will open seperate window for any of these document
    with the swf file still open in the background.

    vveena123 wrote:
    Hi everyone,
    I immediately need help,plz help me.this is not the way to get help around here
    try stating the problem professionally, without the assumption that your problem is important to others
    I have a jsp which has a link that should open in a new window.
    when the user clicks again the same link it should not open in another new window instead it should open the previous window.this has nothing to do with java or jsp
    this is an html target question
    testing
    say if a user clicks the link 5 times it shud not open 5 windows instead only 1
    Thanks in advanceuse target="new" i think

  • How do I create a new window for the iTunes store?

    Hi,
    I have the latest iTunes update on a Windows PC, but I can't seem to open any new windows for the iStore like you used to be able to, so you have to come out of your iTunes library (annoying if you want to check that you haven't already purchased a song you're looking at etc.).
    Please tell me there is a fix (easy or difficult) for this!!
    Matt
    P.s. I have the latest iTunes update.
    PLEASE HELP!!!!

    Reboot the ATV and try it again. If it still won't play correctly, find the file in your iTunes store purchase history, click on the "Report a Problem" link, and report it to iTunes store support.

  • I'm sure this is a setting fix, but can't find it-.  All of my windows for mac programs open when I turn on my computer, such that I have to close each one individually to get to my desk top.  How do I adjust so none of them open unless I choose to?

    I'm sure this is a setting fix, but can't find it….  All of my windows for mac programs open when I turn on my computer, such that I have to close each one individually to get to my desk top.  How do I adjust so none of them open unless I choose to?

    Remove the check in the box "Reopen windows when logging back in":

  • How can I shut off all of the pop-up windows for all the Firefox updates?

    How can I shut off all of the pop-up windows for all the Firefox and Thunderbird updates?
    Apparently now Mozilla creates new versions of their browser and email apps every two weeks instead of just creating updates... I'm tired of all of the pop-up requests for these constant installation requests and all the problems that the new version installations create... I just want to use the software and be left alone.
    I can't find a way to make Firefox and Thunderbird stop with the pop-up requests for new installations... is there a way to do this or has Mozilla just got it rigged so one can't just use the software without re-installing a new version every two weeks and running in to new plugin issues and missing features every time?
    Help!
    Thanks,
    numetro

    Is it possible that her computer is infected with malware.
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Can you enter text into "info" pop-up window for TV Shows?

    It's not a big deal, but I was just wondering if there is a way (a script perhaps) of entering text into the little "info" pop-up window for TV Shows in iTunes? (You know the one...it pops-up when you click on the little "i" in the description box on the TV Shows main playlist)
    The show files I made myself have blank info windows of course and it would be nice to be able to enter a decent length description of the episode (the character limit in the "Description" box is so short).
    Like I said, it's not a big deal, but it would be nice to be able to enter info in there...so if anybody knows how...please let me know.
    Yhanx a lot!

    Thank you very much for your reply! I will definitely pass this along to the IT department! Smiling now!

  • How to Suppress the POP UP window for Print out Device

    Hi All,
    I have One ALV Grid report and in this report I want to SUBMIT another report which, when executes gives the POP UP window for Printer Device and sends the output to that device. if we give LOCL, sends output to Spool.
    So I want to Suppress that POP UP Window and by default that POP UP window should take 'LOCL' as Printer Device.
    Thanks in advance,
    Helpful answer get awareded.

    On the submit command is a spool parameters option.
    The addition WITHOUT SPOOL DYNPRO suppresses the print dialog box that is displayed as standard when you use the addition TO SAP-SPOOL.
    The addition SPOOL PARAMETERS is used to transfer the print parameters in a pri_params structure that belongs to the data type PRI_PARAMS from the ABAP Dictionary.
    PRI_PARAMS-PDEST specificies the output device.

Maybe you are looking for

  • Pixelated Images after exporting

    I  have recently switched from a Mac Laptop to a PC desktop. After I export my images they are really pixelated. I am not sure if lightroom is different for a PC. Can someone please help me. I have the same settings picked too.

  • OCS 2007 R2 Response Group Configuration Tool Failure

    Hello there. We are bringing back to life an old OCS installation. Customer performed a clean AD reinstall and we are in the process of re-installing OCS 2007 R2. All seems to work fine, except the RGS. When accessing the web tool we get this error:

  • Placing OS image and Data image on right partition

    Hi , We are facing issue in placing right image at the right partition.  We have OS image and data image. We are formatting and partitioning HDD as 40% (OSDisk) and remaining 100% as (Data). Both paritioons are active and selected as primary.  Then i

  • SAP NetWeaver Portal on HP-Hardware - Experience?

    Hi @All, we are using an SAP NetWeaver Portal on HPUX PA 11.11 but the response time is very long even with 8 CPU and a lot of RAM. In the past I've made good experiences with Linux on AMD with 64 bit but this woud be a real big change us. Somebody u

  • Export UI usability bugs

    I'm in Windows 8, Lightroom 4.3 I have a set of User Preset exports.  It took me a long time to figure out why the changes that I was making to the presets weren't working and that if I wanted any changes to stick I would have to "Add" and create the