UFN_CONSTITUENT_GETMATCHEDTOTAL

Returns the total amount matched for a constituent by an organization for matching gift claims based in the organization currency.

Return

Return Type
money

Parameters

Parameter Parameter Type Mode Description
@CONSTITUENTID uniqueidentifier IN
@MATCHINGORGANIZATIONID uniqueidentifier IN

Definition

Copy


            CREATE function dbo.UFN_CONSTITUENT_GETMATCHEDTOTAL
            (
                @CONSTITUENTID uniqueidentifier = null,
                @MATCHINGORGANIZATIONID uniqueidentifier = null
            ) 
            returns 
            money
            as
            begin
                return dbo.UFN_CONSTITUENT_GETMATCHEDTOTALINCURRENCY(@CONSTITUENTID, @MATCHINGORGANIZATIONID, default);
            end