Question


Student
IN
Last activity: 2 Apr 2025 2:57 EDT
What is Global resource settings(GRS)
What is Global resource settings(GRS)? where do we use, what is the purpose?
-
Reply
-
Maarten Veger -
Share this page Facebook Twitter LinkedIn Email Copying... Copied!
Accepted Solution
Updated: 2 Apr 2025 2:57 EDT


Eclatprime Digital Private Limited
AU
Hi @Satya K,
When migrating applications from one server or environment to another, you may encounter changes in the references to external systems that those applications need to connect to. These references can include important elements like endpoint URLs and JNDI (Java Naming and Directory Interface) servers. To simplify the management of these connections and avoid hard coding values directly into your application, you can utilize the Global Resource Settings feature.
Here’s a detailed breakdown of the steps to effectively implement this feature:
1. **Create a Class for Environment Properties:** Begin by developing a dedicated class that will store all the references needed for external systems. This class will serve as a centralized location for what are known as environment properties, ensuring that your application can easily access these values.
Hi @Satya K,
When migrating applications from one server or environment to another, you may encounter changes in the references to external systems that those applications need to connect to. These references can include important elements like endpoint URLs and JNDI (Java Naming and Directory Interface) servers. To simplify the management of these connections and avoid hard coding values directly into your application, you can utilize the Global Resource Settings feature.
Here’s a detailed breakdown of the steps to effectively implement this feature:
1. **Create a Class for Environment Properties:** Begin by developing a dedicated class that will store all the references needed for external systems. This class will serve as a centralized location for what are known as environment properties, ensuring that your application can easily access these values.
2. **Define Individual Properties:** For each external system that your application connects to, you need to create a specific property within the class. These properties represent the various environment properties required for your application to function correctly. PRPC (Pega Rules Process Commander) already provides standard embedded classes along with default properties for each rule form that support the Global Resource Settings syntax. For guidance on how to effectively use these embedded classes to create your properties, refer to the PDN article 24171, titled "How to Reduce Maintenance of Service Rules and Listeners with Global Resource Settings."
3. **Assign Values to Environment Properties:** To ensure flexibility and ease of maintenance, it is recommended to utilize a data transform for setting the values of these environment properties. A data transform allows you to define how data should be handled and modified, making it easier to manage configuration changes.
4. **Create a Declare Page Rule:** Next, you will need to establish a declare page rule that references the class you created in Step 1 and links it to the data transform you set up in Step 3. This step effectively associates the external references with their corresponding values.
5. **Update the LoadResourceSettings Activity:** Modify the LoadResourceSettings activity in your workflow to load the data transform you created. This ensures that, upon execution, your application pulls in the latest environment property settings.
6. **Utilize Resource Settings Syntax in Code:** Whenever you need to reference external systems within your application, make sure to use the Resource Settings syntax, formatted as (=.PageName.PropertyName). This syntax allows for dynamic retrieval of the property values you've defined, ensuring your application remains flexible and adaptable to changes in the environment.
By following these detailed steps, you can efficiently manage and configure references to external systems during your application migration process, greatly enhancing the maintainability and adaptability of your applications.
The basic steps to utilize this feature are:
- Create a class to hold the references to external systems (also known as environment properties).
- Create a property for each reference to an external system. These are the environment properties. PRPC includes standard embedded classes and default properties for each rule form that supports the Global Resource Settings syntax. For information on how to use these embedded classes to create properties, see PDN article 24171 How to reduce maintenance of service rules and listeners with Global Resource Settings.
- Set the values of the environment properties. As a best practice, use a data transform to set these values.
- Create a declare page rule that references the class from Step 1 and the data transform from Step 3.
- Update the LoadResourceSettings activity to load the data transform that you created in Step 3.
- Use the Resource Settings syntax (=.PageName.PropertyName) when entering references to external systems.
Thanks
Regards
Raja
Updated: 1 Apr 2025 1:33 EDT


Rulesstack Private Limited
IN
Hi @Satya K,
Go through the link below. Hope it helps you.
Global resource settings | Pega Academy
Regards,
Ajay kumar
Accepted Solution
Updated: 2 Apr 2025 2:57 EDT


