Hi guys,I have a view which shows some data from a table, filtered to show records that meet some business rules. I want to prevent the user from updating any of the fields except the boolean flag that will then exclude the record from further processing.Can this be done in MSSM 2005?SELECT OP_UniqueID AS Appt_ID, HospitalUnitNumber, NHSNumber, Forename, Surname, bExclude_from_SUS AS [Exclude From SUS]FROM dbo.tbl_OP_Patient AS PWHERE (Forename LIKE '%dummy%') OR (Forename LIKE '%test%') OR (Forename LIKE '%mouse%') OR (Surname LIKE '%DUMMY%') OR (Surname LIKE '%test%') OR (Surname LIKE '%mouse%') AND (OP_UniqueID IN ( SELECT OP_UniqueID FROM dbo.tbl_Con_OP_dataload ) )
I only want to be able to update bExclude_from_SUS