UFN_REGISTRANT_ISCANCELLED_BULK

Returns a table of registrants and whether they belong to a canceled registration.

Return

Return Type
table

Definition

Copy


            CREATE function dbo.UFN_REGISTRANT_ISCANCELLED_BULK()
            returns table
            as return
            (
                select
                    [REGISTRANT].[ID],
                    [REGISTRANT].[ISCANCELLED]
                from dbo.[REGISTRANT]
            )