dbo.ufnGetAccountingStartDate Function

Information

NameufnGetAccountingStartDate
TypeScalar
Created14.10.2005. 2:00:00

SQL Script

CREATE FUNCTION [dbo].[ufnGetAccountingStartDate]()
RETURNS [datetime] 
AS 
BEGIN
    RETURN '2003-07-01';
END;