UFN_MULTICURRENCYCONFIGURATION_DAILYEXCHANGERATEEXPIRATIONCODE_GETDESCRIPTION
Return
Return Type |
---|
nvarchar(14) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | tinyint | IN |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 11/30/2010 11:16:30 PM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=2.8.2022.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_MULTICURRENCYCONFIGURATION_DAILYEXCHANGERATEEXPIRATIONCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(14) WITH EXECUTE AS CALLER
AS
begin
return case @ID
when 0 then 'Never'
when 1 then 'Same day'
when 2 then 'In one day'
when 3 then 'In two days'
when 4 then 'In three days'
when 5 then 'In one week'
when 6 then 'In one month'
when 7 then 'In one quarter'
when 8 then 'In one year'
end
end