Display a pagelist on UI

Hi,

I have called two report definitions in an activity and used page-copy method for copying results form 2nd pagelist to 1st pagelist.Now I want to display 1st pagelist on UI which will be having results from both report definitions and some of the properties are common in both the reports.How can I achieve this?

@VinayMalkarInstead of doing a Page-Copy, you can loop through the 2nd pagelist and append each result to 1st pagelist, then if you use the 1st pagelist as source in the table layout, you would be able to show all the results.

@pavan3753 Hi, I did the same append and all.please explain me your table approach in detail.So I can try this

@VinayDnyaneshwarM You can do Page-Copy by looping your original list and appending the same into your new pagelist. Please refer the below images

@KiruthikaA Yes, you are correct.I have done the same.Now I need to display this NewPageList on UI.How can I achieve?

@VinayDnyaneshwarM You can use a simple table and give the source as your NewPageList.

Hi @KiruthikaA, Thanks for the solution.It worked for me