Pega Related Question

How can we transform a data from page list to single page?

Hi @RANJEETHKUMARG16770103: Few options for this.

  • If you are using a data page, you can make use of keyed access mode to get the specific record.
  • If you are dealing with top level pages or embedded pages, you can always manipulate the data using data transforms.
    • You can get the index of the specific page from page list using indexinpagelist function and can create your page using the index
    • Or you can loop through the page list and find the correct page. Once you found the correct page in the page list, you can update the target page

Thanks.

@ArulDevan Thanks For your Reply