UFN_USERSETTINGS_GETSHELLSETTINGS

Return

Return Type
xml

Parameters

Parameter Parameter Type Mode Description
@APPUSERID uniqueidentifier IN

Definition

Copy

create function dbo.UFN_USERSETTINGS_GETSHELLSETTINGS (@APPUSERID as uniqueidentifier)
returns xml
with execute as caller
as
begin
    declare @xml xml
    set @xml=N''
    select @xml = [SHELLSETTINGS] from dbo.USERSETTINGS where APPUSERID = @APPUSERID
    return @xml
end