Promoted (Profile) Property

Version: Available from runtime version 1.0.

For profiles the Promoted property specifies whether or not the profile is available in the Role Explorer to the user. Promoted can also be set on Page Actions, see Promoted (Actions) Property.

Applies to

  • Profiles

Property Value

True if the profile is available from the Role Explorer in the UI; otherwise, false. The default is false.

Example

The following code illustrates how to set the Promoted property.

profile MyProfile
{ 
    Description = 'Some internal comment that only the Dev can see'; 
    Caption = 'My User-friendly Name'; 
    ProfileDescription = 'A detailed description of who is this profile for, why/how to use it (etc)' 
    RoleCenter = MyRoleCenter; 
    Enabled = true; 
    Promoted = true; 
    Customizations = MyCustomization;
} 

See Also

Properties
Promoted (Actions) Property