Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kuchejda

Pages: [1]
1
General Board / Re: How to find all hyperlinks to given element
« on: April 14, 2023, 11:46:05 am »
Thank you for the help! I have created this search query and it seems to work perfectly (it searches in Scenarios instead of Notes)

Code: [Select]
SELECT tob.ea_guid AS CLASSGUID, tob.Object_Type AS CLASSTYPE, Name as Element
FROM t_object tob
join t_objectscenarios tsc on tsc.object_id = tob.object_id
WHERE tsc.notes LIKE '%$element://' + (select ea_guid from t_object where name like '%<Search Term>%') + '%'

2
General Board / How to find all hyperlinks to given element
« on: April 11, 2023, 02:18:32 pm »
Hello,
Is it possible to find all the elements that are hyperlinking to a given element?

For example, I have three use cases that all mention a requirement in their scenarios and provide a hyperlink to that requirement. Now that I have changed that requirement, I need to verify that all the places that link to it are still valid, but I don't know where to find them. I can of course use the full-text search, but that relies on the fact that I have used the name of the requirement in all the use cases, which may or may not be the case.

Thank you!

Pages: [1]