Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
You can use the SFSUsersBO to retrieve the value. The SecurityBasics.CurrentUser.UserPK will give you the primary key for the user and you can create a new SFSUsersBO and FillByPrimaryKey() to get the user record. The password is then accessible through the PasswordPlainText property. Of course, once you have the customer record in the SFSUsersBO, you could then just call LoggedInUser.SetLoggedOnUser() and just pass it the SFSUsersBO with the record... this will cause the permissions to be retrieved and the CurrentUser object (and therefore the permissions) to be refreshed; so you really don't need the password once you have the record.
|