Hi
I wanted to use the Standard search facility to find all instances of a DataObject element I had created. However, regardless of what I used in the builder I could not find one.
I then resorted to writing some SQL :-
select object_ID, Object_type, Name, stereotype
from t_object
where stereotype = 'DataObject'
and this found a number of objects, but it proved that the Object_Type was 'Artifact', not DataObject.
Furthermore, when the results are displayed in the result window, it displays the Object_type column as 'DataObject' even when it is actually an 'Artifact' !
Using this SQL :-
select object_ID, Object_type, Name, stereotype
from t_object
where stereotype = 'DataObject'
and Object_type = 'Artifact'
I get this as the first row
object_ID,Object_type,Name,stereotype,
814,DataObject,CRM4 XML File,DataObject,
Why does it do this ?
Are there any other objects that have a misleading Object_Type ?
Matthew