UFN_CONSTITUENT_ISLOYALDONOR
Validates whether the constituent record is a Loyal donor.
Return
| Return Type |
|---|
| bit |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @CONSTITUENTID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_CONSTITUENT_ISLOYALDONOR
(
@CONSTITUENTID uniqueidentifier
)
returns bit
with execute as caller as
begin
if exists(select 1 from dbo.UFN_SELECTION_CONSTITUENT_LOYALDONORS() where ID = @CONSTITUENTID)
return 1;
return 0;
end