UFN_BBNC_GETCONSTITACCOUNTMAPID

Returns the integer bank mapping ID for the specified CONSTITUENTACCOUNT ID for Blackbaud Internet Solutions.

Return

Return Type
int

Parameters

Parameter Parameter Type Mode Description
@CONSTITUENTACCOUNTID uniqueidentifier IN

Definition

Copy


            CREATE function dbo.UFN_BBNC_GETCONSTITACCOUNTMAPID(@CONSTITUENTACCOUNTID uniqueidentifier) 
            returns int
            as begin
                return (
                    select top 1 ID
                    from dbo.BBNCCONSTITACCOUNTIDMAP
                    where CONSTITUENTACCOUNTID = @CONSTITUENTACCOUNTID
                    )
            end