As last time i submitted script to add table in existing publication here http://beyondrelational.com/justlearned/posts/692/script-to-add-table-in-existing-publication-in-replication-sql-server.aspx, you can find the script to add views in existing publication.
USE PublisherDB GO exec sp_addarticle @publication = N'PublicationName', @article = N'ViewName', @source_owner = N'schemaName', @source_object = N'ViewName', @type = N'view schema only', @description = N'', @creation_script = N'', @pre_creation_cmd = N'drop', @schema_option = 0x0000000008000001, @destination_table = N'ViewName', @destination_owner = N'schemaName', @status = 16 GO
Hope you liked this.
While this particular system stored procedure is known to almost anyone who has worked with replication in SQL Server, I must say that this is especially useful when one needs to maintain the replication link when upgrading the underlying schema with a new article that needs replication.
Thanks for sharing, Paresh!
I knew about this SP but never used it before, I might give it a shot.