USE [FabApprovalSystem] GO /****** Object: StoredProcedure [dbo].[CCReleaseLockOnCCDocuments] Script Date: 11/21/2024 11:29:04 AM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: -- Create date: -- Description: -- ============================================= CREATE PROCEDURE [dbo].[CCReleaseLockOnCCDocuments] -- Add the parameters for the stored procedure here @PlanNumber INT, @UserID INT AS BEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; -- Insert statements for procedure here IF @UserID <> -1 BEGIN UPDATE CCChangeControl SET RecordLockIndicator = 0, RecordLockedBy = NULL, RecordLockedDate = NULL WHERE RecordLockedBy = @UserID UPDATE CCMeeting SET RecordLockIndicator = 0, RecordLockedBy = NULL, RecordLockedDate = NULL WHERE RecordLockedBy = @UserID INSERT INTO EventLog ( IssueID, UserID, DocumentType, OperationType, Comments ) VALUES ( @PlanNumber, @UserID, 'ChangeControl', 'ReleaseLock', 'Released Lock on all Change COntrol docs locked by this userid' ) END ELSE BEGIN UPDATE CCChangeControl SET RecordLockIndicator = 0, RecordLockedBy = NULL, RecordLockedDate = NULL WHERE PlanNumber = @PlanNumber UPDATE CCMeeting SET RecordLockIndicator = 0, RecordLockedBy = NULL, RecordLockedDate = NULL WHERE PlanNumber = @PlanNumber INSERT INTO EventLog ( IssueID, UserID, DocumentType, OperationType, Comments ) VALUES ( @PlanNumber, @UserID, 'ChangeControl', 'ReleaseLock', 'Released Lock on all Change COntrol docs locked by this userid' ) END END GO