Custom pages OAF does not not in the R 12.2.4 upgrade

Hi guys,.

We are upgrading to R R 11.5.10.2 12.2.4. We have copied our instance of generation of Production and improved to R 12.2.24. Now, there is a problem with the custom pages OAF. It seems that the custom java class files are not get covered by the application.

Since it is the body build, I am applying custom patch directly in the file system to run (fs1) and I am getting below error while executing one of the custom of the OPS page:

oracle.apps.fnd.framework.OAException: could not create Java class: (oracle.apps.xxfe.f486.asn.lead.webui. ASNLeadQryCOEx) associated with the area: (ASNLeadQryRN). It is probably because the class name is incorrect or not included in the project.

at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1247)

at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1435)

at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2848)

at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1991)

at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:567)

at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:455)

I think that it is simply saying that it couldn't find the java class. But I checked in the system as indicated below, the class files are roughly:

$ cd $JAVA_TOP

$ cd oracle/apps/xxfe/f486/asn/lead/webui /.

$ ls - ltr

total 10

-rw - r - r - 1 a2bur12a s/n 5693 7 Jan 13:23 ASNLeadLstCOEx.class

-rw - r - r - 1 a2bur12a s/n 3397 7 Jan 13:23 ASNLeadQryCOEx.class

I also checked the class path, which is also to top java:

$ cd $JAVA_TOP

$ pwd

/ opt/lapp121/FS1/EBSapps/COMN/java/classes

$ echo $CLASSPATH

/opt/lapp121/fs1/EBSapps/comn/util/jdk32/lib/dt.jar:/opt/lapp121/fs1/EBSapps/comn/util/jdk32/lib/tools.jar:/opt/lapp121/fs1/EBSapps/comn/util/jdk32/jre/lib/rt.jar:/opt/lapp121/fs1/EBSapps/comn/shared-libs/ebs-3rdparty/WEB-INF/lib/ebs3rdpartyManifest.jar:/opt/lapp121/fs1/FMW_Home/Oracle_EBS-app1/shared-libs/ebs-fmw/WEB-INF/lib/ebsFMWManifest.jar:/opt/lapp121/fs1/FMW_Home/Oracle_EBS-app1/shared-libs/ebs-appsborg/WEB-INF/lib/ebsAppsborgManifest.jar:/opt/lapp121/fs1/FMW_Home/oracle_common/modules/oracle.uix_11.1.1/uix2.jar:/opt/lapp121/fs1/EBSapps/comn/java/classes:/ opt/lapp121/fs1/EBSapps/10.1.2/forms/java:/opt/lapp121/fs1/EBSapps/10.1.2/forms/java/frmall.jar:/opt/lapp121/fs1/EBSapps/10.1.2/jlib/ewt3.jar:/opt/lapp121/fs1/EBSapps/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar

I've heard that it takes run the utility adcgnjar and when I tried, I got the message below:

Generation customall.jar...

Do not create custom not customall.jar like no java directory under JAVA_TOP.

Maybe it's because the location of the custom folder which is$JAVA_TOP/oracle/apps/xxfe

I also tried to install these custom features of the OPS in online marking (as per my understanding following the features of online marking is not required (this is just an instance of generation) so earlier I had installed directly in the file system to run). But in following mode of patch, I had some error in ADOPTION (prepare) as below:

FATAL ERROR *.

PROGRAM: (/ opt/lapp121/fs1/EBSapps/appl/ad/12.0.0/patch/115/bin/txkADOPPreparePhaseSynchronize.pl)

TIME: Fri Jan 9 15:07:37 2015

FUNCTION: main::validatePatchLocation [level 1]

ERRORMSG: / opt/lapp121/fs_ne/EBSapps/patch/19258581 directory does not exist.

[UNEXPECTED] Error occurred during execution 'perl /opt/lapp121/fs1/EBSapps/appl/ad/12.0.0/patch/115/bin/txkADOPPreparePhaseSynchronize.pl-


Notice that I use the commands below to bounce at the intermediate level:

  1. stop adapcctl.sh
  2. admanagedsrvctl.sh stop oacore_server1
  3. Enter the password for Weblogic: < pass >
  4. admanagedsrvctl.sh start oacore_server1
  5. Enter the password for Weblogic: < pass >
  6. adapcctl.sh start


I am mainly looking for the installation of this file system customization to run if it is absolutely not necessary to do so in the patch file system.


Please let me know if anyone knows about it, or any way to go?

Thank you

Anupam

Hello

