USP_REPORT_DUPLICATECONSTITUENTSRECORDSOURCE

Returns a list of tables that could serve as the record source for the Duplicate Constituent Report

Definition

Copy


            create procedure dbo.USP_REPORT_DUPLICATECONSTITUENTSRECORDSOURCE
            with execute as owner
            as
                select
                    FRIENDLYNAME,
                    TABLENAME
                from
                    dbo.DUPLICATECONSTITUENTSEARCHRESULTSTABLE;

                return 0;