USP_KPIDASHBOARDPAGE_GETLIST
Gets a list of KPI dashboard pages for a given app user.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@APPUSERID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_KPIDASHBOARDPAGE_GETLIST(@APPUSERID uniqueidentifier)
as
set nocount on;
select ID,
NAME,
SEQUENCE
from dbo.KPIDASHBOARDPAGE
where APPUSERID = @APPUSERID
order by SEQUENCE;