GetProfileAttr Method for an Application
The GetProfileAttr method returns the name of an attribute in a user profile. For more information, see SetProfileAttr Method for an Application.
Format
Application.GetProfileAttr(name)
The following table describes the arguments for the GetProfileAttr method.
Argument | Description |
---|---|
name |
A string that indicates the name of the attribute. |
Usage
For more information, see Using System Fields with the SetProfileAttr Method in SetProfileAttr Method for an Application.
Used With
Browser Script, COM Data Control, COM Data Server, Siebel Java Data Bean, Mobile Web Client Automation Server, Server Script
Examples
The following example is in Browser Script:
var myprofile = theApplication().GetProfileAttr("Hobby");
The following example is in Siebel eScript:
var myprofile = TheApplication().GetProfileAttr("Hobby");
The following example is in Siebel VB:
Dim myprofile As String
myprofile = TheApplication.GetProfileAttr("Hobby")