How to access properties in clipboard page pyActionInfo

In a case’s clipboard context, we can see pyActionInfo page there, in which a property .pyPortalThreadName is there.

However, .pyPortalThreadName is not defined in class of this page: Pega-UI-RunTime-Display, so when I tried to access it I met below error

Same problem on some other properties shown in clipboard page e.g. pyPortalName.

Could kindly advise how can I access these properties?

Thanks.

@MaxonL16591286 ,

Not sure if you are looking to get the portal name for current requestor. you can also get the same from pxRequestor page from system pages in clipboard from the property “pySecondaryPortalThread”. can you please check if this helps. Thanks

@Balasubramaniam

Thanks, however I still what to know any answer to my 1st question, it looks like a “common” question, that is, how to access a property we can see in clipboard but unable to access it by pagename.propertyname

@MaxonL16591286 - Can make use of java code to get the property value. Place this java code in a label by enclosing in <% %> tags.

<% tools.findPage(“pyActionInfo”).getProperty(“pyPortalThreadName”);%>

Thank you.