Question

Royal Cyber
PK
Last activity: 1 Jul 2019 9:14 EDT
Need Help How to get Running application thread properties/values instead of STANDARD thread properties/Values.
I am able to get STANDARD thread values/properties but the issue is that I am unable to get running application thread properties it always show me STANDARD thread values how can i get my own running process thread values, I have to get the property data from pyWorkPage from the running thread on clipboard, i.e. F-114 etc using an activity. I have used many methods but unable to get the F-114 thread data, I have tried using tools.findPage("pagename"), from publicAPI, and also I have treid using requester as "tools.getThread().getRequestor().getThread("F-114");" in the java block in activity, and also I have tried this : "tools.getRequestor().getThread("<F-114>").getPage(<pyWorkPage>").getString(".pyStatusMessage")"
when I am going to execute code it gives me error of "page not found"
Note : by using below code I am easily getting STANDARD thread properties/values
"tools.getThread().getRequestor().getThread("STANDARD");"
"tools.getRequestor().getThread("<STANDARD").getPage(<pyWorkPage>").getString(".pyStatusMessage")"
able to get STANDARD thread properties unable to get property values other than STANDARD thread like my F-114 thread.
But none of these worked for me, Kindly help me out in this regard, thank you.