-
Create Application Module and Controller in OAF
Create Application Module and Controller in OAF: Creating Application Module (AM): Step1: Right click on Resources under project and select “New Application Module” Step2: Specify package “trng2.oracle.apps.ak.hw.server” (AM will be in server) and name “HelloWorldAM” Extends will be used for customizations when to extend seeded objects Step3: You need to select VO if AM need…
-
OAF Architecture
OAF Architecture: 1. Model View Controller: OA Framework is based on the industry-standard J2EE MVC design pattern. The MVC architecture is a component-based design pattern with clean interfaces between the Model, View, and Controller. The Model is where the application implements its business logic. The View is where the application implements its user interface and…