R
Rob Fitzpatrick
Guest
This error means that he compiler can't uniquely identify a table name in the code against the tables in the schema of the connected databases. So if you have: FOR EACH customer: DISPLAY customer. END. Then either there is more than one "customer" table in those databases, or there is no "customer" table, or the abbreviation "customer" may match more than one table name, e.g. customera and customerb.
Continue reading...
Continue reading...