I have a scenerio to create report definition for pagelist data

I have a scenerio to create report definition for pagelist data, how do I configure this?

Thanks

Regards

Satya

@Satya K

If its a pagelist property then you need to create a declare index along with an index table where the properties inside the pagelist will be mapped. Then you can create the report definition on the index class.

Hello @Satya K,

When dealing with a Page List property, Pega does not support direct reporting on embedded data. To enable reporting, you must configure a Declare Index (Rule-Declare-Index). This rule extracts each embedded page from the Page List and writes it to a separate instance of an Index class (Data- class).
The Index class should be mapped to a dedicated database table using a Database Table instance (Data-Admin-DB-Table). Each scalar property in the Page List that needs to be reported must be exposed as a property in the Index class and properly mapped in the Declare Index rule.
Once this setup is complete, a Report Definition rule can be created on the Index class to retrieve and display the Page List data independently of the main work object class.