I could solve this problem. I am writing the solution that worked for reference:

  1. When the custom java files are placed in one of the shipped Oracle directories of the application (for example $JAVA_TOP/oracle/apps/fnd, $JAVA_TOP/oracle/apps/ad, etc) then the creation of custom jar file is not necessary.
  1. When the custom java files are placed in $JAVA_TOP // and then run the utility adcgnjar.
  1. Deploy customizations that are created in the package. oracle.apps.xxprod * and no xxprod.oracle.apps. * or xxprod.oracle.apps.xxprod. * on EBS 12.2.X?

It was our case because we have a custom directory under $JAVA_TOP/oracle/apps/xxfe

When the custom java files are placed in any other non-standard location (for example $JAVA_TOP/oracle /, $JAVA_TOP/oracle/java / etc) then custom jar file must be created manually and must be made available for WebLogic to pick it up.

Detailed instructions are given below:

Create a temporary custom.zip file that contains the entire application customized to the non-standard location directories/files:

(1) cd $JAVA_TOP

(2) zip r - customprod.zip. Where the list of all directory paths are present, compared to $JAVA_TOP for the custom to the non-standard location application java files.

Generate customprod.jar file & sign 3).

Command: adjava oracle.apps.ad.jri.adjmx - areas $JAVA_TOP/customprod.zip - outputFile $JAVA_TOP / customprod.jar - jar $CONTEXT_NAME 1 CUST jarsigner - storePass - keyPass

(4) delete temporary customprod.zip.

Command: rm $JAVA_TOP/customprod.zip

(5) follow the steps below to allow the custom WebLogic jar

(a) to take a backup copy of the existing /admin/template/ebsProductManifest_xml.tmp

(b) modify /admin/template/ebsProductManifest_xml.tmp to add the customprod.jar (after customall.jar)

(c) execute AutoConfig

(d) bounce midrange services

Thank you

Anupam

Tags: Oracle Applications

