Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

On this page you will find an introduction to the dashboard item Expected Next DC Updates.

The dashboard item Expected Next DC Updates shows a list of the data collections that are expecting new submissions based on the Update frequency defined in the data collection settings.

Items that have a Next Expected Update date that has already passed, are marked in red. You can define a buffer that will be taken into account when adding the alert to a missed update. For example, if an update was done within 5 days before the expected date, then this will trigger the date to be updated to the next one. The buffer is set in the Data Collection settings alongside the Update frequency and Frequency start date.

Configuration

To configure the Expected DC Updates item to a dashboard:

...

Note

Configuration must always be enclosed in curly brackets and if there more configurations than one seperated by a comma.

Icon

Choose an icon from the Material UI data base.

Code Block
icon: 'update'

Titel

Choose a titel for the dashboard element.

Code Block
title: {
    en: 'Last Updates Multipliers'
  }

Sort

Choose the sorting order of the updates.

Code Block
sort: 'ASC'
Code Block
sort: 'DESC'

Collection

Enter the code from the data collection whose updates shall be displayed.

Code Block
collections: [
    'MUL'
  ]

Limit

Set a limit of rows to be displayed.

Code Block
limit: 10

Display Date

Choose the type of date that shall be displayed: EDIT will consider both edits to existing submissions and new submissions whereas NEW considers only new submissions as updates.

...