UFN_KPIINSTANCE_GETNAME

Return

Return Type
nvarchar(255)

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


create function dbo.UFN_KPIINSTANCE_GETNAME(@ID uniqueidentifier)
returns nvarchar(255)
as
begin
    declare @KPIINSTANCENAME nvarchar(255);

    select @KPIINSTANCENAME = NAME from dbo.KPIINSTANCE where ID = @ID;

    return @KPIINSTANCENAME;
end;