Thanks for looking at it q.
The notes worked with the first try (see below), which was a big surprise. The last issue I am dealing with now is when the report is run on a package it repeats all relationships for every requirement within that package on each requirement. Is there some special "package" voodoo that I am missing?
SELECT
t_Connector.Name AS [Connector],
t_Connector.Connector_type AS [TYPE],
t_Connector.*,
startObject.name AS [requirement],
startObject.note as [note],
endObject.name AS [requirement2],
endobject.note As [note2]
FROM ((t_Connector
INNER JOIN t_Object as startObject ON t_Connector.Start_Object_ID=startObject.Object_ID)
INNER JOIN t_Object as endObject ON t_Connector.End_Object_ID=endObject.Object_ID)
where t_Connector.Connector_Type = 'aggregation'
and endObject.Object_Type = 'requirement'
You need a little EA voodoo to get the notes. It's required to use t_object.note as norwhatever. For some reason they filter the note field.
q.