USP_DATALIST_CONSTITUENT_GIVINGHISTORY

This datalist returns all of a constituent's gifts.

Parameters

Parameter Parameter Type Mode Description
@CONSTITUENTID uniqueidentifier IN Input parameter indicating the context ID for the data list.
@INCLUDESOFTCREDIT bit IN Include soft credits
@NUMBERTOSHOWCODE smallint IN Show
@CURRENTAPPUSERID uniqueidentifier IN Input parameter indicating the ID of the current user.

Definition

Copy


            CREATE procedure dbo.USP_DATALIST_CONSTITUENT_GIVINGHISTORY
            (
                @CONSTITUENTID uniqueidentifier,
                @INCLUDESOFTCREDIT bit = 0,
                @NUMBERTOSHOWCODE smallint = 0,
        @CURRENTAPPUSERID uniqueidentifier
            ) as
                set nocount on;

                exec dbo.USP_CONSTITUENT_GETGIVINGHISTORY @CONSTITUENTID, @INCLUDESOFTCREDIT, @NUMBERTOSHOWCODE, @CURRENTAPPUSERID;