• Skip to primary navigation
  • Skip to main content

Tech Honey

The #1 Website for Oracle PL/SQL, OA Framework and HTML

  • Home
  • HTML
    • Tags in HTML
    • HTML Attributes
  • OA Framework
    • Item in OAF
    • Regions in OAF
    • General OAF Topics
  • Oracle
    • statement
    • function
    • clause
    • plsql
    • sql

Items

Message Check Box In OA Framework

October 21, 2012 by techhoneyadmin

In order to create a check box in an Oracle Application Framework page the messageCheckBox bean is used. It is created with the user’s defined inline text which acts as a prompt once the Oracle Apps Framework page is loaded.

MessageCheckBox serves the purpose of one or multiple selection.

Corresponding web bean: OAMessageCheckBoxBean

Import Path: import oracle.apps.fnd.framework.webui.beans.message.OAMessageCheckBoxBean;

Filed Under: Items Tagged With: Message Check Box in OA Framework, Message Check Box in OAF, OA Framework Message Check Box, OAF Message Check Box, OAMessageCheckBoxBean, What is Message Check Box in OAF

How to get value of Text Box in OA Framework?

October 17, 2012 by techhoneyadmin

Well getting the value of a text box from an OA Framework page can be termed as one of the most basic requirements, but still its worth to be learnt.

Before we begin I assume that you have an OAF page (xxTrialPG) and a controller (xxTrialCO). Also I assume that you have created a Text Box bean and have a OAMessageTextInputBean(xxTrialMessageTextInputBean) bean on xxTrialPG.

Let’s take this in steps for easy understanding.

Step 1: Import the OAMessageTextInputBean bean in your controller

import oracle.apps.fnd.framework.webui.beans.message.OAMessageTextInputBean;

Step 2: Create a handle or reference of the xxTrialMessageTextInputBean bean in our controller so that we can control the properties of xxTrialMessageTextInputBean via our controller.

OAMessageTextInputBean xxTrialMessageTextInputBeanHandle = (OAMessageTextInputBean) webBean.findChildRecursive(“xxTrialMessageTextInputBean”);

Step 3: Now using the xxTrialMessageTextInputBeanHandle handle created in step 2 we can get the value of the xxTrialMessageTextInputBean


String xxTrialString = xxTrialMessageTextInputBeanHandle.getValue(pageContext).toString();

Until next post

Keep Learning 🙂

 

Filed Under: Items, OAF Miscellaneous Tagged With: get value of Text Box at runtime in oaf, get value of Text Box dynamically in oa framework, How get value of Text Box dynamically in oa framework, how to get value of Text Box at runtime in oaf

Submit Button In OA Framework

October 17, 2012 by techhoneyadmin

The SubmitButton item style is used to submit the OAF Page. The destination attribute of the submitButton is always ignored and in place of it the destination of the form is used as destination by Oracle Apps Framework.

It also has the fire action property that you can use to handle the validations for the values being submitted with the form.

Corresponding web bean: OASubmitButtonBean

Import Path: import oracle.apps.fnd.framework.webui.beans.form.OASubmitButtonBean;

Filed Under: Items Tagged With: OA Framework Submit Button, OAF Submit Button, OASubmitButtonBean, Submit Button in OA Framework, Submit Button in OAF, What is Submit Button in OAF

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 6
  • Page 7
  • Page 8

Copyright © 2025 · Parallax Pro on Genesis Framework · WordPress · Log in