UFN_COMMUNICATIONLETTER_PAPERSIZECODE_GETDESCRIPTION
Return
| Return Type |
|---|
| nvarchar(6) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | tinyint | IN |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 8/17/2011 2:19:39 PM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=2.91.1535.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_COMMUNICATIONLETTER_PAPERSIZECODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(6) WITH EXECUTE AS CALLER
AS
begin
return case @ID
when 0 then 'Letter'
when 1 then 'A4'
end
end