Kbase 18298: Where Are PROGRESS Metaschema Tables Documented?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/03/2004 |
|
Status: Unverified
GOAL:
Where Are PROGRESS Metaschema Tables Documented?
FIX:
Sometimes developers want to know about the metaschema tables: _file _field, among others.
This solution describes where you can find the documentation for the PROGRESS Metaschema tables in V6, V7 and V8.
You can view the Metaschema tables enabling in the GUI Data Dictionary View/Show Hidden Tables. In the character mode one just type the name of the table when a table name is prompted.
The following sample program shows all the schema tables and their fields:
FOR EACH _file WHERE _file-name BEGINS "_":
DISPLAY _file-name.
FOR EACH _field OF _file:
DISPLAY _field-name.
END.
END.