UFN_REVENUESPLITGIFTAID_ELIGIBLITYCODE_GETDESCRIPTION

Return

Return Type
nvarchar(20)

Parameters

Parameter Parameter Type Mode Description
@ID tinyint IN

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  7/16/2009 11:21:15 PM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=2.1.30.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_REVENUESPLITGIFTAID_ELIGIBLITYCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(20) WITH EXECUTE AS CALLER
AS
begin

    return case @ID
        when 0 then 'No Valid Declaration'
        when 1 then 'Valid Declaration'    
    end

end