Jump to content

User list on current users


This topic is 7000 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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

Link to comment
Share on other sites

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" )

Link to comment
Share on other sites

This topic is 7000 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.