UFN_BBNC_GETBBISSITESFORMAPPINGRULE

Returns the sites used to filter a Blackbaud Internet Solutions transaction processor mapping rule, if any.

Return

Return Type
table

Parameters

Parameter Parameter Type Mode Description
@NETCOMMUNITYMAPPINGRULEID uniqueidentifier IN

Definition

Copy


            CREATE function dbo.UFN_BBNC_GETBBISSITESFORMAPPINGRULE
            (
                @NETCOMMUNITYMAPPINGRULEID uniqueidentifier
            )
            returns table
            as return
            (
                select
                    ID,
                    SITEID
                from dbo.NETCOMMUNITYMAPPINGRULESITEID
                where NETCOMMUNITYMAPPINGRULEID = @NETCOMMUNITYMAPPINGRULEID
            )