UFN_RESEARCHGROUP_POPULATEMETHODCODE_GETDESCRIPTION

Return

Return Type
nvarchar(24)

Parameters

Parameter Parameter Type Mode Description
@ID tinyint IN

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  11/11/2014 4:03:16 PM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=4.0.2.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_RESEARCHGROUP_POPULATEMETHODCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(24) WITH EXECUTE AS CALLER
AS
begin

    return case @ID
        when 0 then 'Add prospects only'
        when 1 then 'Add and remove prospects'    
    end

end