Consultor Eletrônico



Kbase P107065: How to list all users defined in a database using 4GL
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   08/08/2005
Status: Unverified

GOAL:

How to list all users defined in a database using 4GL

GOAL:

Which is the internal system table that holds users?

GOAL:

What is the name of the user table?

FIX:

Use _user table.
The following code ilustrates it's use:
FOR EACH _user:
DISP _userid _user-name.
END.