Converts the current value of a check box, radio group, or list item to the value associated with the current check box state (Checked/Unchecked), or with the current radio group button or list item element.
Built-in Type restricted procedure
Enter Query Mode yes
If the item is not a check box, radio group, or list item, Oracle Forms
returns error FRM-41026: Item does not understand operation. To avoid this error,
determine the item type by issuing a call to GET_ITEM_PROPERTY(item_name, ITEM_TYPE)
before calling CONVERT_OTHER_VALUE.
/*
** Built-in: CONVERT_OTHER_VALUE
** Example: Ensure that a particular checkbox's value
** represents either the checked or unchecked
** value before updating the record.
** Trigger: Pre-Update
*/
BEGIN
Convert_Other_Value('Emp.Marital_Status');
END;