Sparx Systems Forum

Pro Cloud Server / Prolaborate / WebEA => PCS General Board => Topic started by: Guillaume on November 25, 2020, 10:24:25 pm

Title: Prolaborate Custom reports questions
Post by: Guillaume on November 25, 2020, 10:24:25 pm
Hello,

I created a custom report with a query to list all attributes in a class model: Package + Class name + attribute name.

To let users click on a class to see the properties, I included the ClassGuid and BaseType columns e.g.
select t_object.ea_guid as CLASSGUID, t_object.object_type as hide_BaseType, t_package.Name as Package, t_object.Name as Name, t_attribute.Name as Attribute ...

The class name to click requires the column to be called "Name". Is there a way to replace it with a different header such as Class (could we make Name_Class be interpreted as the clickable column and show Class as the header?). 

Also, would it be possible to add a support with specific keywords so we can open a class attribute directly?

Thanks
Title: Re: Prolaborate Custom reports questions
Post by: Prolaborate Support on December 09, 2020, 10:44:19 pm
The class name to click requires the column to be called "Name". Is there a way to replace it with a different header such as Class (could we make Name_Class be interpreted as the clickable column and show Class as the header?). 
Can you try giving the alias as Class to Name? It should work!

Also, would it be possible to add a support with specific keywords so we can open a class attribute directly?
We will add this to the Prolaborate backlog and will let you know when we take it up.

To let users click on a class to see the properties, I included the ClassGuid and BaseType columns e.g.
Just to be clear, just adding ClassGUID alias enables clicking capability.
Title: Re: Prolaborate Custom reports questions
Post by: Guillaume on December 09, 2020, 11:07:30 pm
If I use  t_object.Name as Name, I can click on the Class to see the properties, but if I change it to  t_object.Name as ClassName, it's not clickable.

Thank you for taking into account the feature request.
Title: Re: Prolaborate Custom reports questions
Post by: Prolaborate Support on December 16, 2020, 01:38:58 am
Quote
If I use  t_object.Name as Name, I can click on the Class to see the properties, but if I change it to  t_object.Name as ClassName, it's not clickable.
We will add this to the Prolaborate backlog and will let you know when we take it up.