UFN_BBNC_GETPAGEIDSFORMAPPINGRULE

Returns the page IDs 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_GETPAGEIDSFORMAPPINGRULE
            (
                @NETCOMMUNITYMAPPINGRULEID uniqueidentifier
            )
            returns table
            as return
            (
                select
                    ID,
                    PAGEID,
                    SEQUENCE
                from dbo.NETCOMMUNITYMAPPINGRULEPAGEID
                where NETCOMMUNITYMAPPINGRULEID = @NETCOMMUNITYMAPPINGRULEID
            )