UFN_BANKACCOUNTDEPOSIT_POSTSTATUSCODE_GETDESCRIPTION

Return

Return Type
nvarchar(14)

Parameters

Parameter Parameter Type Mode Description
@ID tinyint IN

Definition

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

    return case @ID
        when 1 then 'Not yet posted'
        when 2 then 'Posted'
        when 3 then 'Do not post'    
    end

end