Obviously you are just wetting your feet in the Multi Value (little)
world.
To get the very basics I would suggest reading
http://www.jes.com/pb/
To answer your question now.
Do:
LIST DICT MY-FILE BY *A1 *A1
Translation:
DICT means dictionary portion.
Each dictionary record has a bunch of fields that can be addressed as
*A1, *A2, *A3 etc. where the suffix is the field number.
*A1 in a dictionary record holds the field number in the data record -
clear as mud but see the example below.
At typical file has a data section made of records that are similar in
structure.
The structure is defined in the dictionary section.
If you want to know the meaning of a specific data field in the data
section, you look in the dictionary section for the description of the
field.
The LIST command above will show 2 columns, one with the name of the
data field and the other one with the field number.
You'll see that in some cases you have multiple descriptions for the
same field in the file but thats beyond this introduction.
Let's say you find in the dictionary an item named CUSTOMER with a
field number of 27.
Now you can see the customers in MY-FILE issuing the following
command.
LIST MY-FILE CUSTOMER
or
LIST MY-FILE *A27
The second form will show the actual data in the file which may be the
customer or may be just a link to another file etc.
Hope it helps,
Lucian