How to get data page property from clipboard

So i have implemented a Async activity where i am loading my data page asynchronously
now the thing is i am running this activity as a utility before my screen now i want to show set the case level properties with the data that comes from the load data page and i thought it would come on the clipboard when i run this activty but i don’t know where the data is being stored after the Load Data Page fetches the data.

@AryawardhanR17691900

The data fetched by Load-DataPage is stored in the data page clipboard just like any other data page load. You can refer to it in the usual way to access the loaded values.

One thing to keep in mind is that after Connect-Wait completes, you may not immediately see the data page instance on the clipboard. It typically appears only when the data page is actually referenced in a subsequent step, such as a Property-Set or Step Page. Until then, it remains available in the subrequestor cache.

As @RaviChandra mentioned, you should be able to get the values directly from the Dpage once it’s loaded

DPage.PropertyName (Single Page)

DPage.pxResults(Index).PropertyName (PageList)