USP_LOADRECORD_LOADINCOMPLETEDONATIONTRANSACTIONS
Definition
Copy
create procedure dbo.USP_LOADRECORD_LOADINCOMPLETEDONATIONTRANSACTIONS
as
begin
select DonationTransactionsID,DateAdded,TransactionGUID
FROM dbo.[DonationTransactions]
where
STATUS = 0 and
ISDELETED = 0 and
FAILUREDATA is null and
processed_date is null;
end