Adding more details to a list view and providing additional filtering options can help business users in their daily tasks as you scale Data Governance across multiple teams, geographies, or business functions.
In this article weβll customize the Business Glossary to show additional term attributes as columns in the list view and to enable filtering by those attributes. This approach generally works across the Ataccama ONE Web app, so you can use this article as a guide to customize other pages, for example Rules, Catalog Items, or Monitoring Projects.
You donβt have to be a developer to follow this guide. If you come across any concepts youβre not familiar with, have a look at our documentation.
Adding columns
First, navigate to the Business Glossaryβs Terms list. In the top right, find the 3-dot menu which features the option to Edit page.

In the side bar that opens up, go to the Layout tab. Youβll see the JSON that describes how the objects are shown on this page when the web app loads it.
Locate βcolumnsβ
and see how the columns on the Terms page correspond to the respective definitions in the JSON, e.g. βnameβ
, βtypeβ
, βabbreviationβ
and βdqEvaltermAggrβ
.

π‘ The page layout references entity and property names defined by the Metadata Model. If you reference some property name that doesnβt actually exist, the app wonβt be able to fetch anything to display in that column.You can lookup the Metadata Model for the entity youβre interested in and see what its properties are called.
Now, we want the owner, the steward and the business domain of each term to appear in the list view. At the same time, weβre not actively using abbreviations, so we might as well hide this column.
Hereβs what the changes are going to look like:

Here weβve added the parameter for the abbreviation column to disable it, and added the definitions for the 3 new columns we want to place in the list view.
Weβve also changed the value of βsplitIndexβ
from 5 to 2. The βblank spaceβ which serves as a visual separator within the grid will appear in the position of the 2nd column, after Name.
Hereβs what the result looks like once we Save and publish.

π‘ Youβll notice Business Domain isnβt a standard property that Terms have out of the box. As an Application Admin, you can add custom properties to the Metadata Model - hereβs how weβve added Business Domain as a dropdown/picklist property type.
π‘When adding referenced properties to the screen layout of a list view, you may want to make them not only visible, but also sortable. In this case a different approach should be used. To make property columns sortable, the column definition should provide the details about the property of the target entity that's referenced from the current property. For example, for the owner property of a term, which references the username property of a person, this is what the column definition will look like:
"username": {
"name": "Owner",
"dataPath": [
"owner",
"username"
],
"renderer": {
"_type": "entity.scalar.tableCell"
},
"extraFetchRules": [
{
"pattern": "./owner/*"
}
]
},
Adding Filters
To make it even easier to find items in the Glossary, letβs make an additional filtering option from the property Business Domain.
Go to Global Settings >> Search Configurations >> term. Notice that thereβs already a number of nodes and their properties being indexed to power search in the app.
For businessDomain
, the setup will be similar to what youβll see for owner
/steward
if you explore the search configuration. Just like owner
and steward
, businessDomain
is a referenced property that targets another standalone entity defined in the Metadata Model. Taking that into account, hereβs how weβll go about setting up search and filtering.
First, weβll add businessDomain
as a new Indexed Node with its name
as the Indexed Property:

Then, weβll open the Indexed Node term
and add an Indexed Property businessDomain
.

Finally, weβll Add a Property Search filter called Domain, set as the property name
of businessDomain
(since weβll want to be able to filter using the value of the business domain name).

Make sure to also Add Indexed Property Ref. In the Target field, once again look for the name
property related to Search Configuration > term > businessDomain.

Once weβve published the changes in the Search Configuration, the Terms listing will show a new filter:

Did you follow along? If you have any questions or thoughts please share them in the comments below.
P.S.If you liked this tutorial, keep an eye out for more articles on customizing the Ataccama ONE web app!