| Hi, Fadi.
When doing the command call CC "Core" GET_REC_ATTR_ROW_COUNT objid: (id_classid) attrid: (id_InstId)
you are passing the classid as parameter objid, but you should pass the intance ID.
Try the following calls:
CC "Core" GET_ATTR_ID classid: (id_clasid) attrname: "Attributes" SETL id_attrid: ( attrid ) CC "Core" GET_REC_ATTR_ROW_COUNT objid: (id_InstId) attrid: (id_attrid)
Sabin |
|