Oracle Discoverer EUL Command Line for Java

OracleAS Discoverer is Oracle’s award winning, easy-to-use ad-hoc query, reporting and Web publishing tool. There are two aspects to any Discoverer system:
• Creating and maintaining an End User Layer (EUL)
• Generating ad-hoc queries, reports and publishing data
Read more

Oracle Forms / Java tutorial How to build a new JavaBean

The purpose of this tutorial is to demonstrate how to build and integrate a new JavaBean in an Oracle Forms application

In this tutorial we are going to develop a JavaBean that retrieved the background color of a Forms canvas. But, why not simply use the Get_Canvas_Property( ‘canvas_name’, BACKGROUND_COLOR ) built-in ? The reason why we cannot use the Forms GET_Canvas_Property built-in is that it returns null if the background color is not explicitly set. The trick to solve this problem is thus to use a Forms bean area item and locate in on the Forms canvas. The background color property is then read from JavaBean container’s parent container
Read more