G
Guest
I am getting a "validation rule violation" error message when I try to run the following update query. There are no validation rules on either of the tables involved. What causes this error? I am including the SQL for the query below; let me know if you need additional info to help me. I am working in Access 2002, with a db recently converted from Access 97
Thanks
John B
UPDATE tblSampleReq_Upd INNER JOIN tblSampleReq ON tblSampleReq_Upd.ReqID = tblSampleReq.ReqID SET tblSampleReq.Season = tblSampleReq_Upd.Season, tblSampleReq.LocID = tblSampleReq_Upd.LocID, tblSampleReq.OrderGp = tblSampleReq_Upd.OrderGp, tblSampleReq.Name = tblSampleReq_Upd.Name, tblSampleReq.ShipTo = tblSampleReq_Upd.ShipTo, tblSampleReq.Stage = tblSampleReq_Upd.Stage, tblSampleReq.QtyLeft = tblSampleReq_Upd.QtyLeft, tblSampleReq.QtyRight = tblSampleReq_Upd.QtyRight, tblSampleReq.Flats = tblSampleReq_Upd.Flats, tblSampleReq.Mediums = tblSampleReq_Upd.Mediums, tblSampleReq.ChannelSet = tblSampleReq_Upd.ChannelSet, tblSampleReq.GenderSet = tblSampleReq_Upd.GenderSet, tblSampleReq.ReqStatus = tblSampleReq_Upd.ReqStatus, tblSampleReq.ReqModDate = Now(), tblSampleReq.ReqComments = "Updated per: " & [Enter Update Source]
Thanks
John B
UPDATE tblSampleReq_Upd INNER JOIN tblSampleReq ON tblSampleReq_Upd.ReqID = tblSampleReq.ReqID SET tblSampleReq.Season = tblSampleReq_Upd.Season, tblSampleReq.LocID = tblSampleReq_Upd.LocID, tblSampleReq.OrderGp = tblSampleReq_Upd.OrderGp, tblSampleReq.Name = tblSampleReq_Upd.Name, tblSampleReq.ShipTo = tblSampleReq_Upd.ShipTo, tblSampleReq.Stage = tblSampleReq_Upd.Stage, tblSampleReq.QtyLeft = tblSampleReq_Upd.QtyLeft, tblSampleReq.QtyRight = tblSampleReq_Upd.QtyRight, tblSampleReq.Flats = tblSampleReq_Upd.Flats, tblSampleReq.Mediums = tblSampleReq_Upd.Mediums, tblSampleReq.ChannelSet = tblSampleReq_Upd.ChannelSet, tblSampleReq.GenderSet = tblSampleReq_Upd.GenderSet, tblSampleReq.ReqStatus = tblSampleReq_Upd.ReqStatus, tblSampleReq.ReqModDate = Now(), tblSampleReq.ReqComments = "Updated per: " & [Enter Update Source]