Using the record tagging example I am unable to determine how to process the array of RecNo() within DCTAGS.
I would like to obtain my index key from the database and process using this new array (aConsolidate).
As Always, I Appreciate any and all assistance.
DCTAGS Array:
{{"PARKMST", {100,201,305,414,575,603,717,890}}}
Code: Select all
x := 1
aConsolidate := {}
DO WHILE x <= Len(DcTags)
SELECT ParkMst
ParkMst->(DbGoTo(DcTags[1,x]))
aConsolidate[x] := ParkMst->T_Number
Aadd(aConsolidate, DcTags[1,x])
x++
ENDDO