Skip to main content
1-Visitor
July 23, 2020
Solved

Do we have any service to remove or detach Value Stream to Assets?

  • July 23, 2020
  • 1 reply
  • 1460 views

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.

Best answer by c_lowy

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.

1 reply

c_lowy16-PearlAnswer
16-Pearl
July 23, 2020

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.

koushal1-VisitorAuthor
1-Visitor
July 24, 2020

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?

16-Pearl
July 24, 2020

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.