USP_SIMPLEDATALIST_DUPLICATECONSTITUENTSRECORDSOURCE

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

Definition

Copy


                create procedure dbo.USP_SIMPLEDATALIST_DUPLICATECONSTITUENTSRECORDSOURCE as
                    select
                        TABLENAME as VALUE,
                        FRIENDLYNAME as LABEL
                    from
                        dbo.DUPLICATECONSTITUENTSEARCHRESULTSTABLE
                    order by FRIENDLYNAME;