How to Create OAF Page

By Jag - August 29, 2013
Create OAF Hellow Page Screen Shots:            














Browse DBC FIle..







select * from fnd_responsibility find responsibility_key.

                              

select * from fnd_application where application_short_name like 'FND%'


                   











                                               

                                          









And also specify winow Title:Hellow
Title:HelloPage



                                               





Specify: id:HelloName
Maximum Length:50




Id: MassageLayout




AttributeSet: /oracle/apps/fnd/attributesets/Buttons/Go





                                               

                                                  

Prompt:Employee Name









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);
  }
}



                                                 




  • Share:

You Might Also Like

0 comments