Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
Malcon,
All of that data is available via the SFSUsersBO, via the us_XXX properties. If you need this data, just load the BO for a user via the FillByPrimaryKey() method then you will have access to it (there are several other FillBy methods too).
Also, the user user PK (use this to load SFSUsersBO for a user), user name and flag if the user is an administrator are available for the current user (SecurityBasics.CurrentUser), via the UserPK, UserName and IsAdministrator properties, respectively.
As Trent said, I'd be careful about getting this data directly from the us_data field. If SF changes anything within this table (like the structure or how they encrypt it), for whatever reason, any code you have will likely break. Be sure to comment these sort of changes so you can find them easily!
|