Kbase 33965: How to disallow blank user from 4GL
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/05/1998 |
|
Solution ID: P3965
GOAL:
How to disallow blank user from 4GL
FACT(s) (Environment):
Progress 9.1C
FIX:
Before running this code, ensure you have defined at least one user in your database.
FOR EACH _file:
ASSIGN _can-create = "!,*"
_can-write = "!,*"
_can-read = "!,*"
_can-delete = "!,*".
END.