Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel6
outlinefalse
styletypedefaultflat
typeseparatorflatpipe
printablefalse
Page Properties
idStart Page Tile

Description

The tile shows how many expired documents - Competence, Travel, Medical and Passports - exist in the system as of today based on the Standard Expiry crew list view.

Keywords

Documents, expiry

Category

Start Page

...

The tile shows how many expired documents - Competence, Travel, Medical, and Passports - exist in the system as of today based on the Standard Expiry crew list view.

Tile Preview

...

Data-source

Should be added in Setup > General Codes Table > Start Page > Datasource:

...

Expand
titleCompetence
Code Block
select 
count (PIN) 
from PW001SRV7
where DOC='Competence' and VALID< (Getdate()+30)
Expand
titleMedical
Code Block
select 
count (PIN) 
from PW001SRV7
where DOC='Medical' and VALID< Getdate()
Expand
titleTravel
Code Block
select 
count (PIN) 
from PW001SRV7
where DOC='Travel' and VALID< (Getdate()+60)
Expand
titlePassport
Code Block
select 
count (PIN) 
from PW001SRV7
where DOC='Passport' and VALID< (Getdate()+90)

Tile Setup

See the example of the setup for Expired Competences. Other document types can be set up in a similar way.

...

Type the text that should be shown on the tile in the Display Text field.

...