A script-enabled browser is required for this page to function properly.

Command Text Property

Description

Specifies menu item command text for the current menu item. Valid values depend on the current setting of the menu item Command Type property. For instance, when the command type is MENU, valid command text is the name of a submenu in the menu module. When the command type is PL/SQL, valid command text is any valid PL/SQL statements.

Applies to menu item

Set Oracle Forms

Required/Optional Required for all command types except NULL.

Valid values Null, PL/SQL, Menu

Usage Notes

Null, PL/SQL, and Menu are the only valid values for Oracle Oracle Forms. Previous versions allowed the use of Plus, Form, and Macro, which will be automatically converted, where <old_code> is the value of the Command Text property before the upgrade. The replacement PL/SQL code will be commented out to allow developers to replace their previous code with new PL/SQL code.

For Plus, the code is upgraded as follows:

/* HOST(‘plus80 <old_code> ’); */ null;

For Form, the code is upgraded as follows:

/* CALL_FORM(<old_code>); */ null;

For Macro, the code is upgraded as follows:

/* MACRO: <old_code> ; */ null;