Create and list the data
Put some data to file:
JED F.SAMPLE REC1
0001 Field one
0002 Field two
0003 Field three
Press Esc; then type FI to save the record.
List file contents:
LIST F.SAMPLE
F.SAMPLE......
REC1
1 Records Listed
No dictionary; we see only @ID. Raw output:
CT F.SAMPLE
REC1
001 Field one
002 Field two
003 Field three
As an alternative, we can use standard correlatives:
LIST F.SAMPLE ∗A1 ∗A2 ∗A3
F.SAMPLE...... ∗A1........... ∗A2........... ∗A3...........
REC1 Field one Field two Field three
Last update: Sat, 16 Jul 2022 15:34