wikibot
function
|
dbo.ufnGetAccountingEndDate
|
CREATE FUNCTION [dbo].[ufnGetAccountingEndDate]()
RETURNS [datetime]
AS
BEGIN
RETURN DATEADD(millisecond, -2, CONVERT(datetime, '20040701', 112));
END;
automatically generated
function
|
dbo.ufnGetAccountingEndDate
|
Description
|
Scalar function used in the uSalesOrderHeader trigger to set the starting account date.
|
CREATE FUNCTION [dbo].[ufnGetAccountingEndDate]()
RETURNS [datetime]
AS
BEGIN
RETURN DATEADD(millisecond, -2, CONVERT(datetime, '20040701', 112));
END;