Try OpenEdge Now
skip to main content
Object-oriented Programming
Getting Started with Classes, Interfaces, and Objects : Using the CLASS construct : Namespaces for naming class members : Fields
 
Fields
Whenever a database table or temp-table is in scope, ABL allows unqualified access to the fields of the table, provided there is no ambiguity. For example, if the client session is connected to the sports2000 database, the application has access to the Customer table fields when the table reference is in scope:
FIND FIRST Customer NO-LOCK.
MESSAGE Name.
These field references overlap the variable/property/event namespace.