Version:

MarketplaceSupport

Best practice for views


views

Identifier

Have the project/facet identifier as prefix in the view Identifier, and in the displayname. For example:

View identifier

Concept Prefixes

Always have a prefix on each concept:

View prefix

Suggested prefixes:

  • Repository: repo_
  • Account: acc_
  • Group: grp_
  • Application: app_
  • Permission: perm_
  • Identity: idt_
  • Organization: org_

View parameters

Always set the type of the parameter, so that you know what variables you can pass from the page.

Also try to have the concept's prefix in the parameter's identifier, so that the caller knows what concept the parameter is used on.

View parameters

If done so, the parameter name will match the concept field it is used to filter (idt_uid = idt_uid), as can be seen here:

View overview

Returned attributes

For performances reasons, prefer to return only required attributes.

Computed columns

Computed columns should start with an underscore (same rule as in discoveries), so that you known which fields come as is from the DB or are computed in the view.

Sort

Always add a sort to the views so that the list presented to the end user is consistent between sessions.
Try to be consistent with how the data is presented to the user.
For instance, if you list an Identity's accounts in a table, and the first column of the table is the account login, then sort the underlying view on the account login.

If you return multiple concepts, then there should be a sort on each concept, also in accordance with how the data is shown to the user (depending on the table).

Filtering

Avoid filters directly in the view, but use saved rule results when possible.
For instance:

View saved rule

Custom Attributes

To avoid having to handle columns that have obscure names like id_custom8 and acc_custom5, add an Alias to custom attributes in the views:

Custom Attributes


Business Views

The same as for views applies for BusinessViews (use the project/facet prefix in the identifier and in the displayname).
If the view requires no javascript, then have it point to an empty.javascript file so that you have less javascript files in the project, and that you know everything is done in the BV.

Business View definition

BusinessView parameters

Try to have the same parameter names as the underlying views.

Names

Add labels to the sources and filters items in the view:

BusinessView labels

IN THIS PAGE