Are you good at Oracle Application Framework topics? Looking for a great career opportunity in Oracle Application Framework jobs? Then we have provided you the complete set of Oracle Application framework Interview Question and Answers along with the various jobs role in our site. Oracle Application Framework provides you a great career. There are numerous number of jobs in the various leading companies with the job roles like Oracle OAF (oracle Application Framework), R12 Apps Technical with OAF requirement, Oracle Apps Technical Consultant with OAF, Sr. Java/ADF/OAF Developer, Senior OAF (oracle application Framework) Consultant and many other roles too. To clear any job in the first attempt one should prepare well on all topics of Oracle Application Framework. For more details visit our site www.wisdomjobs.com.
Question 1. What Is A Controller?
Answer :
Controller is the java file and can be associated to a complete OAF page or to a specific region.
There are several tasks you will do routinely in your code.
The logic for accomplishing all these tasks is written in controller.
Question 2. When Is The Process Request Method Called?
Answer :
PR method is called when the page is getting rendered onto the screen.
Question 3. When Is Processformrequest Method Called?
Answer :
PFR method is called when we perform some action on the screen like click of submit button or click on lov.
Question 4. What Is Extension?
Answer :
Extension is when you take an already existing component ex an OAF page or a region and then add some more functionality to it without disturbing the original functionality.
Question 5. What Is Personalization?
Answer :
Oracle Apps Framework has an OA Personalization Framework associated with it so that you can personalize any OAF page in an Oracle E-business Suite application without changing the basic or underlying code of that OA Framework page, Oracle Application Framework makes it very easy to personalize the appearance of the page or even the personalization of data displayed on to an OA Framework page.
Question 6. What Are Levels Of Personalization?
Answer :
Answer :
Business Components for Java is JDeveloper’s programming framework for building multitier database applications from reusable business components. These applications typically consist of:
Question 8. What Are All The Components Of Bc4j?
Answer :
Following are the components of BC4J:
Answer :
EO encapsulates the business logic and rules.EO’s are used for Inserting, Updating and Deleting data. This is used for validating across the applications. We can also link to other EO’s and create a Association object.
Answer :
View object encapsulates the database query. It is used for selecting data. It provides iteration over a query result set.VO’s are primarily based on Eo’s. It can be used on multiple EO’s if the UI is for update. It provides a single point of contact for getting and setting entity object values. It can be linked together to form View Links.
Answer :
An association object is created where we link EO’s. For example take the search page where we link the same EO to form a association between the manager and employee. Every employee should have a manager associated. But if it President then no there is no manager associated. This is a perfect example to understand the AO.
Answer :
A view link is an active link between view links. A view link can be created by providing the source and destination views and source and destination attributes. There are two modes of View link operation that can be performed. A document and Master/Detail operation.
Answer :
UIX is an extensible, J2EE-based framework for building web applications. It is based on the Model-View-Controller (MVC) design pattern, which provides the foundation for building scalable enterprise web applications.
Question 14. Where The Vo Is Located In The Mvc Architecture?
Answer :
VO is located in the View Layer in MVC which is responsible for presenting the data to the user.
Question 15. Which Package Should Include Eo And Ao.
Answer :
The EO and AO will be present in the schema.server package.
Question 16. What Is The Difference Between Inline Love And External Lov?
Answer :
Question 17. What Is A Java Bean?
Answer :
JavaBeans is an object-oriented programming interface that lets you build re-useable applications or program building blocks called components that can be deployed in a network on any major operating system platform.
Question 18. What Is Query Bean?
Answer :
QueryBean is used to execute and return the results of a query on behalf of the QueryPortlet application.
Question 19. What Is The Difference Between Autocustomization Criteria And Result Based Search?
Answer :
Answer :
MDS is MetaData Service. When a web page is broken into small units like buttons,fields etc they are stored in a database. These are not stored as binary files but as data in tables. The data are present in JDR tables. MDS provides service to store & return page definitions. MDS collects those definitions in components/fields in a meaningful manner to build a page.
Answer :
XML is a markup language for documents containing structured information.
Structured information contains both content (words, pictures, etc.) and some indication of what role that content plays (for example, content in a section heading has a different meaning from content in a footnote, which means something different than content in a figure caption or content in a database table, etc.).
Question 22. What Is The Difference Between Customization And Extension?
Answer :
Customization is under direct user control. The user explicitly selects between certain options. Using customization a user can:
Extension is about extending the functionality of an application beyond what can be done through personalization. Using extension we can:
Question 23. Can You Extend Every Possible Application Module?
Answer :
No..Root AM cannot be extended.
Answer :
The application module which is associated with the top-level page region (the pageLayout region) is root application module.
Question 25. Why Can’t Root Am Be Extended?
Answer :
Question 26. What Are Different Methods For Passing Paramaters?
Answer :
Tokens
eg. vname={@AttributeName}
Hash Maps
eg. HashMap variablename=nre HashMap();
variablename.add(“ParameterName”,ParameterValue);
ThroughSession
eg. pageContext.putSessionvalue(“ParamterName”,ParameterValue)
Question 27. What For Ispreparedforexecution() And Executequery() Methods Used?
Answer :
Question 28. What Is The Pattern Used In Developing An Oaf Component?
Answer :
MVC (Model, View, Controller)
Lists the components in the MVC architecture
Model: Application Module, View Objects, View Links, Entity Objects, Entity Associations etc.
View: Page, Region, Attribute sets etc.
Controller: Controller class files
Question 29. Which Is The Component Responsible For User Actions?
Answer :
Controller is the object. The code present in ProcessFormRequest gets executed up on the user action.
Question 30. If We Have To Initialize Something During The Page Loading, Which Is The Right Place?
Answer :
ProcessRequest() method of the Controller file is the right place.
Question 31. What Is The Significance Of Process Form Data()?
Answer :
For a ‘POST’ request the data on the page is binded to the view object in this method.
Question 32. Does ‘get’ Request Result In Calling Process Form Data()?
Answer :
No, only POST request calls that.
Question 33. What Is The Main Controller Component In Oaf?
Answer :
OAF Controller is the main class and our controller will become subclass of it.
Question 34. How Does Page Structure Get Created At Runtime?
Answer :
OAPageBean is responsible for creating the bean hierarchy structure at runtime after calling ProcessRequest() of each of the beans in the hierarchy.
Question 35. Where Does The Client Bc4j Objects Get Placed In The Server?
Answer :
They are located in the oracle.apps...server
Question 36. Where Does The Server Bc4j Objects Get Placed In The Server?
Answer :
They are located in the oracle.apps...schema.server
Question 37. Where Does The Page And Controller Related Files Get Placed?
Answer :
They are located in oracle.apps...webui
Question 38. What Are Validation View Objects?
Answer :
They are the VVO’s used in validation of attributes, they are the BC4J components and have their AM ie VAM Validation Application Module.
Question 39. What Is A Database Connectivity File?
Answer :
It is a .dbc file which is specified in the project properties. The location of this file on the server is $FND_TOP/secure.
Question 40. What Is A View Object?
Answer :
It is a BC4J(Business Component for Java) object which encapsulates the query results. View objects will support the display of the content to user in the Page.
Question 41. How Do You Create A View Object?
Answer :
View objects can be created in the Business components package, can be based on entity objects or an sql query. View objects based on sql query are read only view objects.
Oracle Application Framework Related Tutorials |
|
---|---|
Oracle 10g Tutorial | Oracle 9i Tutorial |
Oracle 8i Tutorial | Oracle 11g Tutorial |
Oracle Application Framework Related Practice Tests |
|
---|---|
Oracle 10g Practice Tests | Oracle 9i Practice Tests |
Oracle 8i Practice Tests | Oracle 11g Practice Tests |
Oracle apps Practice Tests | Oracle Apps ERP Practice Tests |
Oracle 7.3 Practice Tests |
Oracle Application Framework Practice Test
All rights reserved © 2020 Wisdom IT Services India Pvt. Ltd
Wisdomjobs.com is one of the best job search sites in India.