APPLICATION DESIGN
If the tabular text file uses a delimiter character to separate columns of data, you must use the UNTIL keyword to specify the delimiter as part of each field definition.
For example, if the source data is delimited by commas, as in:
FirstName: UNTIL ",";
Company: UNTIL ",";
Phone: UNTIL "";
Specifying the start, end, and width of a fixed-width column
If the tabular text file contains fixed-width columns of data, you use the START keyword along with either the END or WIDTH keyword to define each field.
For example, if the source data contains a LastName field that is 12 characters wide and the view contains a field named LastName, the COL file must contain the following column definition:
or
LastName: Start 01 WIDTH 12
The following lines of a COL file give two sets of instructions:
FirstName: TYPE TEXT START 13 END 20
Specifying the header, footer, and lines per page
The HEADER, FOOTER, and LINESPERPAGE keywords tell IBMR LotusR NotesR to ignore headers and footers during importing. The number of lines in the imported document are calculated as:
See Also