SPLOADRECORD_LOADINCOMPLETEDONATIONTRANSACTIONS
Definition
Copy
CREATE procedure dbo.SPLOADRECORD_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