Helpful tips

What is data transform in PEGA?

What is data transform in PEGA?

The purpose of a data transform is to manipulate data in an application. Data transforms copy or manipulate data into the form you require. Data transforms can be used to convert data from one type to another, iterate over page lists, or page groups and copy entire pages at a time.

What is PEGA page list?

A Page List property is an ordered list of embedded pages that are referenced by a numeric subscript, starting with 1. Page List properties are useful for holding lists of data. A Page Group property is an unordered set of pages that is referenced by a string subscript.

READ ALSO:   Does bleaching give fairer skin?

How do I add first name and last name in PEGA?

FirstName + ” ” + . LastName should do the trick.

What is PX PY PZ in PEGA?

px- Properties with prefix px are Read Only and cannot be overridden or extended by your application. py- Properties with prefix py are Read/Write so can be overridden in your application. pz- Properties with prefix pz are Read Only and cannot be overridden or extended by your application.

What is append to in PEGA?

so a data transform with AppendTo method is used with the target as the pagelist and source as the page. During the execution, at times the embedded pages of the page are not copied into the pagelist.

What is Page and Pagelist in PEGA?

Page list is an ordered list of pages (like array of pages). Example: Employee is a page (instance of Employee class). If employee has multiple contacts, it will be like Employee.

READ ALSO:   Is grammar important in language?

What is difference between page and Pagelist property?

Page is a single entity. A Page List property is numerically ordered list of embedded pages that are referenced by a numeric subscript, starting with 1. Page List properties are useful for holding lists of data.

What comes before first in PEGA?

what is the meaning of @whatComesBeforeFirst in pega? Hello, This is a function working with a text field and returning everything which coming before the first given character. Returns the portion of string1 that comes before the first occurrence of the specified character.

How do you concatenate properties in PEGA?

Yes, you can concatenate two or more properties in a data transform. Just a basic Action: Set Target: . FullName Relation: equal to Source: . FirstName + ” ” + .

What is a tracer in PEGA?

In Pega Platform™, the Tracer allows you to capture and view the events that occur during case processing. Unlike the Clipboard tool, which presents the current value of properties in memory, the Tracer presents a complete log of the events that occur during case processing.

READ ALSO:   Does hitting your PC damage it?

How pzInsKey is formed in PEGA?

Every Pega Platform internal database table in data or rulese schema contains a pzInskey column and is the primary key to the table. When we open a record from the database to get full data in the blob , rule or data instance, we use the pzInsKey as it’s unique for the table .

What is the difference between append and append and Mapto in PEGA?

9) Append to and Map to First let’s see the difference between Append to vs Append to and Map to. The target and source can be of different applies to class. Append to and map to create a new page without any embedded properties, while Append to action creates a new page with all the values from source page.