UFN_PLANPARTICIPANTCANDIDATE_GETNAME

Return

Return Type
nvarchar(154)

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


            create function dbo.UFN_PLANPARTICIPANTCANDIDATE_GETNAME
            (
                @ID uniqueidentifier
            )
            returns nvarchar(154)
            with execute as caller
            as
            begin
                declare @NAME nvarchar(154);
                select @NAME = dbo.UFN_CONSTITUENT_BUILDNAME(@ID);
                return coalesce(@NAME, '');
            end