UFN_BBNC_GETPAGEMAPPINGID
Returns the Blackbaud Internet Solutions Page ID for the matching system guid.
Return
Return Type |
---|
int |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_BBNC_GETPAGEMAPPINGID
(
@ID uniqueidentifier
)
returns int
as
begin
return coalesce((select top 1 PAGEID from dbo.NETCOMMUNITYPAGEMAPPING where ID = @ID), 0);
end