Scalar-valued Functions [dbo].[ufnGetAccountingStartDate]
Scalar function used in the uSalesOrderHeader trigger to set the ending account date.
PropertyValue
ANSI Nulls OnTrue
Quoted Identifier OnTrue

CREATE FUNCTION [dbo].[ufnGetAccountingStartDate]()
RETURNS [datetime]
AS
BEGIN
   RETURN CONVERT(datetime, '20030701', 112);
END;
GO
EXEC sp_addextendedproperty N'MS_Description', N'Scalar function used in the uSalesOrderHeader trigger to set the ending account date.', 'SCHEMA', N'dbo', 'FUNCTION', N'ufnGetAccountingStartDate', NULL, NULL
GO