To move an object from one schema to another, you can use the TRANSFER the object to its new schema using theALTER SCHEMA command.

ALTER SCHEMA destination schema TRANSFER source object

For example, if you wanted to move the dbo.EOYReport view to the Report schema:

ALTER SCHEMA Reports TRANSFER dbo.EOYReport