Jump to content

‘Available in all workbooks' option not showing in R51.0.4


Recommended Posts

Hi, I was importing a signal data from a CSV file and I wanted to make it global and not just limited this particular workbench. I was aware checking the ‘Available in all workbooks' option works, but I wasn't able to find that option anywhere in the R51.0.4 version (I have an admin access as well). Please let me know if I'm doing something wrong or if this feature not available in the current version? Is there any alternative to do this as well?

 

image.thumb.png.3c47f53f1345048f9e51a7f944f2bebb.png

Link to comment
Share on other sites

  • Seeq Team

Hi Sivaji,

After uploading the csv you can select the item properties (highlighted in the picture below) under the data tab and change the scope to global accordingly. Once the scope has been changed to global it will inherit the access control list from the workbook.

Screenshot 2021-05-25 at 14.12.39.png

image.png

  • Like 2
Link to comment
Share on other sites

  • 3 years later...

Sorry for bringing back an old topic.  I have a similar issue, but I have about 1000 signals that I want to scope as global.  Is there a way to do this easily? 

The original datafile is a CSV, so the signals are a combination of files from Imported CSV and SEEQ Datalab.  

Link to comment
Share on other sites

  • Seeq Team
1 hour ago, KantianKinetics said:

Sorry for bringing back an old topic.  I have a similar issue, but I have about 1000 signals that I want to scope as global.  Is there a way to do this easily? 

The original datafile is a CSV, so the signals are a combination of files from Imported CSV and SEEQ Datalab.  

You can make set of signals globally scoped using the SDK with the Items API using Data Lab using a spy.search to create a list of signal IDs. Here is an example script:

from seeq import spy, sdk

items_api = sdk.ItemsApi(spy.client)

search_results = spy.search({'Name': "CSV*"}, all_properties=True)
id_list = search_results['ID'].tolist()

for tag_id in id_list:
    items_api.set_scope(id=tag_id)

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...