CREATE TRIGGER [dbo].[ApproveTimesheet]
ON [dbo].[TIMESHEET_STATUS]
AFTER UPDATE
AS
If (UPDATE(Approved))
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
If (Approved) = True THEN
-- Update if approved
UPDATE dbo.TIMESHEET_STATUS
SET DateApproved = GetDate()
where RecordId = RecordId AND Approved = 1
... do more stuff here
Else
-- Update if disapproved
UPDATE dbo.TIMESHEET_STATUS
SET DateApproved = NULL
where RecordId = RecordId AND Approved = 0
... do more stuff here
End If
END
Network and collaborate with thousands of CTOs, CISOs, and IT Pros rooting for you and your success.
”The time we save is the biggest benefit of E-E to our team. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange.
Our community of experts have been thoroughly vetted for their expertise and industry experience.