cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need help navigating or using the PTC Community? Contact the community team. X

Fetching outgoing dependencies, err: Unable To convert org.mozilla.javascript.UniqueTag to INFOTABLE

AV_10867476
7-Bedrock

Fetching outgoing dependencies, err: Unable To convert org.mozilla.javascript.UniqueTag to INFOTABLE

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 :

 Error executing service. Message ::Unable To Convert From org.mozilla.javascript.UniqueTag to INFOTABLE - See Script Error Log for more details.
 
Here: 
var thingName =   "sampleThing"

var mxItems = 10;
var mxDepth = 2;

let params = {
    target: thingName,
    maxItems: mxItems,
    maxDepth: mxDepth
};


    var relData = Resources["PTC.Resource.RelationshipUtilities"].GetOutgoingDependencies(params);



ACCEPTED SOLUTION

Accepted Solutions

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

View solution in original post

2 REPLIES 2

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!

Announcements

Top Tags