Eclatprime Digital Private Limited
AU
Hi @Satya K,
When migrating applications from one server or environment to another, you may encounter changes in the references to external systems that those applications need to connect to. These references can include important elements like endpoint URLs and JNDI (Java Naming and Directory Interface) servers. To simplify the management of these connections and avoid hard coding values directly into your application, you can utilize the Global Resource Settings feature.
Here’s a detailed breakdown of the steps to effectively implement this feature:
1. **Create a Class for Environment Properties:** Begin by developing a dedicated class that will store all the references needed for external systems. This class will serve as a centralized location for what are known as environment properties, ensuring that your application can easily access these values.
Hi @Satya K,
When migrating applications from one server or environment to another, you may encounter changes in the references to external systems that those applications need to connect to. These references can include important elements like endpoint URLs and JNDI (Java Naming and Directory Interface) servers. To simplify the management of these connections and avoid hard coding values directly into your application, you can utilize the Global Resource Settings feature.
Here’s a detailed breakdown of the steps to effectively implement this feature:
1. **Create a Class for Environment Properties:** Begin by developing a dedicated class that will store all the references needed for external systems. This class will serve as a centralized location for what are known as environment properties, ensuring that your application can easily access these values.
2. **Define Individual Properties:** For each external system that your application connects to, you need to create a specific property within the class. These properties represent the various environment properties required for your application to function correctly. PRPC (Pega Rules Process Commander) already provides standard embedded classes along with default properties for each rule form that support the Global Resource Settings syntax. For guidance on how to effectively use these embedded classes to create your properties, refer to the PDN article 24171, titled "How to Reduce Maintenance of Service Rules and Listeners with Global Resource Settings."
3. **Assign Values to Environment Properties:** To ensure flexibility and ease of maintenance, it is recommended to utilize a data transform for setting the values of these environment properties. A data transform allows you to define how data should be handled and modified, making it easier to manage configuration changes.
4. **Create a Declare Page Rule:** Next, you will need to establish a declare page rule that references the class you created in Step 1 and links it to the data transform you set up in Step 3. This step effectively associates the external references with their corresponding values.
5. **Update the LoadResourceSettings Activity:** Modify the LoadResourceSettings activity in your workflow to load the data transform you created. This ensures that, upon execution, your application pulls in the latest environment property settings.
6. **Utilize Resource Settings Syntax in Code:** Whenever you need to reference external systems within your application, make sure to use the Resource Settings syntax, formatted as (=.PageName.PropertyName). This syntax allows for dynamic retrieval of the property values you've defined, ensuring your application remains flexible and adaptable to changes in the environment.
By following these detailed steps, you can efficiently manage and configure references to external systems during your application migration process, greatly enhancing the maintainability and adaptability of your applications.
The basic steps to utilize this feature are:
- Create a class to hold the references to external systems (also known as environment properties).
- Create a property for each reference to an external system. These are the environment properties. PRPC includes standard embedded classes and default properties for each rule form that supports the Global Resource Settings syntax. For information on how to use these embedded classes to create properties, see PDN article 24171 How to reduce maintenance of service rules and listeners with Global Resource Settings.
- Set the values of the environment properties. As a best practice, use a data transform to set these values.
- Create a declare page rule that references the class from Step 1 and the data transform from Step 3.
- Update the LoadResourceSettings activity to load the data transform that you created in Step 3.
- Use the Resource Settings syntax (=.PageName.PropertyName) when entering references to external systems.
Thanks
Regards
Raja


Rulesstack Private Limited
IN
Hi @Satya K
In Pega, a Global Resource Setting (GRS) is a property value on a declarative page that allows you to define settings that can vary depending on the environment (like development, staging, or production) without requiring updates to integration rules or data instances.
For more info go through the below document to implement GRS.
Regards,
Chandra Kanth.


Rulesstack Private Limited
IN
Hi @Satya K,
Global Resource Settings (GRS) is a mechanism in Pega that allows dynamic configuration of system settings, such as URLs, authentication credentials, timeouts, and other environment-specific parameters. Instead of hardcoding values, GRS enables referencing environment-specific properties, making applications more flexible and easier to maintain.
Where Do We Use GRS? GRS is commonly used in: 1. Integration Rules – Connectors (SOAP, REST, Database, etc.) to dynamically configure endpoints, authentication, and timeouts. 2. Data Pages – To parameterize external data source connections. 3. Report Definitions – For setting dynamic database configurations. 4. Decision Tables & Strategies– To configure dynamic decision-making rules. 5. Correspondences & Notifications– To fetch email server settings dynamically.
Purpose of GRS: - Environment-Specific Configurations – Allows different values for Dev, Test, and Production without code changes. - Improved Maintainability – Reduces the need to modify rules when values change. - Security Enhancement – Prevents hardcoding sensitive information like credentials. - Increased Reusability – Enables a single rule to work across multiple environments.