This group of statements defines the selections under
Data_Entry
on
the menu bar. The ITEM statements specify that
For Dept01
and
For Dept02
appear
under
Data_Entry
. The value of the SELECTION= option equates to a subsequent
SELECTION statement, which contains the string of commands that are actually
submitted. The value of the DIALOG= option equates to a subsequent DIALOG
statement, which describes the dialog box that appears when this item is selected.
menu deptsde;
item 'For Dept01' selection=de1;
item 'For Dept02' selection=de2;
item 'Other Departments' dialog=deother;