UFN_BBNC_GETTRIBUTEMAPID

Returns the integer tribute mapping ID for the specified TRIBUTE ID for Blackbaud Internet Solutions.

Return

Return Type
int

Parameters

Parameter Parameter Type Mode Description
@TRIBUTEID uniqueidentifier IN

Definition

Copy


            CREATE function dbo.UFN_BBNC_GETTRIBUTEMAPID
            (
                @TRIBUTEID uniqueidentifier
            )
            returns int
            as
            begin
                return 
                (
                    select top 1 ID
                    from dbo.BBNCTRIBUTEIDMAP
                    where TRIBUTEID = @TRIBUTEID
                );
            end