$Permission

A global merge field type to use when referencing information about the current user’s custom permission access. Use permission merge fields to reference information about the user’s current access to any of your organization’s custom permissions.

Usage

  1. Select the field type: $Permission.
  2. Select a merge field such as $Permission.customPermissionName.

Example

To have a pageblock only appear for users that have the custom permission seeExecutiveData, use the following.
<apex:pageBlock rendered="{!$Permission.canSeeExecutiveData}">
   <!-- Executive Data Here -->
</apex:pageBlock>
Note

Note

$Permission appears only if custom permissions have been created in your organization. For more information, see “Custom Permissions” in the Salesforce help.

Previous
Next