UFN_CREDITCARDUPDATE_ACTIONCODE_GETDESCRIPTION

Return

Return Type
nvarchar(20)

Parameters

Parameter Parameter Type Mode Description
@ID tinyint IN

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  1/21/2016 5:06:31 PM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=4.0.154.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_CREDITCARDUPDATE_ACTIONCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(20) WITH EXECUTE AS CALLER
AS
begin

    return case @ID
        when 0 then 'Need to contact'
        when 1 then 'No additional action'    
    end

end