Question
AIG
US
Last activity: 26 Jun 2018 15:32 EDT
Pega Robotics Get properties in Studio - not loading all porperties
We are trying to get all work hierarchical properties to Pega Robotics studio (api case property details); however it's not showing all; in analysis we have found that api->v1 service layer data page on pr_data_tag_relevantrecord table doesn't have all rows(like property table)which are associated with work classes. how to load properties to pr_data_tag_relevantrecord table? which action does it?
SELECT "PC0"."PXCONTEXTCLASS" AS "pxContextClass" , "PC0"."PXRECORDTYPE" AS "pxRecordType" , "PC0"."PXRECORDINSID" AS "pxRecordInsId" , "PC0"."PXISACTIVE" AS "pxIsActive" , "PC0"."PZINSKEY" AS "pzInsKey"
FROM PDATAOWN.pr_data_tag_relevantrecord
WHERE ( UPPER("PC0"."PXCONTEXTCLASS") IN ('@BASECLASS',?,?,?)
AND UPPER("PC0"."PXRECORDTYPE") = 'RULE-OBJ-PROPERTY')
AND "PC0"."PXOBJCLASS" = 'Data-Tag-RelevantRecord' ORDER BY 1 ASC, 2 ASC, 3 ASC