Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
Trying to fetch the outgoing dependencies of a thing as an infotable using the GetOutgoingDependencies service in the PTC.Resource.RelationshipUtilities, but facing this error :
Solved! Go to Solution.
Hi @AV_10867476 ,
I'm not sure which version of TWX you were using but to find the below code to find outgoing dependencies of a thing and also try to print Ouput in variable of 'result' and make sure that Service Output basetype as 'Infotable'.
var thingName = 'YOURTHINGNAME';
let relData = Things[thingName].GetOutgoingDependencies({
maxItems: 500 /* NUMBER {"defaultValue":500} */
});
let result = relData ;// OUTPUT VARIABLE SHOULD BE IN 'result'
Thanks & Regards,
Arun C
Hi @AV_10867476 ,
I'm not sure which version of TWX you were using but to find the below code to find outgoing dependencies of a thing and also try to print Ouput in variable of 'result' and make sure that Service Output basetype as 'Infotable'.
var thingName = 'YOURTHINGNAME';
let relData = Things[thingName].GetOutgoingDependencies({
maxItems: 500 /* NUMBER {"defaultValue":500} */
});
let result = relData ;// OUTPUT VARIABLE SHOULD BE IN 'result'
Thanks & Regards,
Arun C
Thanks!