UFN_WEBDASHBOARDFOLDER_GETID
Gets the ID of a web dashboard folder given its path.
Return
Return Type |
---|
uniqueidentifier |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@PATH | nvarchar(1000) | IN |
Definition
Copy
create function dbo.UFN_WEBDASHBOARDFOLDER_GETID(@PATH nvarchar(1000))
returns uniqueidentifier
as
begin
declare @ID uniqueidentifier;
select @ID = ID from dbo.WEBDASHBOARDFOLDER where PATH = @PATH;
return @ID;
end;