In this post we will see the architecture behind queue processor rule and all its configurations and usages. This tutorial is implemented using Pega personal edition 8.4, but the core concepts remain the same in higher versions as well What is a queue processor rule? – Used for background processing that makes use of queue […]
Requestor types in Pega
In this blog article, we will see about different requestor types in Pega. This article is implemented using Pega Infinity ’24 version. First, let’s start with understanding the term – Requestor. What is a requestor? From the name, we can say that it can be any people or object which requests for a service. From […]
Property Optimization – Expose Columns in Pega
In this blog article we will check the different ways through which we can expose properties in database table. First let’s see how the data (for example – Case data) gets saved into database table. We know Pega uses properties to hold the data. Say for example, I have created a new amazon sales case, […]
Docker – Part 2 – Setup Docker Desktop in Windows
In this blog article, we will see how we can set up the docker desktop in Windows 10 home edition. You can visit previous blog article on containerisation basics. Tip: Since copy/paste is not possible in this article, I documented the shell commands in the following git repository, you can easily copy/paste from there. https://github.com/Prem1991/myknowpega/tree/master/docker […]
Configure Calendar instance in Pega
In this blog article, we will see how we can configure a calendar instance and use it in a pega application. Business Requirment: Say, ABC banking organization uses Pega CRM application to treat the customers. Based on the customer needs, banking employees (application users) start creating the appropriate case types. Case types may have different […]
Loggers and Log Categories in Pega
In this blog article, we will see how to add log levels for different loggers and also group the loggers into a log category for easy maintenance purposes. Let’s start with the logging framework. What is a logging framework? – Logging framework is a utility designed to standardize the process of logging in the application. […]
Libraries and Functions – Usage and Configurations
In this blog article, we will create a new library and a new function rule. We will also see different ways of referencing function rule. Before continuing, it is highly recommended to cover the basics of functions and libraries from another blog article. Requirement: For this tutorial, I am going to use a simple Java […]
Libraries and Functions – Fundamentals
In this blog article, we will talk about the basics of functions and libraries in pega. Functions in programming language – Function is a block of reusable code that is used to perform a single related operation/action. – Functions usually accept input data, process the data and then it may return a result. – Different […]
Application settings – Usage & Configurations in Pega
In this blog article, we will see how we can use the application settings rule in pega. Application settings rule was introduced in Pega 8.3 version. In the previous releases, application settings were called the rule system settings. Please visit my previous blog article, to understand more about the system settings. What is an Application […]
Add JNDI Datasource for External Database Connection
In this blog article, we will see how we can add a JNDI datasource and also create a new Pega database instance using the JNDI datasource to connect to the external database. This tutorial is demonstrated using Pega 8.5.1 personal edition. Okay, first let’s look into the out-of-the-box pega database instances. Records -> SysAdmin -> […]