UFN_CONSTITUENTSEARCH_DISPLAYNAME
Return
| Return Type |
|---|
| nvarchar(700) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_CONSTITUENTSEARCH_DISPLAYNAME(@ID uniqueidentifier)
returns nvarchar(700)
as begin
if @ID is null
return '';
return (
select NF.NAME
from dbo.UFN_CONSTITUENT_DISPLAYNAME(@ID) NF
);
end