USP_EFTPROCESSES_GETEFTHEADERCOUNT
Retrieves the number of rows in the EFTHEADER table used for EFT process validation.
Definition
Copy
create procedure dbo.USP_EFTPROCESSES_GETEFTHEADERCOUNT
as
set nocount on;
select COUNT = count(ID) from dbo.EFTHEADER;