- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Link copied. Please paste this link to share this article on your social media post.
Posted: 2024-04-15 06:50 AM
getDescendants .NET API
Hi everyone,
I'm using this method "obj.GetDescendants("CGroup, "")" but if there are more than 10000 items it doesn't work ('Limit of 10000 objects for ListObjects reached. Specify a filter to reduce the number of objects returned.'). How can I write an alternative function that returns me the same result?
Link copied. Please paste this link to share this article on your social media post.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Link copied. Please paste this link to share this article on your social media post.
Posted: 2024-04-16 12:30 AM
I recommend using .GetChildren instead, to get direct descendants. Then recursively call it on any children which are groups/instances/templates.
Link copied. Please paste this link to share this article on your social media post.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Link copied. Please paste this link to share this article on your social media post.
Posted: 2024-04-15 06:24 PM
Could use SQL, either through standard ODBC or via the .NET API.
Steve posted an example of via the .NET API at https://community.se.com/t5/EcoStruxure-Geo-SCADA-Expert/NET-API-to-query-ClearSCADA-View/m-p/200560
Link copied. Please paste this link to share this article on your social media post.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Link copied. Please paste this link to share this article on your social media post.
Posted: 2024-04-16 12:30 AM
I recommend using .GetChildren instead, to get direct descendants. Then recursively call it on any children which are groups/instances/templates.
Link copied. Please paste this link to share this article on your social media post.

