UFN_ADJUSTMENTREASONCODE_DIRECTDEBITREJECTEDDEFAULTCOUNT

Returns the number of adjustment reason codes marked as the direct debit rejected default.

Return

Return Type
int

Definition

Copy


            create function dbo.UFN_ADJUSTMENTREASONCODE_DIRECTDEBITREJECTEDDEFAULTCOUNT()
            returns int
            as begin
                return (select count(*) from dbo.ADJUSTMENTREASONCODE where (ISDIRECTDEBITREJECTEDDEFAULT = 1))
            end