UFN_BBNC_GETCONSTITMAPID

Returns the integer mapping ID for the specified CONSTITUENT ID for Blackbaud Internet Solutions.

Return

Return Type
int

Parameters

Parameter Parameter Type Mode Description
@CONSTITUENTID uniqueidentifier IN

Definition

Copy


            CREATE function dbo.UFN_BBNC_GETCONSTITMAPID(@CONSTITUENTID uniqueidentifier) 
            returns int
            as begin
                return (
                    select top 1 SEQUENCEID
                    from dbo.CONSTITUENT
                    where ID = @CONSTITUENTID
                    )
            end