Kbase P204: 4GL/ABL: How to freeze and hide database tables?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  18/09/2009 |
|
Status: Verified
GOAL:
4GL/ABL: How to freeze and hide database tables?
GOAL:
How to set the FROZEN and the HIDDEN attributes of a database table?
GOAL:
How to un-freeze and show all frozen and hidden user defined database tables?
FACT(s) (Environment):
All Supported Operating Systems
Progress 9.x
OpenEdge 10.x
FIX:
The following code unfreezes and shows frozen and hidden user defined database tables:
FOR EACH _file WHERE _Tbl-Type ="T" AND _frozen = YES AND _hidden = YES:
ASSIGN
_frozen = NO
_hidden = NO.
END.