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