UFN_RECURRINGGIFTSTATUSUPDATEPROCESS_TERMINATEDCODE_GETDESCRIPTION
Return
Return Type |
---|
nvarchar(105) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | tinyint | IN |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 11/11/2014 4:27:25 PM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=4.0.2.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_RECURRINGGIFTSTATUSUPDATEPROCESS_TERMINATEDCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(105) WITH EXECUTE AS CALLER
AS
begin
return case @ID
when 0 then 'Do not make recurring gifts terminated'
when 1 then 'Recurring gifts are terminated when they have x past due installment(s)'
when 2 then 'Recurring gifts are terminated when an installment has an unpaid balance x days past the installment date'
end
end