UFN_PDACCOUNTSTRUCTURE_GETNAME

Return

Return Type
nvarchar(50)

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


create function dbo.UFN_PDACCOUNTSTRUCTURE_GETNAME(@ID uniqueidentifier) returns nvarchar(50
with execute as caller as
begin
    declare @s nvarchar(50);
    select @s = DESCRIPTION from dbo.PDACCOUNTSTRUCTURE where ID = @ID;
    return @s;
end