Hiya,
As mentioned by carp, you can insert into multiple tables using a view. HOWEVER, you need to make sure that all the fields that are not nulls in any of the tables used in the view are mentioned in the select statement, otherwise the insert will fail. Also, you must make sure that you have write privilages into the relevant databases that the select refers to, or it will fail.
Finally, you need to check if there are any triggers attached to any of the tables, and if so, that you have specified all the information that these may require...to top all that off, check for potential deadlock conflicts, to the trigger using a table you have also used in the view.....
Good luck,
Tim