USP_NAMINGOPPORTUNITYHANDLINGCODE_GETENTRYDATA

Returns information about a table entry in the "Naming Opportunity Special Handling" code table.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN The ID of the table entry for which information is to be retrieved.

Definition

Copy
/*
Generated by Blackbaud AppFx Platform
Date:  12/17/2008 2:33:45 AM
Assembly Version:  Blackbaud.AppFx.Platform.SqlClr, Version=1.7.1271.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE PROCEDURE dbo.USP_NAMINGOPPORTUNITYHANDLINGCODE_GETENTRYDATA
(
@ID uniqueidentifier
)

as

SET NOCOUNT ON;

SELECT

DESCRIPTION,
[ACTIVE],
[SEQUENCE],
TSLONG

FROM dbo.NAMINGOPPORTUNITYHANDLINGCODE

WHERE ID=@ID;

return 0;