USP_USERSETTINGSPAGE_GET_TABSETTINGS
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@APPUSERID | uniqueidentifier | IN | |
@PAGEID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_USERSETTINGSPAGE_GET_TABSETTINGS(@APPUSERID uniqueidentifier,
@PAGEID uniqueidentifier)
as
begin
select TABSETTINGS from dbo.USERSETTINGSPAGE
where APPUSERID = @APPUSERID
and PAGEID = @PAGEID;
end