UFN_PDACCOUNTSTRUCTURE_SEPARATORCODE_GETDESCRIPTION
Return
Return Type |
---|
nvarchar(14) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | tinyint | IN |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 2/1/2011 8:58:26 AM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=2.9.1001.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_PDACCOUNTSTRUCTURE_SEPARATORCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(14) WITH EXECUTE AS CALLER
AS
begin
return case @ID
when 1 then '- Hyphen'
when 2 then ', Comma'
when 3 then '/ Slash'
when 4 then '; Semicolon'
when 5 then '. Period'
when 6 then '<No separator>'
end
end