I've got a file with a secondary key of:
PO_Date/d + PO_Num + Cust + ShipTo + Seq
I can read directly through the file with no problems. But if I want to grab the first entry in a group and skip the rest of the Seq values, I issue:
read (F,key=PO_Date$:PO_Num$:Cust$:ShipTo$:$FF$)
It always goes to the end of file at this point. The file is created properly, with the first field descending and the remaining ascending. Am I missing something?
Thanks, all!
Have you tried including the kno= option in the READ to make sure the system is using the correct key?
I already found the problem and corrected it. Thanks.