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

Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X

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

koushal
12-Amethyst

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

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.

1 ACCEPTED SOLUTION

Accepted Solutions
c_lowy
16-Pearl
(To:koushal)

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.

View solution in original post

3 REPLIES 3
c_lowy
16-Pearl
(To:koushal)

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.

koushal
12-Amethyst
(To:c_lowy)

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?

c_lowy
16-Pearl
(To:koushal)

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.

Top Tags