24
Views
1
Comments
[References Dashboard] Discussion
Question
referencesdashboard-png
Web icon
Forge asset by ovatsus
Any chance of a downgrade to 5.0? 5.1 is quite new and many of us are not using it yet. :)

In the meanwhile, here's a workaround for finding references between eSpaces.  Just customize and execute the query below.


SELECT prd.name as producer, e_ref.name as reference, e_ref.kind, csn.name as consumer
FROM [ossys_Espace] prd
join ossys_Espace_Reference e_ref on prd.ss_key = e_ref.PRODUCER_SS_KEY
join ossys_Espace_Version csn_ver on e_ref.CONSUMER_VERSION_ID = csn_ver.id
join ossys_Espace csn on csn_ver.id = csn.version_id and csn.id = csn_ver.espace_id
WHERE
 prd.is_active = 1 and csn.is_active = 1
--and prd.name like '%xxx%'
and e_ref.[NAME] like 'XXX'  -- name of public action/entity/... here
--and csn.name like '%xxx%'
 
2011-06-15 10-50-36
Barbosa
You can try this one for version 4.2.x

oml_browser_v1.oml
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.