Claus Lavendt Posted January 27, 2005 Posted January 27, 2005 Hi I want to make a list on every active users on a given file. The function should probably be something like: Get( ActiveAccounts) But I can't find it. I don't want to make a workaround. (Set value in field on login e.g.) The FM Server retains a list on current users. It's a similar list I'm looking for. Anyone got a clue ? ;-) Claus
Ender Posted January 27, 2005 Posted January 27, 2005 No, there is no such function. I suppose it's a security risk. I think your best bet is to have a User table where each record is one User, probably with the User's Privilege Set information. The Privilege Set info helps if you are doing automated account maintenance. Anyway, if you have that table, you can create a value list of the account names, and from that, create a calc (or custom function) to return the value list items of account names: GetAccountNames() = ValueListItems( get( FileName ); "Accounts Value List" )
Recommended Posts
This topic is 7243 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now