1
General Board / Re: RTF document template with callbehavior actions
« on: March 30, 2022, 08:52:08 pm »
Thx! That will help a lot
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.
actionA | notes for actionA | activity1 | notes on activity1 |
actionB | notes for actionB | activity1 | notes on activity1 |
actionC | notes for actionC | activity2 | notes on activity2 |
select ea_guid AS CLASSGUID,
Object_Type AS CLASSTYPE,
Name
FROM t_object
where t_object.alias like '#WC#<Search Term>#WC#'
or t_object.name like '#WC#<Search Term>#WC#'
UNION
select t_object.ea_guid AS CLASSGUID,
"Note" AS CLASSTYPE,
t_diagram.Name
FROM t_diagram
, t_object
where t_diagram.name like '#WC#<Search Term>#WC#'
and t_diagram.parentid = t_object.object_id
UNION
select t_package.ea_guid AS CLASSGUID,
"Note" AS CLASSTYPE,
t_diagram.Name
FROM t_diagram
, t_package
where t_diagram.name like '#WC#<Search Term>#WC#'
and (t_diagram.parentid = 0
and t_diagram.Package_ID = t_package.Package_ID)
Public Sub addterm(termType As String, name As String, description As String)
Dim myTerm As EA.Term
Set myTerm = EARepos.Terms.AddNew(name, termType)
myTerm.Type = termType
myTerm.Meaning = description
'save term
myTerm.Update
'refresh glossary collection
EARepos.Terms.Refresh
End Sub