USP_BBNC_DONATION_GETTRANIDPROCESSORID
Retrieves the Blackbaud Internet Solutions transaction and processor id fields for a donation batch row.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN |
Definition
Copy
CREATE procedure dbo.USP_BBNC_DONATION_GETTRANIDPROCESSORID(@ID uniqueidentifier)
as
select top 1
BBNCTRANID, NETCOMMUNITYTRANSACTIONPROCESSORID
from
dbo.BATCHBBNCDONATION
where
ID = @ID;