UFN_CONSTITUENT_ISPLANNEDGIVER

Validates whether the constituent has given any accepted planned gifts.

Return

Return Type
bit

Parameters

Parameter Parameter Type Mode Description
@CONSTITUENTID uniqueidentifier IN

Definition

Copy


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

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

  return 0;
end