Change Page Text for Specific Benefits Plans

To use text that's more meaningful, you can change page text for specific benefits plans and leave it unchanged for all other plans.

Before you start

Create a Sandbox and Make It Active

Here's what to do

  1. Go to Navigator > Configuration > Sandboxes.
  2. Enter your sandbox.
  3. Go to and open the page with the label you want to customization, such as My Benefits.
  4. On the Settings and Actions menu, click Edit Pages.
  5. Confirm that the edit page header has Edit Layer: Site - SITE.
  6. On the Select tab, click the text you want to customize, such as Primary.
  7. On the menu that appears above the text you clicked, click Edit Component.
  8. On the Component Properties dialog box, in the Value field, select Expression Builder.
  9. On the Expression Editor dialog box, in the Type a value or expression field, enter the expression. For example, this expression changes the Primary label to Employee Rate for the FLXU Vision plan. All other plans still show Primary.
    #{epe.PlanName == 'FLXU Vision' ? 'Employee Rate' : (bindings.PrmryRtLabel.inputValue)}

    Benefits service center and self-service pages both include the Enrollment section. You can use an expression similar to the preceding expression if you want the changes to apply to the Enrollment section of all pages. Or you can include an equals (eq) or not equal to (ne) restriction. Here's the same example expression, but restricted to only the benefits service center pages:

    #{epe.PlanName == 'FLXU Vision' and pageFlowScope.pCalledFrom eq 'BSC'? 'Employee Rate' : (bindings.PrmryRtLabel.inputValue)}

    And here's the same example expression, but restricted to only benefits self-service pages:

    #{epe.PlanName == 'FLXU Vision' and pageFlowScope.pCalledFrom ne 'BSC'? 'Employee Rate' : (bindings.PrmryRtLabel.inputValue)}
  10. Click OK.
  11. On the Component Properties dialog box, click Apply.
  12. Click OK.
  13. To render your changes, on the page, click Close.
  14. To verify your changes, on the Sandbox Mode: Edit menu, select Preview as if Published (Context: All).
  15. To publish your changes, on the <YourSandboxName> menu, select Publish.