Hello
It's posible ger información about the View ID of elements? I'm tring with message of wiev but it have no info about parent View AND message of element hace no View ID .
Can i add libraries like protocol or engine ti the gqi projecto?
Thanks
Hi Juan,
You could get the view ID assigned to an element (and the view name) by using three data sources:
- Get Elements: To get the list of elements
- Get Views: To get the list of views (ID and name)
- Get View relations: To get the relationship between elements and IDs
Below an example of the query:
Hope it helps.
Hi Juan,
Regarding accessing the View ID of elements:
Have you tried using Get view relations?
Regarding your question if it's possible to add libraries to the GQI project:
Following is true for any library.
If you are using SLHelper you have to copy the library DLL to the C:\Skyline DataMiner\Files folder in order to use them in the GQI.
If you are using GQI DxM you can just include them in the GQI project.
If you are unsure what approach is being used by your agent you can have a look at Enabling the use of the GQI DxM.
If you want to access SLProtocol or IEngine objects from the GQI this will not be possible, however you can use GQIDMS object to gain access to SendMessage method which will allow you to achieve a lot of functionalities of the SLProtocol and IEngine object, albeit in a more complex way.
Let me know if this helps,
Cheers

Hi Juan,
You can get the parent View ID of the element like so:
public void Run(IEngine engine)
{
var message = new GetViewsForElementMessage(dmaId, elementId);
var rawResponse = engine.SendSLNetSingleResponseMessage(message);
var response = rawResponse as GetViewsForElementResponse;
foreach (var i in response.Views)
{
engine.Log($"{i.ID}");
}
}
Depending on your needs you might have to do this recursively.
theres a message to get elements for a view? or doc's about all the message details, i cent found it.
Thanks

You can get all elements in the view like so:
public void Run(IEngine engine)
{
var message = new GetViewLinksMessage(viewId, ViewLinkInfoType.Elements);
var rawResponse = engine.SendSLNetSingleResponseMessage(message);
var response = rawResponse as GetViewLinksResponseMessage;
foreach (var i in response.Elements)
{
engine.Log($"{i.ElementName}");
}
}
Hello edib
Usong the message how can i ger información for View ID of elements? Or elements inside of a View?
Thanks