I am unable to perform a delete on a View. Everything worked fine on the individual tables.
EDIT1: Added Trigger
CREATE TRIGGER myTrigger ON [ViewName] I
Are you referencing columns from multiple tables? If so that error sounds pretty straight forward.
You can however, use a stored procedure instead of a view to execute this.