|
|
Re: How to find the code behind the JSP pages in self service applications In Oracle Apps [message #382172 is a reply to message #377751] |
Wed, 21 January 2009 04:15 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
parag_narkhede
Messages: 110 Registered: January 2008 Location: Pune
|
Senior Member |
|
|
1. set these profile options to YES
• FND: Personalization Region Link Enabled
• FND: Diagnostics
2. Go to that page in apps front end,for which you want to see behind code.
3. Click on About this page link at the bottom.
4. Here you will see name of Controller class. download this file from the location. location is specified in "Business Component References Details" link at the bottom.
5. Download this Controller class file and decompile it with JAD.exe to convert it into .java
5. in this decompiled file, you will see two methods: 1. Processrequest: fires when page loads.
ProcessFormRequest: fires when you press any button on the form.
Tell me what exactly you want to see???
|
|
|