Datadictionary OpenWave 3.1.25
Previous topic Chapter index Next topic

View: vwfrmmissingconfiguration

 

 

Schema

public

 

Owner

waveuser005

 

Descriptions

View van tabel tbmissingobjects die door de programmatuur gevuld wordt indien er een fout optreedt door ontbrekende instellingen

 

Fields

Name

Data type

Description

dnkey

integer

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.

dvmwvoluit

varchar(62)

Medewerkersnaam voluit

dvdatum

text

ddatum maar dan voluit als string met tijd

 

Rules

Name

Event

Instead

Condition

Description

_RETURN

SELECT

 

 

 

Indices

There are no indices for table vwfrmmissingconfiguration

 

Definition

CREATE VIEW public.vwfrmmissingconfiguration (
   dnkey,
   dddatum,
   dvmwcode,
   dvapinaam,
   dvfoutcode,
   dvfoutbeschrijving,
   dvmwvoluit,
   dvdatum)
AS
SELECT
a.dnkey,
   a.dddatum,
   a.dvmwcode,
   a.dvapinaam,
   a.dvfoutcode,
   a.dvfoutbeschrijving,
   
(((((b.dvomschrijving::text || ', '::text) || COALESCE(b.dvvoorletters,
       ''::character varying)::text) || ' '::text) || COALESCE(b.dvtussenvoegsel, ''::character varying)::text))::character varying(62) AS dvmwvoluit,
   to_char(a.dddatum, 'dd-mm-yyyy HH24:MI:SS'::text) AS dvdatum
FROM tbmissingconfiguration a
    LEFT JOIN tbmedewerkers b ON a.dvmwcode = b.dvcode;

COMMENT ON VIEW public.vwfrmmissingconfiguration
IS 'View van tabel tbmissingobjects die door de programmatuur gevuld wordt indien er een fout optreedt door ontbrekende instellingen';

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

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

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

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

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

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

COMMENT ON COLUMN public.vwfrmmissingconfiguration.dvmwvoluit
IS 'Medewerkersnaam voluit';

COMMENT ON COLUMN public.vwfrmmissingconfiguration.dvdatum
IS 'ddatum maar dan voluit als string met tijd';

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