The QUALIFY statement puts the tablename before each field that is indicated in the table when loaded.
For instanc
qualify *;
turns qualification on for all field names.
qualify "*ID";
turns qualification on for all field names ending with ID
qualify "NR*", A;
turns qualification on for A and all field names beginning with NR.
The UNQUALIFY statement does the opposite.
unqualify *; turns qualification off for all field names.
unqualify '%*_Key'; turns qualification off for all fields that start with a % and end with '_Key'
The last UNQUALIFY statement is often used to denote key fields.
QUALIFY *; UNQUALIFY '%*_Key'; Employee: LOAD id AS %EmployeeId_Key, // the use of AS here is giving the field 'id' an alias named %EmployeeId_Key name, address, city, ..... FROM Employee.qvd (qvd);