Oracle® Forms Upgrading Oracle Forms 6i to Oracle Forms 11g 11g Release 1 (11.1.1) Part Number E10394-01 |
|
|
View PDF |
In order to streamline the tools available and simplify the development process for building Forms applications for the Web, properties that are not applicable to Web deployment have been removed.
Many properties, including those associated with character mode and menus, have been removed. When you open a form that contains these properties, the properties are ignored and do not appear in Oracle Forms. Except as noted, code that attempts to use these properties at run time fails. Refer to Table 6-1, "Obsolete Properties" for more information.
Obsolete Property | Applies to | Upgrade Notes |
---|---|---|
items, canvases, and so on. |
||
menu items |
Note: This property is partially obsolete. The only valid values are Null, PL/SQL, and Menu. If your menu module uses Plus, Form, or Macro, which are no longer valid values, the values are replaced by the following PL/SQL code in the Command Text property: Plus: /* HOST('sqlplus <old_code>'); */ null; Form: /* CALL_FORM(<old_code>); */ null; Macro: /* MACRO: <old_code> ; */ null; where <old_code> is the value of the Command Text property before upgrade. The replacement PL/SQL code is commented out so that you can replace the original code with new PL/SQL code. |
|
blocks |
||
items |
Use a format mask with the relevant number of placeholders to limit or control the length of data entered for an item. |
|
menu items |
||
blocks |
||
LOVs |
Because all LOVs are now based on record groups, this property is obsolete. |
|
forms |
A value of Database is no longer valid. File is the only valid value for this property, which indicates that at run time, Forms uses the normal search path to locate the MMX file. |
|
forms |
Ignored at runtime. 5.0 behavior is always used. (See the Forms Developer online help for a description of run-time behavior.) To allow WHEN-VALIDATE-ITEM to run for NULL items, specify 4.5 for the DEFER_REQUIRED_ENFORCEMENT property. (If your Forms application used "4.5" as the Runtime Compatibility Mode property setting, the Oracle Forms Migration Assistant automatically sets the Defer Required Enforcement property to "4.5".) |
|
triggers |
All triggers are now PL/SQL triggers. |
|
items, canvases, and so on. |