USP_BBNC_GETTRANSACTIONPROCESSOR

Retrieves the Blackbaud Internet Solutions transaction processor associated with the specified id.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


            CREATE procedure dbo.USP_BBNC_GETTRANSACTIONPROCESSOR(@ID uniqueidentifier)

            as

            set nocount on;            

            select ID, 
            [NAME],
            BATCHTEMPLATEID,
            ASSEMBLYNAME,
            CLASSNAME,
            SPLITTRANSACTIONS
            from dbo.NETCOMMUNITYTRANSACTIONPROCESSOR
            where ID = @ID;