Interesting

How do you optimize a PEGA report?

How do you optimize a PEGA report?

The best approach to optimizing your report is to avoid the use of report definition as a source for the user interface. Data pages are always efficient if the same data need to be reused. Design the refresh strategy to get data only when required. Use node scoped pages for static data whenever possible.

How do I know if my property is PEGA optimized?

You can use the modify schema wizard to check the optimized properties.

  1. Go to the Designer-studio–>System–>Database–>Modify Schema.
  2. Select the database where your work table is present.
  3. Select the work table that got mapped to corresponding work class.
  4. Click on the columns link inside the grid to view the properties.

How do you expose the property in PEGA?

There are four ways to expose the properties….How to expose a property?

  1. Using property rule form – Optimize using Other actions button.
  2. Using Modify Schema wizard.
  3. Directly create a column in database.
  4. Exposing properties using declare index rule – For more info, please visit my previous posts on declare index.
READ ALSO:   Do cellos use treble clef?

What are PEGA properties?

A property provides a name and characteristics for data in an object. Because a property definition is a rule, it shares the benefits of versioning, inheritance, and access control that the Pega Platform provides to all rules.

Can we use unoptimized properties in report definition in PEGA?

You can have unoptimized properties display in the Data Explorer in the Report Editor, so you can select and use them to populate columns as you do with optimized properties.

Can we refer the property without exposing in reports in PEGA?

How to use a property in Report Definition for the purpose of querying if the property is not exposed and cannot be exposed as well? The is no option to expose the property to use. You can use it (and live with the severe guardrail) as long as you have the UDFs installed on your data base.

How does PEGA optimize multiple properties?

Click on Actions menu>> Edit Columns . Enter the properties that are already created in the fields and click on submit. This will automatically optimize the properties without creating a new table.

How do I move optimized property in PEGA?

Move/Deploy an optimized property in higher environments

  1. Write an activity which can pull all work objects in that table (or atleast required work objects as per your requirement) and.
  2. iterate through the list.
  3. do property-set of new exposed property.
  4. Obj-Save.
  5. after exiting from loop you need to issue commit step.
READ ALSO:   What is the physical meaning of curl of a vector field?

How do you expose aggregate property in PEGA?

How to expose aggregate property?

  1. Create a concrete class derived from the Index- base class.
  2. Create Single Value properties in the new class to hold values of the embedded values.
  3. Create a Declare Index rule with the appropriate embedded Page Context value that copies the embedded values into a new Index- instance.

What is linked property in PEGA?

A linked property is a Single Value text property that has values that are expected to match the key of an instance of a concrete class. In certain user interface and other rule configurations, linked properties can improve performance and eliminate the need to create a special-purpose activity.

What is PEGA PRPC?

Prpc means pega rules process commander. PegaRULES Process Commander comes essentially as two discreet entities, PegaRULES : Core Java-based/Object-Oriented Rules Engine. Process Commander : Layers of pre-configured rules that provide a solid foundation on which to perform development and customization.

Can we use unexposed properties in report definition in PEGA?

It is possible to use unexposed properties in properties. When an unoptimized property is used, a reminder appears that using such properties in calculations or for report columns may significantly reduce report performance.

READ ALSO:   Who replaced Winston Churchill in 1945?

How to expose a property in Pega?

Expose a property in Pega. 1.Optimize from property form. Step 1: Open the CustomerName property rule. Step 2: Go to ‘Actions’ button and click on the Optimize for reporting from the dropdown menu. Step 3: You will be landed in the property optimization landing page. Properties and classes. Here you

How to optimize for reporting from property form?

1.Optimize from property form. Step 2: Go to ‘Actions’ button and click on the Optimize for reporting from the dropdown menu. Step 3: You will be landed in the property optimization landing page Here you can get more than one class and the corresponding tables.

Where are properties stored in Pega database?

Pega database supports blob storage. If the properties are not exposed, then they get stored in a blob storage column ‘pzpvstream’ So what do you mean by exposing property?

How to persist data in Pega?

Pega uses properties to hold the data. We can persist the data in database table. Say for example, I have created a new amazon sales case, Say A-1 and captured all the customer details. `CustomerName = “Prem”. We can persist these details in the Work table in a single row that’s corresponds to Case A-1.