UFN_CONSTITUENT_ISMAJORDONOR

Validates whether the constituent record is a Major donor.

Return

Return Type
bit

Parameters

Parameter Parameter Type Mode Description
@CONSTITUENTID uniqueidentifier IN

Definition

Copy


CREATE function dbo.UFN_CONSTITUENT_ISMAJORDONOR
(
  @CONSTITUENTID uniqueidentifier
)
returns bit
with execute as caller as
begin

  if exists(select 1 from dbo.UFN_SELECTION_CONSTITUENT_MAJORDONORS() where ID = @CONSTITUENTID)
    return 1;

  return 0;
end