• 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

Static Styled Text In OAF

October 21, 2012 by techhoneyadmin

The staticStyledText item style extends styledText. All attributes supported by styledText are inherited by staticStyledText.

See the section on styledText for a list of attributes available on the styledText element.

Corresponding web bean: OAStaticStyledTextBean

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

Filed Under: Items Tagged With: OA Framework Static Styled Text, OAF Static Styled Text, OAStaticStyledTextBean, Static Styled Text in OA Framework, Static Styled Text in OAF, What is Static Styled Text in OAF

Tip Item In OA Framework

October 21, 2012 by techhoneyadmin

The tip item style provides page or section level hints to the user. This is a very essential component that Oracle Apps Framework as there is always a demand for tips to be displayed once the mouse is hovered over any component.

Typically, the only indexed child of the tip will be a TextNode, but as many children as necessary can be added and will be laid out as with a flowLayout.

Corresponding web bean: OATipBean

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

Filed Under: Items Tagged With: OA Framework Tip Item, OAF Tip Item, OATipBean, Tip Item in OA Framework, Tip Item in OAF, What is Tip Item in OAF

URL Include In OAF

October 21, 2012 by techhoneyadmin

The urlInclude item style allows you to include HTML content loaded from an external source under the parent region.

Corresponding web bean: OAUrlIncludeBean

Import Path: import oracle.apps.fnd.framework.webui.beans.include.OAUrlIncludeBean;

Filed Under: Items Tagged With: OA Framework URL Include, OAF URL Include, OAUrlIncludeBean, URL Include in OA Framework, URL Include in OAF, What is URL Include in OAF

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

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 73
  • Page 74
  • Page 75
  • Page 76
  • Go to Next Page »

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