UFN_EVENTCONFLICT_NOCONFLICTS

Returns true for a record in event conflict table if the event has no conflicts.

Return

Return Type
bit

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


            CREATE function dbo.UFN_EVENTCONFLICT_NOCONFLICTS
            (
                @ID uniqueidentifier
            )returns bit
            as
            begin
                if exists (select ID from dbo.UFN_EVENTCONFLICT_GETCONFLICTINGEVENTS(@ID))
                    return 0;
                else
                    return 1;
            return 0;
            end