Form specification files / Form file structure |
The INSTRUCTIONS section can specify screen arrays, non-default screen records and field delimiters.
INSTRUCTIONS { screen-record-defintion [;...] } [ DELIMITERS AB [;] ] [ DEFAULT SAMPLE = "string" ] [END]
The INSTRUCTIONS section is optional. If present, it must appear after the ATTRIBUTES section.
The END keyword is optional.
This section is mainly used to define screen records, to group fields using tables, tree views, scrollgrids or traditional static field arrays.
A screen record is a named group of form fields.
See Screen records for more details.
Use the DELIMITER keyword to specify the characters to be displayed as field delimiters on the screen.
This option is especially used for TUI mode applications.
DEFAULT SAMPLE = "MMM"See SAMPLE attribute for more details.
INSTRUCTIONS SCREEN RECORD s_items[10] ( stock.*, items.quantity, FORMONLY.total_price ) DELIMITERS "[]" END