UFN_DECEASINGRULE_EFTSTATUSCODE_GETDESCRIPTION
Return
Return Type |
---|
nvarchar(10) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | tinyint | IN |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 4/27/2009 10:58:37 PM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=2.0.62.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_DECEASINGRULE_EFTSTATUSCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(10) WITH EXECUTE AS CALLER
AS
begin
return case @ID
when 0 then 'Prenotify'
when 1 then 'In process'
when 2 then 'EFT'
when 3 then 'Inactive'
end
end