USP_BBNC_GETTRANSACTIONPROCESSORS_1_3

Retrieves a list of Blackbaud Internet Solutions transaction types and their associated processors.

Definition

Copy


            CREATE procedure dbo.USP_BBNC_GETTRANSACTIONPROCESSORS_1_3

            as

            set nocount on;            

            select 
                ID, 
                [NAME],
                BATCHTEMPLATEID,
                ASSEMBLYNAME,
                CLASSNAME,
                ISACTIVEPROCESSOR,
                MAXTRANSACTIONSPERBATCH
            from dbo.NETCOMMUNITYTRANSACTIONPROCESSOR
            order by [NAME];