GetUserProfile
Function that returns the profile name of the user in the parameter.
Syntax:
String GetUserProfile(string
user);
Return the profile name of the user.
Params:
String user: A String parameter containing the name of the user.
Return:
Return a String value with the profile name of the user.
Example:
Get the profile name of the user "Operator1" and set to the "Profile" tag.
@Profile = SVSecurity.GetUserProfile("Operator1");
|