Tag: OAF

  • How to Debug OAF page Errors (or) How to generate logs for tracing OAF page Errors

    Steps to Debug OAF page Errors (or) How to generate logs for tracing OAF page Errors. Step:1 You can see the log by using the below code in the Controller Syntax: pageContext.writeDiagnostics(Object,String,int); Example: pageContext.writeDiagnostics(this,”Enter into CO:=”+assnum,OAFwkConstants.STATEMENT); For bc4j objects(AM, View Object Impl ,Entity Object Impl) use the below code as Syntax: getOADBTransaction().writeDiagnostics(Object,String,int); Example: getOADBTransaction().writeDiagnostics(this,”customerid in…

  • Create Search Page in OAF

    Creating Search Page in OAF: Below is the page we are going to create using which you can search for an employee either by name or number or both. Create EmpSummaryVO with below query Step1: Right click on resources in application navigator and select New View Object Specify package=trng2.oracle.apps.ak.emp.server Name=EmpSummaryVO Step2: skip next steps and…

  • 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 Hello World Example

      Please refer to “3 Steps to setup jDeveloper for OAF Projects” If you haven’t setup your jDeveloper yet. This article, “oaf hello world example” will help you learn how to Develop Hello world page OAF Page. Create new OA Workspace and Project Set Project properties Create Application Develop OAF Helloworld page Run OAF Page…

  • 3 Steps to setup jDeveloper for OAF Projects

    Step1: Identify the OAF Version required to install 1.1) First step is to identify the compatible version of OAF for your e-business suite. Not every version of OAF is compatible with every version of e-business suite. Also Note that OAF is only to be used with oracle e-business suite. You can not develop stand alone…