Kbase 19536: Checking Table Security Settings Using the Metaschema Tables
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  18/02/2000 |
|
How to Check Table Security Settings Using the Metaschema Tables
Run the following code to check your Table security settings:
FOR EACH _File:
DISPLAY _File-Name _Can-Read _Can-Write _Can-Create _Can-Delete
with use-text.
END.
FOR EACH _Field:
DISPLAY _Field-Name _Can-Read _Can-Write
with use-text.
END.