USP_BBNC_GETTRANSACTIONPROCESSORS
Retrieves a list of Blackbaud Internet Solutions transaction types and their associated processors.
Definition
Copy
CREATE procedure dbo.USP_BBNC_GETTRANSACTIONPROCESSORS
as
set nocount on;
select ID,
[NAME],
BATCHTEMPLATEID,
ASSEMBLYNAME,
CLASSNAME
from dbo.NETCOMMUNITYTRANSACTIONPROCESSOR
order by [NAME];