Question
Virtusa
Virtusa
IN
Virtusa
Posted: Mar 4, 2019
Last activity: Mar 4, 2019
Last activity: 4 Mar 2019 23:02 EST
Closed
Displaying Summary View Of Report Definition in Table Format
Hi All,
I have a requirement to display the "Summary View" results of Rep Def in Table Format. I had followed the below post, but Rep Def is not supported for the summary view display.
https://community1.pega.com/community/product-support/question/how-display-report-definition-results-summary-data-table-view
Any other alternative suggestions please..
Appreciate your help!!!.
To see attachments, please log in.
Hi Pradeep,
Summary view Report type is not supported ot be shown in a table since it is drilled down to the actual list data.
However you can use activity to open the report in a new pop up window using "Call Rule-Obj-Report-Definition.pxShowReport" method. This would invoke a pop up to display the summary veiw report.
Alternatively there is a longer process. You can use "Call Rule-Obj-Report-Definition.pxRetrieveReportData" method to save the values of the report on the clipboard. You can then save these values accordingly in a list and display in a report.
For following examples, I used first summary group on pyID as max, and then count. pyValue displays the summary value. Below are the results on clipboard. This is a tedious process though.
Hi Pradeep,
Summary view Report type is not supported ot be shown in a table since it is drilled down to the actual list data.
However you can use activity to open the report in a new pop up window using "Call Rule-Obj-Report-Definition.pxShowReport" method. This would invoke a pop up to display the summary veiw report.
Alternatively there is a longer process. You can use "Call Rule-Obj-Report-Definition.pxRetrieveReportData" method to save the values of the report on the clipboard. You can then save these values accordingly in a list and display in a report.
For following examples, I used first summary group on pyID as max, and then count. pyValue displays the summary value. Below are the results on clipboard. This is a tedious process though.