• 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

Advanced Search Region in OA Framework

October 30, 2012 by techhoneyadmin

Region is a part of an Oracle Apps Framework page which acts as a container for the items or components. By default the top most level of an OA Framework page has to be of the “pageLayout” region type.

In OA Framework or OAF the regions can be nested so as to provide the desired layout to the OAF page. Each region is a java bean which acts as a container for the sub-regions or items in any Oracle Application Framework page.
Regions which are parallel in the bean hierarchy, in an OAF page, are called as Siblings and the regions inside a region in an OAF page are called Child regions. The same nomenclature is also applied for Items in OAF. Hence, by default all the regions that you create become the child regions of the pageLayout region as mentioned earlier that the pageLayout region is the top most region in any OA Framework page.
Also every region in OAF has specific properties which can be given some values while creation of the OA Framework page e.g. rendered property which allows the region to be displayed onto the OAF page, as per Oracle Application Framework guidelines (called as OAF standards) this rendered property can have 2 values namely true(visible) or false(hidden). If the region in an OAF page is set to be hidden then all the children regions/items will by default be rendered false once that OAF page is rendered on to screen. Even these properties can be changed at run-time using a Java controller, but that needs an understanding on how to import the region beans and then how to create handle of the bean and then how to set properties. However this is not so much difficult to do but still some Java concept and Java programming knowledge is needed to achieve this. This is called as run-time control of the bean in OAF and is explained in detail for every region in the corresponding region type.

Every region has a specific way of representing the data onto the screen once the OA Framework page is rendered. Hence while creation of a OAF page we have to very cautious in choosing the type of regions. E.g. a defaultDoubleColumn type of region will create two columns and will automatically render all the components created inside it in these two columns once the OAF page is rendered to screen. There are various types of regions available in OA Framework.

Filed Under: Regions Tagged With: OAAdvancedSearchBean

TANH Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The TANH function in Oracle SQL / PLSQL is used to calculate hyperbolic tangent of numeric value where numeric value is provided in radian format.

It’s mathematically equal to TANH(N).

Syntax for the TANH function in Oracle SQL / PLSQL is:

SELECT TANH(radian)
FROM table_name;

Let’s take an example for understanding:

Suppose we want to get the hyperbolic tangent of 30 degree.

SELECT TANH(30*22/(7*180))
FROM dual;

The output of the above statement will be:

TANH(30*22/(7*180))
0.480634857866646

Notice that we have changed 30 degrees into radians while passing it in TANH function.


Filed Under: function Tagged With: how to use tanh function in oracle database query, how to use tanh function in oracle plsql, how to use tanh function in oracle sql, syntax and example of tanh function in oracle database query, syntax and example of tanh function in oracle plsql, syntax and example of tanh function in oracle sql, tanh function in oracle plsql, tanh function in oracle sql, TANHPLSQL, using tanh function in oracle database query, using tanh function in oracle plsql, using tanh function in oracle sql

TAN Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The TAN function in Oracle SQL / PLSQL is used to calculate tangent of numeric value where numeric value is provided in radian format.

It’s mathematically equal to TAN(N).

Syntax for the TAN function in Oracle SQL / PLSQL is:

SELECT TAN(radian)
FROM table_name;

Let’s take an example for understanding:

Suppose we want to get the tangent of 30 degree.

SELECT TAN(30*22/(7*180))
FROM dual;

The output of the above statement will be:

TAN(30*22/(7*180))
0.57763130100345

Notice that we have changed 30 degrees into radians while passing it in TAN function.


Filed Under: function Tagged With: how to use tan function in oracle database query, how to use tan function in oracle plsql, how to use tan function in oracle sql, syntax and example of tan function in oracle database query, syntax and example of tan function in oracle plsql, syntax and example of tan function in oracle sql, tan function in oracle plsql, tan function in oracle sql, TANPLSQL, using tan function in oracle database query, using tan function in oracle plsql, using tan function in oracle sql

SINH Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The SINH function in Oracle SQL / PLSQL is used to calculate hyperbolic sine of numeric value where numeric value is provided in radian format.

It’s mathematically equal to SINH(N).

Syntax for the SINH function in Oracle SQL / PLSQL is:

SELECT SINH(radian)
FROM table_name;

Let’s take an example for understanding:
Suppose we want to get the hyperbolic sine of 30 degree.

SELECT SINH(30*22/(7*180))
FROM dual;

The output of the above statement will be:

SINH(30*22/(7*180))
0.548093789242759

Notice that we have changed 30 degrees into radians while passing it in SINH function.


Filed Under: function Tagged With: how to use sinh function in oracle database query, how to use sinh function in oracle plsql, how to use sinh function in oracle sql, sinh function in oracle plsql, sinh function in oracle sql, SINHPLSQL, syntax and example of sinh function in oracle database query, syntax and example of sinh function in oracle plsql, syntax and example of sinh function in oracle sql, using sinh function in oracle database query, using sinh function in oracle plsql, using sinh function in oracle sql

SIN Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The SIN function in Oracle SQL / PLSQL is used to calculate sine of numeric value where numeric value is provided in radian format.

It’s mathematically equal to SIN(N).

Syntax for the SIN function in Oracle SQL / PLSQL is:

SELECT SIN(radian)
FROM table_name;

Let’s take an example for understanding:

Suppose we want to get the sine of 30 degree.

SELECT SIN(30*22/(7*180))
FROM dual;

The output of the above statement will be:

SIN(30*22/(7*180))
0.50018250219967

Notice that we have changed 30 degrees into radians while passing it in SIN function.


Filed Under: function Tagged With: how to use sin function in oracle database query, how to use sin function in oracle plsql, how to use sin function in oracle sql, sin function in oracle plsql, sin function in oracle sql, SINPLSQL, syntax and example of sin function in oracle database query, syntax and example of sin function in oracle plsql, syntax and example of sin function in oracle sql, using sin function in oracle database query, using sin function in oracle plsql, using sin function in oracle sql

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 48
  • Page 49
  • Page 50
  • Page 51
  • Page 52
  • Interim pages omitted …
  • Page 76
  • Go to Next Page »

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