UFN_WEALTHPOINT_PENDINGCONSTITUENTS

Returns a table containing IDs of all constituents with a pending WealthPoint search.

Return

Return Type
table

Definition

Copy


            CREATE function [dbo].[UFN_WEALTHPOINT_PENDINGCONSTITUENTS](
            )
            returns table
            as
            return
            (
                select
                    [WEALTH].[ID] as ID
                from
                    [dbo].[WEALTH]
                where
                    [WEALTH].[PENDINGSEARCH] = 1    
            )