Skip to Content (Press Enter)
OutSystems.com
Personal Edition
Community
Support
Training
Training
Online Training
Developer Schools
Boot Camps
Certifications
Tech Talks
Documentation
Documentation
Overview
ODC
O11
Forums
Forge
Get Involved
Get Involved
Jobs
Ideas
Members
Mentorship
User Groups
Platform
Platform
ODC
O11
Search in OutSystems
Log in
Get Started
Back to Forums
Paulo Ramos
Staff
24
Views
1
Comments
[References Dashboard] Discussion
Question
Forge
References Dashboard (O11)
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%'
Barbosa
You can try this one for version 4.2.x
oml_browser_v1.oml
Community Guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
See the full guidelines
Loading...