Question
Virtusa
US
Last activity: 3 Feb 2021 0:48 EST
Accessing DataPage in Java PRPC 8.5.2
We used to access Data Page in Java code using below code in PRPC 7. But once it is Upgraded to 8.5.2 the code would not return the AssignmentPage.
D_DataPage has one Parameter which is WOInsKey. It is a thread level DPage with reload once per interaction.
ParameterPage pp = new ParameterPage();
pp.put("WOInsKey", pzInsKey);
ClipboardPage AssignmentPage = tools.findPage("D_DataPage",pp,true);
String Count = AssignmentPage.getString("pxResultCount");
Is there any other ways to Load and Access DPage inside Java.