USP_DATALIST_CLIENTUSERS_USERTASKS

Loads the tasks the specified user has on each CMS Site.

Parameters

Parameter Parameter Type Mode Description
@CLIENTUSERSID int IN Input parameter indicating the context ID for the data list.

Definition

Copy


CREATE procedure dbo.USP_DATALIST_CLIENTUSERS_USERTASKS(@CLIENTUSERSID int)
as

set nocount on;

select TASKGUID, CLIENTSITESID, ISSITETASK from [dbo].[UFN_CLIENTUSERS_TASKS](@CLIENTUSERSID, null)