Hello everyone,
I would like to filter the model elements to put only certain element types into our HTML report. For example, "only gateways with non-empty notes" My first idea was to create a report package with one model document, and reference a model search in the SearchName.
As model search I created a custom SQL search, like this (only for testing without any WHERE clause):
Select
ea_guid AS CLASSGUID, Object_Type AS CLASSTYPE, name as Name, Object_Type as Type
from t_object
When I try this search in the Find dialog, it returns results (obviously

.
When I generate the HTML report on the report package, it is empty. I also tried with Common Searches to just search for an existing package name, report is empty too.
Now I read in the HTML reports PDF documentation on sparx website, that you would create a model document by adding elements to the model document, but explicitly not by adding a model search.
So is the model search approach not possible with HTML reports? Is there any other way to achieve this, maybe by modifying the javascript templates?
Thanks in advance,
Martin