Datadictionary OpenWave 3.1.25
Previous topic Chapter index Next topic

Table: tbmissingconfiguration

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel die door de programmatuur gevuld wordt indien er een fout optreedt door ontbrekende instellingen

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbmissingconfiguration_dnkey_seq'::regclass)

Primary key.

 

 

dddatum

timestamp

 

 

 

 

Datum/tijd dat omissie is geconstateerd

 

 

dvmwcode

char(5)

 

 

 

 

Medewerkerscode van de op dat moment ingelogde.

 

 

dvapinaam

varchar(100)

 

 

 

 

De naam van de api waar het eivel zich voordeed.

 

 

dvfoutcode

varchar(40)

 

 

 

 

De foutcode die de gebruike op het scherm te zien kreeg bijv 706.

 

 

dvfoutbeschrijving

varchar(400)

 

 

 

 

De uitleg bij de omisssie.

 

Foreign Keys

There are no foreign keys for table tbmissingconfiguration

 

Check Constraints

There are no check constraints for table tbmissingconfiguration

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbmissingconfiguration

btree

 

dnkey

 

idx_missingconfig_dddatum

btree

 

dddatum

 

 

 

 

Triggers

There are no triggers for table tbmissingconfiguration

 

Rules

There are no rules for table tbmissingconfiguration

 

Policies

There are no policies for table tbmissingconfiguration

 

Referenced

There are no tables referenced by table tbmissingconfiguration

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tbmissingconfiguration (
 dnkey SERIAL,
 dddatum TIMESTAMP WITHOUT TIME ZONE,
 dvmwcode CHAR(5),
 dvapinaam VARCHAR(100),
 dvfoutcode VARCHAR(40),
 dvfoutbeschrijving VARCHAR(400),
 CONSTRAINT cpk_tbmissingconfiguration PRIMARY KEY(dnkey)
) ;

COMMENT ON TABLE public.tbmissingconfiguration
IS 'Tabel die door de programmatuur gevuld wordt indien er een fout optreedt door ontbrekende instellingen';

COMMENT ON COLUMN public.tbmissingconfiguration.dnkey
IS 'Primary key.';

COMMENT ON COLUMN public.tbmissingconfiguration.dddatum
IS 'Datum/tijd dat omissie is geconstateerd';

COMMENT ON COLUMN public.tbmissingconfiguration.dvmwcode
IS 'Medewerkerscode van de op dat moment ingelogde.';

COMMENT ON COLUMN public.tbmissingconfiguration.dvapinaam
IS 'De naam van de api waar het eivel zich voordeed.';

COMMENT ON COLUMN public.tbmissingconfiguration.dvfoutcode
IS 'De foutcode die de gebruike op het scherm te zien kreeg bijv 706.';

COMMENT ON COLUMN public.tbmissingconfiguration.dvfoutbeschrijving
IS 'De uitleg bij de omisssie.';

CREATE INDEX idx_missingconfig_dddatum ON public.tbmissingconfiguration
 USING btree (dddatum);

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