UFN_BBNC_GETTRIBUTEIDFROMMAPID

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

Return

Return Type
uniqueidentifier

Parameters

Parameter Parameter Type Mode Description
@ID int IN

Definition

Copy


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