Calling Sytem Setting in Correspondence

In email Correspondence rules, links are usually added by placing the URL into a property and then referencing that property using Insert Property. This works, but when multiple links are required, it leads to unnecessary property creation and additional rule maintenance.

To keep the implementation clean and avoid creating multiple properties, you can directly reference a DSS (Dynamic System Setting) or RSS (Rule System Setting) inside the Correspondence rule.

This allows you to centralize link management and reuse URLs across multiple templates without cluttering your data model.

<a href=“<%=String.valueOf(pega_rules_utilities.getRuleSystemSetting(“PegaKART”,“EnvURL”))%>”>Click Here

This method provides the following benefits:

  • No need to create additional properties just to store links

  • Easier maintenance (update only the DSS/RSS value)

  • Cleaner and more scalable Correspondence templates

  • Consistent behavior across all channels using the same URL

@KarthickM17452834 Indeed a useful one