Passing a page name to a parameter and using it in a function
I have Activity A which calls activity B, I defined TempPage of class Code-Pega-List in both A & B on the Pages and Classes and also the class of pxResults
I pass the name of TempPage as a Paremeter when calling activity B
_________________
In activity B I call a function which takes a pagelist as a parameter
So I reference @pagelistfunction(Param.TempPage.pxResults) - it throws an error
However if I reference @pagelistfunction(TempPage.pxResults) it works fine
So regardless of syntax, it should still be pointing to the page/pagelist on the clipboard. Is there any point of even parameterizing the page name as if I just defined the same name on both Pages and Classes tab of both A & B wouldn't the data persist between activities?