View: dbo.Payroll_Journal_Entry_Status_View | |||
View definition | |||
CREATE VIEW dbo.Payroll_Journal_Entry_Status_View AS SELECT * FROM ( VALUES ( 1, N'None'), ( 2, N'CSA'), ( 3, N'QuickBooks'), ( 4, N'ACS'), ( 5, N'Completed'), ( 6, N'Partially Completed') ) AS T ( payroll_journal_entry_status_KEY, description ); | |||