Changing oaj2se.exe binary file for form operations

Hi,
When you open the form service in R12.1.3, you encounter a page with the following message.
In order to access this application, you must install the J2SE Plugin version 1.6.0_07. To install this plugin, click here to download the oaj2se.exe executable. Once the download is complete, double-click the oaj2se.exe file to install the plugin. You will be prompted to restart your browser when the installation is complete.
If you need the newer version - let's say 1.6.0.10 - than 1.6.0.07. Then, going through click here will give still the old binary file.
For this kind of cases, it would be good if the binary file just gives the latest one when clicked to download j2se plugin.
So, here the questions come.
Q1.
Is it safe to replace the old binary file with the latest jre file from Oracle site?
Q2.
How can this be done? I mean, where is the location and is it ok just to replace the binary file?
Does anyone have any idea on this?
Thanks,

Hi,
Please see
Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 [ID 393931.1]
This doc looks big, But it is straight forward and very easy to do
Thanks

Similar Messages

  • Anyone know why I got this Terminal Error? [ERROR]      CPPathUtils.c:526      The device-file for this operating system, 'osx-12.1.0.xml', was not found.

    Here is the full text:
    [ERROR]          <CPPathUtils.c:526>          The device-file for this operating system, 'osx-12.1.0.xml', was not found. An attempt to revert to a previous revision of the OS device-file: 'osx-12.0.0.xml' has been made. Please file a Radar report with Apple, on the 'CoreProfile' component, version 'X'.
    Appeared after 10.8.1 Friday update while troubleshooting USB/FW issues w/ Mountain Lion.

    OK. To recap:
    1. Open Terminal.app
    2. Type at cursor:
    cd /System/Library/PrivateFrameworks/CoreProfile.framework/Versions/A/Resources/De vices/
    3.  Press Return
    4.  Type at cursor:
    ls
    5.  Press Return
    6.  Type at cursor:
    sudo ln -s osx-12.0.0.xml osx-12.1.0.xml
    7.  Press Return
    8. Enter password if asked
    9. Done.
    Can I then type ls again to verify the change?

  • ORA-22285 - non-existent directory or file for FILEOPEN operation

    Hello
    I want to insert the xmldata from a xmlfile to the a table, with this scirpt:
    #!/bin/sh
    set -x
    for i in `find . -name "dspevent*.xml"| awk -F"/" '{print $NF}'`
    do
    echo $i
    fname_old=$i
    fname_neu=`ls $i | awk '{print "OK_"$0}'`
    cat $i | sed 's/aps://g' >$fname_neu
    echo $fname_neu
    rm $i
    #insert_xml $fname_neu
    INSERT_XML=`sqlplus -s username/passwort@database <<EOF
    INSERT INTO event_xml (name,
    dtsysl,
    hrsysl,
    dtcptl,
    nusesi,
    dsp_step,
    dsp_state,
    bat_class,
    bat_program,
    bat_seqi,
    bat_state)
    SELECT *
    FROM XMLTABLE (
    'Operations/Event'
    PASSING xmltype (BFILENAME ('EVENT_DIR', '$fname_neu'),
    NLS_CHARSET_ID ('CHAR_CS'))
    COLUMNS name VARCHAR (40) PATH 'name',
    dtsysl DATE PATH 'dtsysl',
    hrsysl NUMBER PATH 'hrsysl',
    dtcptl DATE PATH 'dtcptl',
    nusesi NUMBER PATH 'nusesi',
    dsp_step VARCHAR (40) PATH 'DSP/step',
    dsp_state VARCHAR (40) PATH 'DSP/state',
    bat_class VARCHAR (40) PATH 'BAT/class',
    bat_program VARCHAR (40) PATH 'BAT/program',
    bat_seqi NUMBER PATH 'BAT/seqi',
    bat_state VARCHAR (40) PATH 'BAT/state');
    EOF
    `
    done
    But the problem is, that I have always this error message:
    ORA-22285 -> non-existent directory or file for FILEOPEN operation
    I'd create a direcotrie and over utl_file.fopen I can write a file to this directorie, but this works over the path, not over the directory name. the utl_file_dir parameter was also set to the correct path. Whats wrong or how can I debug this problem?
    thanks.
    roger

    - the name of the directory is correct.
    - how can I check, that the user can use the directory?
    - in this logfile you can see that, the file name will replace correctly:
    ./dspevent.sh
    + awk -F/ {print $NF}
    + find . -name dspevent*.xml
    + echo dspevent_db_20110503030448_10641.xml
    dspevent_db_20110503030448_10641.xml
    fname_old=dspevent_db_20110503030448_10641.xml
    + awk {print "OK_"$0}
    + ls dspevent_db_20110503030448_10641.xml
    fname_neu=OK_dspevent_db_20110503030448_10641.xml
    + sed s/aps://g
    + cat dspevent_db_20110503030448_10641.xml
    + echo OK_dspevent_db_20110503030448_10641.xml
    OK_dspevent_db_20110503030448_10641.xml
    + rm dspevent_db_20110503030448_10641.xml
    + sqlplus -s username/passwort@db
    INSERT INTO event_xml (name,
    dtsysl,
    hrsysl,
    dtcptl,
    nusesi,
    dsp_step,
    dsp_state,
    bat_class,
    bat_program,
    bat_seqi,
    bat_state)
    SELECT *
    FROM XMLTABLE (
    'Operations/Event'
    PASSING xmltype (BFILENAME ('EVENT_DIR', 'OK_dspevent_db_20110503030448_10641.xml'),
    NLS_CHARSET_ID ('CHAR_CS'))
    COLUMNS name VARCHAR (40) PATH 'name',
    dtsysl DATE PATH 'dtsysl',
    hrsysl NUMBER PATH 'hrsysl',
    dtcptl DATE PATH 'dtcptl',
    nusesi NUMBER PATH 'nusesi',
    dsp_step VARCHAR (40) PATH 'DSP/step',
    dsp_state VARCHAR (40) PATH 'DSP/state',
    bat_class VARCHAR (40) PATH 'BAT/class',
    bat_program VARCHAR (40) PATH 'BAT/program',
    bat_seqi NUMBER PATH 'BAT/seqi',
    bat_state VARCHAR (40) PATH 'BAT/state');
    INSERT_XML= PASSING xmltype (BFILENAME ('EVENT_DIR', 'OK_dspevent_db_20110503030448_10641.xml'),
    ERROR at line 15:
    ORA-22285: non-existent directory or file for FILEOPEN operation
    ORA-06512: at "SYS.XMLTYPE", line 296
    ORA-06512: at line 1
    + echo dspevent_db_20110502190712_10641.xml
    dspevent_db_20110502190712_10641.xml

  • Every time I open Firefox 4 I get a popup box saying: "OPENING FIREFOX SETUP 4.0.1.exe, Binary File from..." with different download link addresses

    Every time I open Firefox 4 a popup box keeps trying to get me to run setup again. The box always reads: "Opening Firefox Setup 4.0.1.exe, Binary File from...." followed by a link address, which is different every time. Recent addresses: http://mirror.umoss.org.......also http://mozilla.mirrors.tds.net....also http://mozilla.ussg.indiana.edu
    and so on.
    Help! Thanks!

    I am having the same problem and it seems to have just started (6/15/11). I have tried reloading the program several times and even the first release of the 4.o with no success. The same scenario also occurs when I click to open a new "tab" after the browser is already launched.

  • Making change in original application file for new version

    Hi
    I am new to DMS.
    I have a basic query about versioning of DIR.
    I have created a DIR with status in Released.
    I have attached a original application to the DIR. Now when I am creating a new version of DIR, original application file is also getting copied to the new version which is desired.
    My problem is I want to make changes into original application file in new version of DIR and want to save. But I am unable to do so. It is not allowing me to change the original application file for new version which is desired for storing some ISO documents.
    Is there any settings which I am missing?
    Waiting for reply ASAP.
    Thanks and Regards,
    Niraj Sikligar

    Hi
    If you want to make changes in the "Release" Status, go to dc10, select Doc type and define status screen. Do not put "S" (Lock mode) for Status - Release
    Also please check in new version , you are clicking on Edit symbol in Orginals tab, if u double click the file, it would open always in display mode , and it wont allow you to make any changes
    Regards
    Aby

  • .exe projector file for PC works fine, but extracted .hqx for Mac won't open when on CD

    I'm using Flash MX, AS 2, Projector 6, working on a PC.
    I saved two versions of my project -- one .exe for Windows and one .hqx for Mac.  The .exe works fine when burned onto a CD.  When opening the .hqx from a CD on a Mac, I got a message that the file is on a locked volume.  I discovered that the reason for this is that an .hqx is essentially a zipped file which has to be extracted, and when a file is extracted, the unzipped files are written onto the same location as the original.  When the original files are on a CD, Stuffit (Mac's zip extractor program) can't write onto that location.
    [So if anyone at Adobe looks at these forum posts, let me say that I think its absolutely ridiculous that the Mac version of Flash's projector files have to be extracted in order to be viewed!]
    To get around this problem, I saved the .hqx on my PC, put it on a portable hard drive and brought it over to a Mac (because Stuffit for PC converts it into an .exe for PC), and unzipped it.  When I'd test it on the portable hard drive or on a USB drive, the extracted file would work.  When I'd bring it back over to the PC and burn a CD with both versions on it, and then test that CD on the Mac, it wouldn't work.  Can anyone tell me why the extracted Mac version works on a hard drive, but not on a CD?  What do I have to do in order to make a Mac projector file work from a CD?

    Windows uses the FAT file system, Macs use the HFS file system. The two are not compatible. If you save a Mac projector file on a FAT file system, it won't be saved properly and it won't work. When you create a Mac projector from a Windows version of Flash, the file will be saved as a compressed .hqx file.
    Since you need to use a Mac to create a hybrid CD, when you move that .hqx file to the Mac, unstuff it and then use the resulting file for the CD. It will then run from the CD as expected.

  • Res File for Forms 4.5

    Has someone experiences modifying the FMRUSW.RES for Forms4.5
    Windows?
    I need to modify mapping of F10. We want, that F10 calls the Menu
    like in other Windows Applications.
    Which prerequisits are there in Forms, what do I have to to in
    Oraterm.
    Thanks a lot.
    Michael

    There are less Forms function numbers listed in the *.res file available with 10g than in the res file of Forms 4.5.
    Quite a number of key-mappings to activate certain Forms function numbers seem to be no longer available. I was therefore wondering if the list in the 10g res-file is compleet or if some overview of all Forms function numbers is available so i can extend this file myself.
    p.s. i do not mean Forms build-in functions. The Forms Help does not support any information on the Forms function numbers mentioned in the res-file (for details on what these are, see the "description" in the header of the 10g res-file).

  • Change the kernel26 config file for ati users?

    Hi,
    To get the  propriatary ati drivers working you need to change some parts of the kernel from build in to module. What about changing this in the standard kernel26 so that this will make it easyer to install ati drivers (and update the kernel) for a lot of users. I think it isn't hard to change because the config file is kernel26 package.
    I don't know much about kernels and stuff so I don't know if it will be negative for some users? Else of course it shouldn't be changed because only a small percentage of arch users use propiatary ati drivers.
    Please give me your opinion about this
    David
    edit: typo

    I don't think that Xentac wrote that, in this thread qwerty wrote it, or is this the same person?
    In that thread is also the reason why they need to be modules, the propriatary ati drivers interact with the AGP modules from the kernel. For some reason this doesn't work when they are compiled in the kernel. Shall I send qwerty a message if he can explain better why modules are needed?
    Also I'm trying(never made a PKGBUILD...) to merge the two PKGBUILDS from that howto in one so that in the future to install ati drivers one can just type pacman -S ati-drivers, add the module to rc.conf and change xorg.conf to get it working, that should be really cool I think
    edit: I just found out this isn't needed since I found ati packages in link's reposatority! The only strange thing is that they depend on an older kernel

  • Writing binary file for fixed amount of time

    Hello, I'm trying to write a binary file of multiple channels for a fixed amount of time before I perform my analysis. Does anyone know the best way to accomplish this?

    Here is an example of one way to do what I think you are trying to do. There may be a more elegant way of doing it, but this is pretty simple and straight-forward. It basically writes a 5-integer array for 5 seconds and then stops. Let me know if you have any questions.
    Attachments:
    timed write.vi ‏27 KB

  • How to load delta, changing the name of file for every day with open hub?

    Hi gurus,
    I load daily delta data from ODS to flat file, using open hub.
    The file is located on server. Now, if I do delta load from ODS to flat file, every day the file is overwritten, because it has the same name.
    I want to load delta data everyday to different file name, for example BW_20060101 , BW_20060102, BW_2006_01_03 ....
    How do I do that?
    Best regards,
    Uros

    Hi Uros,
    This thread may give you some idea
    Changing the file name n Flat file Extraction
    https://websmp107.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002201112003E
    Regards,
    BVC

  • Populating XML file for form set

    Hi there,
    We have several forms that we need to fill out with the same information for each "case" we deal with. Its the usual stuff like names, dates and addresses.
    At present we fill out each form one at a time - very repetitive.
    I want to have a underlying xml file populate each form.
    This presents a few questions:
    1. We don't have a database to populate the underlying xml file. What would be a good way to have the user enter this xml data? In addition to entering the xml data it needs to be store in a different folder each time (there is a folder for each case) and
    the dialog box (or whatever) needs to be able to accommodate a different number of people associated with different cases. Some might have 4 people some might only have two.
    2. Then a template, which could be one big document with each form.
    These goals maybe able to be done entirely within word, but I look forward to suggestions on this!
    Regards,
    -Al

    Hi,
    Thank you for posting in the MSDN Forum.
    Since the issue is more relate to the end-user, I'd like to move it to Word IT pro forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Best regards
    Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Updater.exe legit file for Firefox?

    I was using Norton 360 and something said that updater.exe is a good file, and ok to run.
    The Signature is Mozilla Corporation
    Says its 2 months old and millions of people in Norton Community use it, but what really makes me know specicious is it wanted access to hard drive right after I clicked start up. And this file name is so vague and used for sometimes legit things and other times not.
    So I wanted to know how is Firefox does it updates usually and if anyone has had any experience with it.

    Works Fine for me here, upgrade your browser to Firefox 9 and check
    * getfirefox.com

  • How to read and write Binary files from Forms 6i C/S ?

    Hi There,
    I have a situation, where user wants to store attachements to a record (Could be any type of file, TXT, TIFF, or Word Doc etc.) and wanted to retreive later if they wanted to edit/read.
    We are using forms 6i and Oracle 9i in client/server environment setup. Does anybody know how to solve this requirment. I'm ale to load image files with read_image_file, but it could be text some times and it could be some thing elses like word doc or excel.
    Also i have to give user an option to view existing file attachments. I'm Planing to use BLOB in database table to store files.
    Any help in this regards is appreciated

    Thanks,
    Venkat

  • How to change a rss.xml file for m3u file for my podcast

    Bonjour,
    I actually produce as well a podcast with unless 3 mp3 file,and that's ok ... But, on one of my post, I stream a playlist to a page of my website , and I noticed, after generating a playlist from my player when streaming (.m3u file)... I notice that I can play it in i tunes in a continuing stream (I can connect from this file in itunes on another post to my stream (note that I use a static IP from my access provider, in order to a stable connection to my web site - without using No IP) ...
    My question is,as the application recognizing the file and playing it,how to configure my rss.xml for this type of file(*.m3u)...
    Thank you for replying

    I don't think you are going to be able to do this: podcasts are not intended to contain streams or playlists, only specific audio or video files. The fact that the iTunes Application can connect to it doesn't mean that it will work in a podcast feed. However if you want to ask iTunes Support for advice it's at at
    http://www.apple.com/support/itunes/ - click on 'Other iTunes Store Features' in the list and then on 'Podcasts'.

  • How do I change the default storage file for PDFs?

    I want to save PDFs. Now the default files are in AppData/Local/Microsoft/Windows/Temporary Internet Files/Content IE5/V6ZGH08N. I have to drill UP through all those to get to where I want to save the item in PDF Files. How can I change the default?

    The file path (AppData/Local/Microsoft/Windows/Temporary Internet Files/Content IE5/V6ZGH08N) that you posted is the internet cache of the MS Internet Explorer and not a location that Firefox uses although MS plugins like the Windows Media Player will use that location.
    Files that are opened in an external program will be saved to the temp folder as specified in the %temp% and %tmp% environment variables.
    What makes you think that Firefox is saving PDF file in that folder?
    Are you using an extension like IE Tab or IE View to open specific locations with IE?
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

Maybe you are looking for

  • Accidentally moved all photos out of separate folders into single folder!

    So somehow I managed to move all of my photo files from my work out of their respective, nicely organized folders into one single folder. I really can't figure out how. All 15,588 of them... now unorganized into a single folder. "Undo" didn't work an

  • Bootcamp fails to create windows 7 startup disk

    Bootcamp version 5, running on Mountain Lion, keeps failing on creating the Windows 7 Startup disk. I'm using a 8gb USB drive and it formats it without any problems. The process will carry on until around 50% of copying installation files and then fa

  • IPad2 not down loading mail with photos

    My iPad2 downloads mostly emails but it is not down loading all of them especially one which had a photo in it. How can I get it to download all emails? Thanks for you help. Vernon

  • Why authorization object M_MSEG_LGO for MB1B (MTy 301) is not symmetrical?

    When transfer posting (MB1B, MTy 301) from storage location 3030 in plant 1000 to storage location 8000 in plant 1910, authorization object M_MSEG_LGO is checked. The activity is 01, movement type is 301, storage location is 3030, and plant is 1000.

  • Version control with concurrent InCopy and InDesign packages

    Hi there, If Editor A uses the "Forward for InCopy" option to create and send an InCopy package (.incp) to Editor B, and then erroneously uses the "Return for InDesign" function to create an InDesign package (.indp) before the Editor B has returned t