fnEvalObjectSecurity
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ClientUsersID | int | IN | |
@ClientsID | int | IN | |
@ObjectTypeFilter | int | IN |
Definition
Copy
CREATE FUNCTION dbo.fnEvalObjectSecurity
(
@ClientUsersID int,
@ClientsID int,
@ObjectTypeFilter int
)
RETURNS TABLE AS RETURN
SELECT OBJECTGUID, CANVIEW, CANEDIT, CANADD, CANDELETE, CANSECURE
FROM fnUserPrivs(@ClientUsersID,@ClientsID,@ObjectTypeFilter)