public.offeredforecastdata

public.offeredforecastdata

Description

Columns

Name Type Default Nullable Children Parents Comment
keyid varchar(150) false
businessunitid varchar(50) true
scheduleid varchar(50) true
planninggroup varchar(50) true
shorttermforecastid varchar(50) true
startdate timestamp without time zone true
startdateltc timestamp without time zone true
weekdate date true
week bigint true
avghandleperinterval numeric(20,2) true
offeredperinterval numeric(20,2) true
canuseforscheduling boolean true
updated timestamp without time zone true

Constraints

Name Type Definition
offeredforecastdata_pkey PRIMARY KEY PRIMARY KEY (keyid)

Indexes

Name Definition
offeredforecastdata_pkey CREATE UNIQUE INDEX offeredforecastdata_pkey ON public.offeredforecastdata USING btree (keyid)
ix_offeredforecastdata_weekdate CREATE INDEX ix_offeredforecastdata_weekdate ON public.offeredforecastdata USING btree (weekdate)

    • Related Articles

    • public.vwofferedforecast

      Description Table Definition CREATE VIEW vwofferedforecast AS ( SELECT DISTINCT ofd.keyid, ofd.businessunitid, bu.name AS "BUSINESSUNITNAME", ofd.scheduleid, scd.description AS "SCHEDULEDESC", ofd.planninggroup AS "PLANNINGGROUPID", pgd.name AS ...
    • public.mvwconvvoiceoverviewdata

      Description Columns Name Type Default Nullable Children Parents Comment conversationid varchar(50) false sentimentscore numeric(20,2) true sentimenttrend numeric(20,2) true agentdurationpercentage numeric(20,2) true customerdurationpercentage ...
    • public.mvwconvvoicesentimentdetaildata

      Description Columns Name Type Default Nullable Children Parents Comment keyid varchar(100) false conversationid varchar(50) true starttime timestamp without time zone true starttimeltc timestamp without time zone true duration numeric(20,2) true ...
    • public.vwteammemberdata

      Description Team Member Data View Table Definition CREATE VIEW vwteammemberdata AS ( SELECT tm.userid, ud.name AS "Agent Name", td.name AS "Team Name" FROM ((teammemberdata tm LEFT JOIN vwuserdetail ud ON (((tm.userid)::text = (ud.id)::text))) LEFT ...
    • public.jobminimumdefinition

      Description Columns Name Type Default Nullable Children Parents Comment jobid integer nextval(‘jobminimumdefinition_jobid_seq’::regclass) false jobname varchar(255) true maxsyncspan varchar(50) true lookbackspan varchar(50) true Constraints Name Type ...