Hi,
I'm trying to use model search within the relationship matrix. I'm searching all objects, which have specific Tagged value
My select is:
select c.ea_guid as CLASSGUID, c.object_type as CLASSTYPE, c.name as Name, c.alias as Alias, c.stereotype as Stereotype
from (t_object c
inner join t_objectproperties op on op.Object_ID = c.Object_ID)
where op.Property = 'domain'
and op.Value like 'Customer'
I'm able to navigate from the search into Project Browser, but unfortunately it won't retrieve list of objects in Relationship matrix.
I'm using SparX EA Corporate edition version 14.1
Thanks for heplp