UFN_TRANSLATIONFUNCTION_REPORT_GETUINAME
Return
| Return Type |
|---|
| nvarchar(100) |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_TRANSLATIONFUNCTION_REPORT_GETUINAME(@ID uniqueidentifier)
returns nvarchar(100)
with execute as caller
as
begin
declare @UINAME nvarchar(100);
select @UINAME = UINAME from dbo.REPORTCATALOG where ID = @ID;
return @UINAME;
end