UFN_BBNC_GETCONSTITUENLINKPAGEID
Returns the ID for the constituent link page for Blackbaud Internet Solutions.
Return
Return Type |
---|
uniqueidentifier |
Definition
Copy
CREATE function dbo.UFN_BBNC_GETCONSTITUENLINKPAGEID()
returns uniqueidentifier
as
begin
return
(
select top 1
[NETCOMMUNITYDEFAULTCODEMAP].[CONSTITUENTLINKPAGEID]
from
dbo.NETCOMMUNITYDEFAULTCODEMAP
);
end