Datadictionary OpenWave 3.1.32
Previous topic Chapter index Next topic

View: vwfrmdocumenttype

 

 

Schema

public

 

Owner

waveuser005

 

Descriptions

View van documenttypes zoals o.m. bedoeld in de Gelderse zaaktypecatalogus voor uploads naar DMS. Basistabel tbdocumenttype

 

Fields

Name

Data type

Description

dnkey

integer

De primary key van het documenttype (tbdocumenttype.dnkey).

dnkeycompartiment

integer

Foreign key naar tbcompartiment.dnkey.

dvdoctype

varchar(80)

Omschrijving bijvoorbeeld verzoek om aanvullende informatie, statusmelding, ontvangsbevestiging.

dvid

varchar(80)

Wordt niet meer gebruikt.

dvcompartimentnaam

varchar(50)

Naam van het compartiment bijv. omgevingsdient Y of gemeente X.

ddvervaldatum

timestamp

Datum waarvanaf type niet meer gebruikt kan worden voor upload naar DMS.

dlisdoctypebodem

char(1)

T of F. Indien T dan is het betreffende type een bodem/BIS type.

dvzgwuuid

varchar(40)

De uuid voor het documenttype (informatieobjecttype) zoals bedoeld in de ZGW (zaak gericht werken c.q. Open Zaak)-API.

 

Rules

Name

Event

Instead

Condition

Description

_RETURN

SELECT

 

 

 

Indices

There are no indices for table vwfrmdocumenttype

 

Definition

CREATE VIEW public.vwfrmdocumenttype (
   dnkey,
   dnkeycompartiment,
   dvdoctype,
   dvid,
   dvcompartimentnaam,
   ddvervaldatum,
   dlisdoctypebodem,
   dvzgwuuid)
AS
SELECT
a.dnkey,
   a.dnkeycompartiment,
   a.dvdoctype,
   a.dvid,
   b.dvnaam AS dvcompartimentnaam,
   a.ddvervaldatum,
   a.dlisdoctypebodem,
   a.dvzgwuuid
FROM tbdocumenttype a
    LEFT JOIN tbcompartiment b ON a.dnkeycompartiment = b.dnkey;

COMMENT ON VIEW public.vwfrmdocumenttype
IS 'View van documenttypes zoals o.m. bedoeld in de Gelderse zaaktypecatalogus voor uploads naar DMS. Basistabel tbdocumenttype';

COMMENT ON COLUMN public.vwfrmdocumenttype.dnkey
IS 'De primary key van het documenttype (tbdocumenttype.dnkey).';

COMMENT ON COLUMN public.vwfrmdocumenttype.dnkeycompartiment
IS 'Foreign key naar tbcompartiment.dnkey.';

COMMENT ON COLUMN public.vwfrmdocumenttype.dvdoctype
IS 'Omschrijving bijvoorbeeld verzoek om aanvullende informatie, statusmelding, ontvangsbevestiging.';

COMMENT ON COLUMN public.vwfrmdocumenttype.dvid
IS 'Wordt niet meer gebruikt.';

COMMENT ON COLUMN public.vwfrmdocumenttype.dvcompartimentnaam
IS 'Naam van het compartiment bijv. omgevingsdient Y of gemeente X.';

COMMENT ON COLUMN public.vwfrmdocumenttype.ddvervaldatum
IS 'Datum waarvanaf type niet meer gebruikt kan worden voor upload naar DMS.';

COMMENT ON COLUMN public.vwfrmdocumenttype.dlisdoctypebodem
IS 'T of F. Indien T dan is het betreffende type een bodem/BIS type.';

COMMENT ON COLUMN public.vwfrmdocumenttype.dvzgwuuid
IS 'De uuid voor het documenttype (informatieobjecttype) zoals bedoeld in de ZGW (zaak gericht werken c.q. Open Zaak)-API.';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 2-5-2025 13:49
Previous topic Chapter index Next topic