UFN_STEWARDSHIPPLANASSIGNMENTPROCESS_MODECODE_GETDESCRIPTION

Return

Return Type
nvarchar(58)

Parameters

Parameter Parameter Type Mode Description
@ID tinyint IN

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  8/17/2011 2:19:39 PM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=2.91.1535.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_STEWARDSHIPPLANASSIGNMENTPROCESS_MODECODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(58) WITH EXECUTE AS CALLER
AS
begin

    return case @ID
        when 0 then 'Replace an officer on an existing stewardship plan'
        when 1 then 'Assign an officer to roles on an existing stewardship plan'    
    end

end