All buffer references (including database tables, temp-tables, and buffers) must be fully qualified.

Noncompliant Code Example

 /* On sports2000 database */
 FIND FIRST Customer.
 DISPLAY CustNum.

Compliant Solution

 FIND FIRST Customer.
 DISPLAY Customer.CustNum.