• 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

Regions

How to handle add more rows event in Advanced Table in OAF?

October 27, 2012 by techhoneyadmin

Well handling the add_rows_event is a bit peculiar but important requirement and we are going to learn how to achieve the same using OA framework code.

Before we begin I assume that you have an OAF page (xTrialPG) and a controller (xxTrialCO). Also I assume that you have created an Advanced Table OAAdvancedTableBean(xxTrialAdvancedTable).

Let’s take this in steps for easy understanding.

Step 1: Import the OAAdvancedTableBean in your controller

import oracle.apps.fnd.framework.webui.beans.table.OAAdvancedTableBean

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

OAAdvancedTableBean xxTrialAdvancedTableHandle = (OAAdvancedTableBean) webBean.findChildRecursive(“xxTrialAdvancedTable”);

Step 3: Now using the xxTrialAdvancedTableHandle handle created in step 2 we can capture the add_row_event on xxTrialAdvancedTable.


if (xxTrialAdvancedTableHandle.getName(pageContext).equals(pageContext.getParameter(SOURCE_PARAM))
&& ADD_ROWS_EVENT.equals(pageContext.getParameter(EVENT_PARAM)))
{
// perform required steps
}

< em>

Mission Accomplished 

Thanks for Reading.
Until next post
Keep Learning 🙂

Filed Under: OAF Miscellaneous, Regions Tagged With: Handle add_rows_event in oaf, handle add_rows_event in oaf dynamically, handling add_rows_event in oaf, How to handle add_rows_event in oaf

Table Region In OA Framework

October 17, 2012 by techhoneyadmin

As the name suggests a table region is used to display tabular data and also supports selection (both single and multiple), sorting, record navigation, detail-disclosure and totaling but totaling can be enabled for any column except for the first column in a table.

Corresponding web bean: OATableBean

Filed Under: Regions Tagged With: OA Framework Table Region, OAF Table Region, Table Region in OA Framework, Table Region in OAF, What is Table Region in OAF

Defalut Double Column In OAF

October 17, 2012 by techhoneyadmin

In oracle application framework page the OAF DefaultDoubleColumn region was used to hold items in two columns.

Prompt of items will be right justified and the input fields will be left justified. But it was not fulfilling the Oracle BLAF (Browser Look and Feel) UI requirement/guidelines.

Hence, it is deprecated and messageComponentLayout should be used for better serving the purpose of placing items in OAF page along with header region which is called before messageComponentLayout in the OAF page.

Along with DefaultDoubleColumn layout, there was one more region known as DefaultSingleColumn layout was present.

DefaultSingleColumn severs the requirement of placing items in one column; it is also deprecated due to the same reason of not serving the purpose of Oracle BLAF UI.

Corresponding web bean: OADefaultDoubleColumnBean (deprecated)

Filed Under: Regions Tagged With: Default Double Column in OA Framework, Default Double Column in OAF, OA Framework Default Double Column, OAF Default Double Column, What is Default Double Column in OAF

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

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