OAF Hello Page

OAF Hello Page Creation :-

1.  Create a Workspace & Project











2. Set Run Options in OA Project Setting

Select Your Project in the Navigator and choose Project Properties
Select Oracle Applications > Run Options
Select OADeveloperMode and OADiagnostic, and move them to selected Options List


3. Create Application Module AM
     Right click on OafHelloPR 






4. Create a OA components Page





5. Modify the Page Layout (Top-level) Region




Following attributes will have to be changed.



6. Create the Second Region (Main Content Region)



Following attributes will have to be changed for the new region.



7. Create the first Item (Empty Field)
MainRN > New > messageTextInput
Following attributes will have to be changed.
8. Create a container Region for Go-Button
Change the ID of new item.
9. Create a Second Item (Go Button)
Change the attributes of above created item.

10. Save Your Work
11. Run Your Page UI is ready

12. Add a Controller
MainRN > Set New Controller



13. Edit Your Controller
Add Following OA Exception as a last line in import section
import oracle.apps.fnd.framework.OAException;
Add Following Code in processFormRequest
     public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
     {
            super.processFormRequest(pageContext, webBean);
             if (pageContext.getParameter("Go") != null)
             {
                     String userContent = pageContext.getParameter("HelloName");
                     String message = "Hello, " + userContent + "!";
                     throw new OAException(message, OAException.INFORMATION);
             }
     }

14. Build Your Controller
15. Test Your Work Your Hello World Page is Ready

1 comment:

  1. This comment has been removed by the author.

    ReplyDelete