CREATE PROCEDURE [dbo].[Collection_ReadByIdUserId_V2] @Id UNIQUEIDENTIFIER, @UserId UNIQUEIDENTIFIER AS BEGIN SET NOCOUNT ON SELECT Id, OrganizationId, [Name], CreationDate, RevisionDate, ExternalId, MIN([ReadOnly]) AS [ReadOnly], MIN([HidePasswords]) AS [HidePasswords], MAX([Manage]) AS [Manage] FROM [dbo].[UserCollectionDetails_V2](@UserId) WHERE [Id] = @Id GROUP BY Id, OrganizationId, [Name], CreationDate, RevisionDate, ExternalId END