UFN_PROSPECTRESEARCHTEMPLATESECTION_SECTIONCODE_GETDESCRIPTION
Return
Return Type |
---|
nvarchar(31) |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | tinyint | IN |
Definition
Copy
/*
Generated by Blackbaud AppFx Platform
Date: 10/23/2017 7:38:51 AM
Assembly Version: Blackbaud.AppFx.Platform.SqlClr, Version=4.0.173.0, Culture=neutral, PublicKeyToken=null
Copyright Blackbaud
*/
CREATE FUNCTION dbo.UFN_PROSPECTRESEARCHTEMPLATESECTION_SECTIONCODE_GETDESCRIPTION(@ID tinyint)
RETURNS nvarchar(31) WITH EXECUTE AS CALLER
AS
begin
return case @ID
when 1 then 'Prospect overview'
when 2 then 'Research summary'
when 3 then 'Additional prospect details'
when 4 then 'Spouse details'
when 5 then 'Giving summary'
when 6 then 'Model scores and ratings'
when 7 then 'Wealth point summary'
when 8 then 'Philanthropic sapacity'
when 9 then 'Constituencies'
when 10 then 'Interests'
when 11 then 'Constituent attributes'
when 12 then 'Educational history'
when 13 then 'Philanthropic gifts (collapsed)'
when 14 then 'Whos Who biographical summary'
when 15 then 'Whos Who biographical details'
when 16 then 'Real estate'
when 17 then 'Business ownership'
when 18 then 'Securities'
when 19 then 'Income'
when 20 then 'Affluence indicators'
when 21 then 'Nonprofit affiliations'
when 22 then 'Private foundations'
when 23 then 'Political donations'
when 24 then 'Other assets'
when 25 then 'Relationships'
when 26 then 'Extended network'
when 27 then 'Notes'
when 28 then 'Contact Information'
when 29 then 'Giving Summary Chart'
when 30 then 'Asset Distribution Chart'
when 31 then 'Philanthropic gifts (expanded)'
end
end