UFN_R68REFUNDDETAIL_INCLUDETRANSITIONALAMOUNTCODE_GETID

Return

Return Type
tinyint

Parameters

Parameter Parameter Type Mode Description
@Description nvarchar(48) IN

Definition

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

    return case @Description
        when 'Calculate whether to include in tax claim amount' then 0
        when 'Include in tax claim amount' then 1
        when 'Exclude from tax claim amount' then 2
        else -1
        end 

end