UFN_BBNC_CONSTITISORGANIZATION
Indicates if a constituent is an organization.
Return
Return Type |
---|
bit |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | int | IN |
Definition
Copy
create function dbo.UFN_BBNC_CONSTITISORGANIZATION(@ID int)
returns bit
as
begin
return coalesce((select CONSTITUENT.ISORGANIZATION from dbo.CONSTITUENT where SEQUENCEID = @ID), 0);
end