Posts

Featured post

Pega Constellation Data Modeling: Step-by-Step Guide

Image
  How to Build a Customer Data Model in Pega Constellation (Step-by-Step Guide) FILES: Data model design Countries Catalog In this guide, we’ll walk through how to design and build a complete Customer Data Model in Pega Constellation . You’ll learn how to: Create data objects from scratch Establish relationships between objects (embedded and referenced data) Upload external catalogs (CSV) into Pega Visualize the full data model Reference the data model inside a case type This tutorial mirrors exactly what was built in the video—perfect for beginners learning Pega Constellation’s data model capabilities. 1. Designing the Data Model Before using App Studio, it’s important to outline the structure. Our Customer object will contain: Customer Fields Name Email Phone (list of phone records) Address (single address record) Products (list) Nationality (reference to a Country catalog) Supporting Data Objects To support the customer entity, we...

How to Create a Bank Application Using Pega Blueprint (Step-by-Step Guide)

Image
  How to Create a bank Application Using Pega Blueprint (Step-by-Step Guide) In this tutorial, we’ll walk through how to create a complete pay (KYC onboarding) application using Pega Blueprint , the new automation tool that allows you to generate case types, data models, personas, and application structure with minimal manual setup. Blueprint drastically reduces the time required to build an application from scratch, giving you a ready-to-customize foundation aligned with your business needs. 1. Accessing the Blueprint Dashboard To get started, navigate to: mega.com/blueprint/dashboard Log in with your account, and you’ll see the Blueprint dashboard. Click Create Blueprint to begin. 2. Selecting Templates and Application Context Blueprint provides a library of templates according to the industry and type of application you're building. Industry: Select Banking Click Next Sub-Industry: Choose Retail Banking Department: Select Onboarding New Customers Bl...

Pega For Beginners - How to create your first application in pega in 5 minutes

Image
 Hi there, you will learn today how to create a new application in Pega. But first of all, what is Pega:  Pega is a low-code software platform that helps organizations build applications to automate business processes, manage workflows, and make smart decisions using AI and rules. It’s widely used in industries such as banking, insurance, healthcare, and government to enhance efficiency and improve the customer experience. Saying that, to create the application, you can do it from Dev Studio following these steps: Log in to your Pega environment and click on Application and then New Application. It will appear showing the option to build from scratch or find an application type that Pega has already OOTB. If we click on search all types, it will show all the applications already created in Pega or the OOTB application that has all the assets predefined. Since im working with the personal edition, it doesn't show all the preloaded applications, so we are going with the option t...

Step by step How to create a SOAP Connector in pega

Image
Hi, in this tutorial, you will learn how to create a SOAP in Pega. To do so, we are going to use the service creation wizard. In dev studio, click on Configure > Integration > Create SOAP Integration  . It will open up the wizard. The first step is to provide the WSDL URL, which is the address where the XML document describing a web service can be accessed.  For this example, we are going to use the following WSDL: http://www.dneonline.com/calculator.asmx?WSDL. We click on next, and it will show the service name, port name, and endpoint. It will give us the option to test and select the operation name. When we finish testing, we click on next. Then it will show the integration layer, it will show the name of the integration, the class, and the context there, where we can define the class where this integration will be created, as well as the rulesets. We can click on preview records to check the rules that the wizard will be creating for the integration. It will show all...

How to add an external data source creating a rest connector in pega

Image
In Pega you can create a data type as an external system of records. We can accomplish that using the wizard of Pega. This is the best way to create an external data source, because the wizard creates the connector, the data object, and the data page with all the configurations to make the connection to the external system of records. For this example, we are going to use a free api to source a list of the countries of the world. You can watch step by step the creation of the data source in the following video .

Pega Connectors

  Connector: A connector defines an outbound request to the service, and a connector establishes a connection to an external system by using common HTTP methods such as SOAP(Simple Object Access Protocol) or REST(Representational State Transfer). Connectors pass application data through a mapping rule with the required and optional parameters, and are in charge of mapping the response from the service to the application. How to configure the call of the connector: The connector can be called from an Activity, Data page, etc The most recommended use of a connector is a data page. On the data page, you can set up, through a data transformation, the mapping for the request data responder, and it can be called from anywhere in the application . Let's get this process through the steps : Map data to the integration : you can create a data transform to map the data from the clipboard to the service Invoke the connector : the connector can be invoked from a data page, data trans...

How services works in pega

Connector and services: Applications often establish connections with external systems to exchange data needed to allow users to complete a task; these connections use standard frameworks to exchange information between systems . For example, an application for car insurance wants information about a car to provide insurance, so it connects to the DMV to get information about the driving history, and based on that, gives them a quote for the insurance A connection between systems consists of two parts: a connector to initiate the request and a service to fulfill the request. Connector: A connector defines an outbound request to the service, and a connector establishes a connection to an external system by using common HTTP methods such as SOAP(Simple Object Access Protocol) or REST(Representational State Transfer). Connectors pass application data through a mapping rule with the required and optional parameters, and are in charge of mapping the response from the service to the app...