User Community Service Desk Downloads
If you can't find the product or version you're looking for, visit support.ataccama.com/downloads

Configuring Display Settings and Data Type Formats

Various display settings of MDM Web App can be configured on the GUI Preferences tab of the GUI Configuration in ONE Desktop. These include record detail, vertical comparison, and data type format settings described in this article.

For global and layer-specific data sampling, see Configuring Data Samples.

Record detail visualization

Record Detail Visualization section

There are three parameters for displaying related records preview in the record detail:

  • Related Entity Preview Limit - How many related records are listed by default.

  • Related Entity Preview Maximum - How many additional related records are shown after selecting Show More.

  • View Limit - Total number of related records loaded from the database (prevents performance issues when there are too many related records).

Vertical compare

Vertical Compare section

It is possible to turn off the vertical compare feature or adjust the threshold for the number of selected records that will default to the vertical compare view.

Data type formats

Data Type Formats

It is possible to change the format of values per data type in MDM Web App. To do that, open the GUI Configuration node in the model project and change the default formats.

Each data type has one or several preconfigured definitions. To access them, press Ctrl+Space

You can define your own custom format, too, as shown in the following example.

Date and datetime data types

Date and time are specified using the following pattern letters:

  • y - Year

  • M - Month

  • d - Day

  • H - Hours

  • m - Minutes

  • s - Seconds

  • S - Milliseconds

The number of pattern letters used for defining each part of the date influences the format.

Definition Result

dd.MM.yyyy

01.02.2015

dd.MM.yyyy HH:mm:ss

01.02.2015 03:04:05

dd.MM.yyyy HH:mm:ss.SSS

01.02.2015 03:04:05.600

yyyy-MM-dd

2015-02-01

yyyy-MM-dd HH:mm:ss

2015-02-01 03:04:05

yyyy-MM-dd HH:mm:ss.SSS

2015-02-01 03:04:05.600

If the format is not defined and the web application language is set to English, the following default definition is used from Google Web Toolkit:

Definition Result

yyyy MMM d HH:mm:ss

2015 Jan 1 01:02:03

To be able to filter data by datetime attributes in MDM Web App, the format should be configured so that it contains milliseconds, for example, yyyy-MM-dd HH:mm:ss.SSS.

Otherwise, you can only use the Add value option without making any manual changes to datetime values in the filter (see Searching for Data, section Search from the entity record listing).

For more detailed information about date and time formats, see the following:

Numeric data types

Numbers in the integer, long, and float formats are specified using the following symbols:

  • # - Stands for one digit. If a displayed number does not contain a digit in the position of a hash, the position will be empty.

  • 0 - Stands for one digit but related to 0-specific display options:

    • Before the decimal point for fractions like 0.25 instead of .25.

    • After the decimal point if you want to set the number of decimal places and specifically force displaying of zeros after the decimal point, for example, display 12,345.00 instead of 12,345.

  • , - A thousands separator (the actual separator symbol depends on the MDM Web App language settings).

  • . - Decimal mark (the actual decimal mark symbol depends on the MDM Web App language settings).

Examples for float

Format 123456789.0 .9 .99 .994 .995 .996

####.##

123456789

0.9

0.99

0.994

1

1

#,###.##

123 456 789

0.9

0.99

0.99

1

1

#,##0.##

123 456 789

0.9

0.99

0.99

1

1

#,##0.00

123 456 789.00

0.90

0.99

0.99

1.00

1.00

0,000.00

123 456 789.00

0 000.90

0 000.99

0 000.99

0 001.00

0 001.00

Examples for integer and long

Format 0 1234 123456789

#

0

1234

123456789

#,###,###

0

1 234

123 456 789

0,000,000

0 000 000

0 001 234

123 456 789

Was this page useful?