spLoadRecord_DonationEReceipt

Parameters

Parameter Parameter Type Mode Description
@PKID int IN

Definition

Copy


            CREATE procedure [dbo].[spLoadRecord_DonationEReceipt](@PKID int) as
                select
                    DonationTransactionsID,
                    LinkKey,
                    PDF,
                    DateCreated,
                    Stack,
                    Sequence
                from dbo.DonationEReceipt
                where ID = @PKID;