Similar Questions

  • login pages display does not indicate the button layout usual IE https and the https address of the site part will not green

    I had problems with the validity of the certificates for awhile on my laptop but I have the same version and settings on my desktop without any problem at all.

    All I get is a layout of the basic text by trying to connect to an https page, none of the icons and some inscriptions no formatting of the page at all. I hope someone can help

    Make sure your security software is not intercepting secure connections and sends its own certificate instead of pass the certificate of the Web site.

    You can retrieve the certificate and check details such as WHO issued the certificates and the expiration dates of certificates.

    • Click on the link at the bottom of the error page: "I understand the risks".

    Let Firefox recover the certificate: "Add Exception"-> "get certificate".

    • Click on the "view..." button. "and inspect the certificate and the Coachman, who is the sender.

    You can see more details like the intermediate certificates that are used in the details pane.

  • Hi, I managed to publish my site on the server. The server recognizes the different pages when I write the url, but when I use the &lt; a &gt; tag to navigate to the next page, it does not recognize the link.

    Here you can find below my coding > and I highlighted the links that refer to my various pages:

    < div id = "Main_navMenu" >

    < ul >

    < li > < a href = "/ index.html" > HOME < /a > < /li >

    < li > < a href = "#" > NEWS < /a >

    < ul >

    "< li > < a href="/pages/nieuws.html "> ACTUALITEIT < /a > < /li >

    < li > < a href = "#" > ACTIVITIES < /a > < /li >

    < li > < a href = "#" > HERE < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "#" > < /a > ADVICE

    < ul >

    < li > < a href="/pages/contract.html" > CONTRACT < /a > < /li > .

    < li > < a href = "#" > CHECKLIST < /a > < /li >

    < li > < a href = "#" > UITKERING < /a > < /li >

    < li > < a href = "#" > JURIDISCH < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "#" > WIE WE ZIJN < /a >

    < ul >

    < li > < a href = "#" > BESTUURSLEDEN < /a > < /li >

    < li > < a href = "#" > WAT WE DOEN < /a > < /li >

    < li > < a href = "#" > ELEVEN LEDEN < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "#" > INFORMATION < /a >

    < ul >

    < li > < a href = "#" > GESCHÄFTSORDNUNG < /a > < /li >

    < li > < a href = "#" > FAQS < /a > < /li >

    < li > < a href = "#" > LINKS < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "#" > LID WORDEN < /a >

    < ul >

    < li > < a href = "#" > CHANGE < /a > < /li >

    < li > < a href = "#" > INLOGGEN < /a > < /li >

    < /ul >

    < li > < a href = "#" > CONTACT < /a > < /li >

    < /ul >

    < / div > <! - end navMenu - >

    Aurélie Maddy wrote:

    Hello

    Thanks for your time... but it didn't work.

    What did work was to put two points before each slash >... nieuws/pages /< and="" now="" the="" links="" are="" work="">

    I got this Advisor to a guy from IT - so, to be sure, may be recommended by you?

    Maddy

    Looking at the structure more closely infact part 'pages' of the link should not be included in the link at all. All pages, except the index.html page could I summer as below, as they are in the same folder. However index.html has the... / because it is outside the folder, which initially, I couldn't.

  • HOME
  • ACTUALITEIT
  • CONTRACT
  • ' save page as ' does not save the images more

    Firefox used to make a html file and a folder containing images. It is no longer made the record or records the images.

    Make sure that you have selected as "Web Page, complète" type at the bottom of the window of the Page selector record.

  • startup time is does not match the window requirements 8.1 upgrade and some of the apps also does not

    some of the apps are not coordinate 8.1 window, when I try to upgrade. I am currently using 32-bit window 8 enterprise x 86. can you tell me or suggest me how can I solve this problem

    Hi Chateshwar,

    The question you have is better supported by TechNet. I suggest you post your query on TechNet forum by following the link below:

    https://TechNet.Microsoft.com/en-us/Windows/dn140267.aspx?f=255&MSPPError=-2147217396

    Hope this information is useful.

    Thank you.

  • Firefox does not load the password files

    Firefox uses two files to load and store passwords:
    signons3.txt and sign. Lite
    The two files are present in the profile and both are filled with relevant information of password. However, the password manager, which is located under Options, remains empty. When I opened the Web pages that require passwords, and which I know for sure that they are in the files of passwords, firefox does not work shall complete them boxes apprioriate. Logical, as the passwords are not loaded in password manager

    Additional information:
    When I now save a password for a Web page, it does not store the information and fills the boxes on the Web page.
    [This problem occurred when setting back the old profile [copy - paste] in the right folder I found through cards help-resolution of problems-show]

    No I have not thought about it.
    Make a copy of the entire profile.
    copy the old information in the newly created profile

    Took an old signons3.txt from backup
    Has taken the last signon.lite that contains all of these passwords
    Both of these placed files [Replace] in the new profiel

    and voila. Everything is back

  • Why Safary does not load the content of pages?

    Why Safary does not load the content of pages? I mean, when I hover over the places where should be the content, he is always showing the "redirect to: [email protected]/" lower left. My Safari is 9.5 and worked fine until Safe Fimder Virus get inside my computer. Mozilla Firefox is a bit slower. If someone could give me an idea on how to deal with it, I would be happy.

    Sorry if my English is not good, I am a Brazilian who is still learning English

    Your English is very good!

    Redirects are usually due to adware or malware.

    Download the run MalwareBytes.

    It of free and takes only a minute or two. Which should remove all adware and malicious software on your Mac.

  • My Firefox has just automatically updated itself to the version 42. The extention under modules page does not display the extensions I have installed.

    My Firefox has just automatically updated itself to the version 42. The extention under modules page does not display the extensions I have installed. The plug in page shows the plug ins I installed. How can I fix it? This happened on my 64 bit Windows 7 partition. I installed the extension "classic add-on" to see if she could solve the problem. There is unfortunately no. I have a screenshot. I'm not sure if I have permission to upload it to the media gallery. I also use Linux, but I did not upgrade that are still there.

    It is possible that there is a problem with the files that store the registry extensions.

    Delete the files (extensions.json, extensions.sqlite, extensions.ini) extensions.* and compatibility.ini in the profile folder of Firefox to reset the extensions registry.

    New files will be created if necessary.

    See "extension corrupted files:

  • Firefox does not load the flash of the Firefox home page

    Firefox does not load the flash of the Firefox home page

    It's not Flash, but a film WebM.

    <video xmlns="http://www.w3.org/1999/xhtml" poster="data:image/png;base64,<base64 data>" src="https://snippets.cdn.mozilla.net/media/files/e29ada39-11f4-4157-ae1c-1340d9455692.webm"></video>

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox/tools > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe
  • I put my yahoo homepage, but every time I open mozilla home page is webssearches I reset firefox, but it does not solve the problem, what to do now?

    My homepage is set to yahoo, but mozilla opens with http://istart.webssearches.com as start page. Same reset does not solve the problem. I think that I have installed a software that installed this. My default search engine is Google. Kindly help me, is there something to do in all: config?

    See this tutorial - http://malwaretips.com/blogs/istart-webssearches-com-removal/

  • After installation or upgrade to Firefox 31, starting Firefox does not display the home page, personalize displays a blank page and the radio button does not work

    I am the admin of Windows for a University Department and install PC with Firefox all the time. This problem does not occur with every PC I would maintain, only a selection bit (model different laptops with Windows and update 1 8.1.) Until today, it has happened with the new user (with admin rights) accounts that I place on laptops for our staff. Today, this happened with the account administrator while setting up a new laptop. In all cases so far, I have install Windows from a registered image that was created by using sysprep.

    I tried many suggestions to reset Firefox, removing the profile of Firefox users, removing the Windows profile users, uninstalling/reinstalling Firefox, uninstall/reinstall of Firefox and the latest Java, but nothing helped. After uninstalling, I run an application to delete the caches and temporary files and even remove manually the keys to register HKLM\SOFTWARE\Mozilla and HKCU\SOFTWARE\Mozilla. I restart and make sure that the installation folder is deleted after uninstalling.

    Results are the same: after installing Firefox 31, the initial settings for migration, IE or Chrome pop up and after having clicked on the button finish, Firefox starts but does not display the home page of the new user, only a blank page. By clicking on the Options (3 bars) button does nothing. Right click in the appropriate box, the shortcut menu appears, so I can choose to customize, but which opens another tab with subject: Customize the URL and the page is blank. In the right click context menu, I can activate the menu bar and get options from that.

    My last attempt helped a little. I uninstalled Firefox 31, cleaned, removed the profile user Firefox, rebooted and then installed Firefox 30. Initial start-up runs and tells me that I'm not up-to-date and the works of button Options. But I can't always customize.

    Then I upgraded to Firefox 31, but then it's back to no start page, no options button and no customization. I can go down to 30 and get customize practically works again.

    Addon only is for McAfee Scriptscan to Firefox 15.1.0, just after installation is disabled.

    Any help would be appreciated. Thank you.

    You can try a different theme of Windows?

    Have you tried to start the computer using Windows safe?

    Start the computer in Mode safe mode with network support Windows (on the startup screen, press F8) as a test.

  • How can I cancel a subscription and get a refund? An application does not work, the "assistance of the developer page" link provided by itunes is broken.

    How can I cancel a subscription and get a refund?

    An application does not work, the "assistance of the developer page" link provided by itunes is broken, and email provided by the application developer's sole means of support, but no response in 3 weeks to multiple addresses.

    The page you posted has since how to stop an auto-renewal subscription to renew again (see, change, or cancel your subscription - Apple Support).

    To contact iTunes support try http://reportaproblem.apple.co or https://www.apple.com/emea/support/itunes/contact.html

  • Could not load the doc Pages to iCloud. Said does not support the docs in packages. Why?

    When I try to drag a page to icloud file when it is opened in Firefox, I get the comment:

    Firefox does not support the download documents saved as packages
    Please use Safari

    What does that mean? What are packages?

    Hi Royden1,

    What is a page file and the template that you used to and what are you trying to use? Please research what the .pages file is compatible with, that means that Firefox does not support this file type. http://www.Macworld.com/article/20633.../how-to-work-with-iWorks-new-file-formats.html

  • 26 of Firefox does not load the home page. Instead, it loads the previous session (and that includes all tabs). It does not matter how Firefox is closed.

    26 of Firefox does not load the home page. Instead, it load the previous session, regardless of what has been entered in 'Options '. The browser runs in Win 7.0 64 bit; Norton Internet Suite 21 provides security features. There are some solutions 'cloud', also running as Google Drive, box, Skydrive and Cubby. The browser behaves in the same way in all my machines (installation and the OS is similar to that described above) and no amount of reset 'Options' seems to affect it. Nor is it affected by the way that Firefox is closed. This is obviously a bug that should be fixed.

    You can check if you have a user.js file in the Firefox profile folder that affects the pref browser.sessionstore.resume_session_once true value.

    You can use this button to go to the Firefox profile folder:

    • Help > troubleshooting information > profile directory: see file (Linux: open the directory;) Mac: View in the Finder)
  • type in the navigation bar does not display the web page

    Type the URL in the navigation bar does not appear the page. But when you click on the same URL in bookmarks, page displays OK.

    Hi sidonius,.

    I'll try from Firefox Firefox to solve the issues in Safe Mode. If you do not have the issue so that all your modules, extensions, and themes are disabled, you can try adding them in one by one until you find the culprit. You should look at the guide to troubleshooting Extensions and themes and article troubleshooting issues with plugins like Flash or Java to solve common Firefox problems as well.

    Hope this helps!

Maybe you are looking for