UFN_WEBDASHBOARDPAGE_GETTITLEBYID

Gets the title of a web dashboard page based on the ID.

Return

Return Type
nvarchar(200)

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


create function dbo.UFN_WEBDASHBOARDPAGE_GETTITLEBYID(@ID uniqueidentifier)
returns nvarchar(200)
as
begin

    declare @TITLE nvarchar(200);

    select @TITLE = TITLE from dbo.WEBDASHBOARDPAGECATALOG where ID = @ID;

    return @TITLE;

end;