USP_BACSPROCESSES_GETBACSHEADERCOUNT

Retrieves the number of rows in the BACSHEADER table used for BACS process validation.

Definition

Copy


            create procedure dbo.USP_BACSPROCESSES_GETBACSHEADERCOUNT
            as
                set nocount on;

                select COUNT = count(ID) from dbo.BACSHEADER;