3
« on: May 10, 2025, 01:48:48 am »
Perhaps this is something specific to Model Views? I use the following SQL for searching (not in a ModelView) a SysML model for SysML connectors and determining if they have been "typed" (by Associations). Right click "Find in Diagrams" isn't greyed out, and works partially (it lists the diagrams the connector could be shown on, and if they actually show the connector it does select it on the diagram, whereas if the connector is hidden on the diagram it just opens the diagram. I should say I am using EA 16.1 so it is also possible things have moved on.
SELECT
c.ea_guid AS CLASSGUID,
c.connector_type AS CLASSTYPE,
't_connector' AS CLASSTABLE,
c.name As connector_name,
c.PDATA2,
a.name As association_name,
c.direction,
-- o_src.name as source_name,
c.sourcerole,
c.sourcecard,
c.sourcestereotype,
-- o_target.name as target_name,
c.destrole,
c.destcard,
c.deststereotype
FROM
t_connector c
LEFT JOIN
t_connector a ON c.PDATA2 = a.ea_guid
WHERE c.connector_type = 'Connector';
Sadly I am not permitted to use Geert's EA Navigator, It would be really useful!