public.timeoffrequestdata
Description
WFM Time off requests entered by the Agents / or by proxys on their behalf
Columns
keyid |
varchar(100) |
|
false |
|
|
Primary Keyid |
id |
varchar(50) |
|
true |
|
|
Time Off Request GUID |
userid |
varchar(50) |
|
true |
|
|
Agent GUID |
isfulldayrequest |
bit(1) |
|
true |
|
|
If this a Full Day off request (True/False) |
status |
varchar(50) |
|
true |
|
|
Request Status |
startdate |
timestamp without time zone |
|
true |
|
|
Request Start Date (UTC) |
startdateltc |
timestamp without time zone |
|
true |
|
|
Request Start Date (LTC) |
notes |
varchar(400) |
|
true |
|
|
Request Notes |
timeoffduration |
integer |
|
true |
|
|
Request Duration |
submittedbyid |
varchar(50) |
|
true |
|
|
Request Submitted By GUID |
submittedate |
timestamp without time zone |
|
true |
|
|
Request Submitted Date (UTC) |
reviewedbyid |
varchar(50) |
|
true |
|
|
Request Reviewed By GUID |
revieweddate |
timestamp without time zone |
|
true |
|
|
Request Reviewed by Date (UTC) |
modifiedbyid |
varchar(50) |
|
true |
|
|
Request Modified By GUID |
modifieddate |
timestamp without time zone |
|
true |
|
|
Request Modified by Date (UTC) |
updated |
timestamp without time zone |
|
true |
|
|
|
Constraints
timeoffrequestdata_pkey |
PRIMARY KEY |
PRIMARY KEY (keyid) |
Indexes
timeoffrequestdata_pkey |
CREATE UNIQUE INDEX timeoffrequestdata_pkey ON public.timeoffrequestdata USING btree (keyid) |
Related Articles
public.vwtimeoffrequestdata
Description See TimeOffRequestData - Expands all the GUIDs with their lookups Table Definition CREATE VIEW vwtimeoffrequestdata AS ( SELECT tr.id, tr.userid, tr.isfulldayrequest, tr.status, tr.startdate, tr.notes, tr.timeoffduration, ...
public.z_wfmscheduledata
Description See WFMScheduleData: Data combining schedule and time off information Table Definition CREATE VIEW z_wfmscheduledata AS ( SELECT sc.userid, sc.shiftstartdate, sc.shiftlengthtime, sc.activitystartdate, sc.activitystartdateltc, ...
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 ...