UFN_PROSPECTPLANSTATUSCODE_GETDESCRIPTION
Returns the description for the given table entry ID.
Return
Return Type |
---|
nvarchar(100) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The ID used to look up the table entry description. |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 12/17/2008 2:06:50 AM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=1.7.1271.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_PROSPECTPLANSTATUSCODE_GETDESCRIPTION(@ID uniqueidentifier)
RETURNS nvarchar(100) WITH EXECUTE AS CALLER
AS
begin
declare @r nvarchar(100)
set @r=N''
select @r=DESCRIPTION FROM dbo.PROSPECTPLANSTATUSCODE WHERE ID = @ID
return @r
end