Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
Hi All,
I know we have a service SetValueStream that can be used to add the ValueStream to an Asset. In the same way, Do we have have any service to remove or detach a Value stream to an Assets?
or we have any other options to remove the values.
Please let me know.
Thanks for your reply.
Solved! Go to Solution.
Hi @koushal ,
As far as I know there is no out of the box service for that, but you can create a custom JavaScript service and use the SetValueStream service with an empty input like this :
me.SetValueStream({
name: "" /* THINGNAME */
});
I hope this helps.
Hi @koushal ,
As far as I know there is no out of the box service for that, but you can create a custom JavaScript service and use the SetValueStream service with an empty input like this :
me.SetValueStream({
name: "" /* THINGNAME */
});
I hope this helps.
HI @c_lowy,
Do we need to enable and restart the Asset Thing after removing the Value Stream?
or Is it fine to remove the ValueStream without restart the Thing?
Hi @koushal ,
I believe the SetValueStream service does not require a Restart after it has been called. Service GetValueStream can be used to validate change of assigned Value Stream.