Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

$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.
1<apex:pageBlock rendered="{!$Permission.seeExecutiveData}">
2   <!-- Executive Data Here -->
3</apex:pageBlock>

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

Note