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

Community email notifications are disrupted. While we are working to resolve, please check on your favorite boards regularly to keep up with your conversations and new topics.

How to find particular datashape being used in which services exactly in Thing?

MM_10159448
7-Bedrock

How to find particular datashape being used in which services exactly in Thing?

How to find Perticular Datashape being used in which service in Thing?

Ex-Datashape Name-'dsEventsHeader'.

I Want to trace above datashape, In how many services are used?

Please provide some workaround or solution ASAP

1 ACCEPTED SOLUTION

Accepted Solutions

Hi @MM_10159448 

 

You can use 'GetWhereUsed' service to retrieve DataShape used information.

 

// result: JSON
let result = DataShapes["DATASHAPENAME"].GetWhereUsed({
	query: undefined /* QUERY */,
	characteristicType: undefined /* STRING */,
	characteristicName: undefined /* STRING */
});

 

To use this service you need to enable Relationship Subsystem

 

/VR

 

 

View solution in original post

1 REPLY 1

Hi @MM_10159448 

 

You can use 'GetWhereUsed' service to retrieve DataShape used information.

 

// result: JSON
let result = DataShapes["DATASHAPENAME"].GetWhereUsed({
	query: undefined /* QUERY */,
	characteristicType: undefined /* STRING */,
	characteristicName: undefined /* STRING */
});

 

To use this service you need to enable Relationship Subsystem

 

/VR

 

 

Top Tags