Sunday 25 June 2023

How to view the saved tracer file offline

 Hi Friends, in this post we will see how to install the tracer viewer tool and view the saved tracer file offline.

As per the Read.md file instructions, for running this tool, we have to have minimum java 11 installed in the system.



Make sure minimum java 11 is present in the system by running the below syntax in the cmd prompt.
 

In the below URL, we can able to view the documentation about the tracer viewling tool

GitHub - pegasystems/pega-tracerviewer: The tracer viewing tool helps users understand and debug Pega tracer files. To download the tool, click on the "release" link, scroll to the bottom, and download the tracerviewer zip file.



                                                                                                                                                                    
Click on the highlighted link.

Click on the pega-tracerviewer-3.4.1.Zip downloadable file



Once the file is downloaded. extract the file.


Go to the location bin inside the extracted file and click on the below highlighted batch file.



Tracer viewer tool will open.



Now let me open the pega and run a sample tracer and click on save in tracer and extract the jar file.


Click on save in tracer to save the tracer file.

Now go to Pega Tracer viewer and click on file -> Load pega tracer file menu and select the extracted file

Select the xml file and click open


Now, we can able to view the downloaded tracer file




Thanks for reading!

Friday 23 June 2023

How to use Log Category to debug issues in Pega

 Hi Friends, In this post we will see how to use the Log Category to debug the issues.


In Admin studio, Under resources, we have an option Log Category, using this we can debug issues


There are many useful log categories, by reading the description, we can able to understand about the log category usage.



Now assume, I am facing a problem with a declare index rule, In pega there is a log category to enable to log for declare index,  Default log level is ERROR, we have to update the log label to DEBUG to view the log message related to declare index in the log file.

Updating the log level to DEBUG in pxDeclarativeReporter.Save.Index

Click on Reset at 3 dot and change to DEBUG and submit



Now lets see how it is working..

In Data-Admin-Operator-ID class, we have a declare index rule, this rule will trigger when we are saving a operator with the skill.. lets update the operator with a skill and save.



Added skill English and save


Now log should have the information about this declare index details.

Go to Configure -> System -> Operations -> Log -> Log files

Open the pega Logs



In Log file, we can able to view the log information about the logger


We can able to see , in skill page list 1'st index is changed




Similarly, we can able to change the logging level to DEBUG for other log cateogory and debug. Once we have completed the debug, we have to change the log level to ERROR back.

Thursday 22 June 2023

How to get the JSON of a page in Pega using data transform

 Hi Friends, In this post we will see how to get the JSON of the page using data transform.


In a customer Information casetype, I have created 2 case


Opening the Workobject and keeping in the CustomerInformation page.


Select additional configuration option as JSON during data transform creation


In the Top element structure, select Object and Select Auto-map all data checkbox.



Before calling the data transform, provide parameter value Param.executionMode as "SERIALIZE"


In the tracer, we can able to see the JsonData after the data transform execution in the parameter page.





Friday 16 June 2023

How to convert GMT datetime value to EST datetime value in Pega

 Hi Friends, In this post, we will see how to convert a data time value in GMT to EST.


Assume I have a data time field named InputDateTime, In this field, the value is like 



Now I want to convert the date value from GMT to the corresponding EST value,  we can use the expression below to convert the GMT to EST.


@FormatDateTime(.InputDateTime,"","","en_US")


Output value is like below: