Sharepoint: Deploy Custom Lists and New Columns in lists - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:43:43Z http://stackoverflow.com/feeds/question/135496 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/135496/sharepoint-deploy-custom-lists-and-new-columns-in-lists 1 Sharepoint: Deploy Custom Lists and New Columns in lists Leon Tayson 2008-09-25T19:35:06Z 2008-10-01T10:55:03Z <p>I've created a custom list &amp; also added a column in the Announcement List. Question is, how can I include those newly created items when I create a fresh Web Application (like a script, feature or something)?</p> <p><em>Additional Info</em>: It's like when you're to deploy from your development machine to a staging or production server. I'd like to have a script or something to update my production server to have the new column i've added to the Announcement List. Just like SQL Server's ALTER TABLE command to update a SQL Server Table. </p> <p>Is there an equivalent in Sharepoint Lists?</p> <p>TIA!</p> http://stackoverflow.com/questions/135496/sharepoint-deploy-custom-lists-and-new-columns-in-lists/136393#136393 1 Answer by Ryan for Sharepoint: Deploy Custom Lists and New Columns in lists Ryan 2008-09-25T21:47:54Z 2008-09-25T21:47:54Z <p>Your question is not very clear but I think you may want to look at Application Templates. </p> <p>Microsoft provide 40 pre-built templates in the link below and the same technology is available to you. Links from this page should lead you to information showing you how you can crate your own.</p> <p>Application Templates for Windows SharePoint Services 3.0 <a href="http://technet.microsoft.com/en-us/windowsserver/sharepoint/bb407286.aspx" rel="nofollow">http://technet.microsoft.com/en-us/windowsserver/sharepoint/bb407286.aspx</a></p> http://stackoverflow.com/questions/135496/sharepoint-deploy-custom-lists-and-new-columns-in-lists/136423#136423 2 Answer by mmeija for Sharepoint: Deploy Custom Lists and New Columns in lists mmeija 2008-09-25T21:54:52Z 2008-09-25T21:54:52Z <p>You might be able to achieve this with site templates as detailed <a href="http://blah.winsmarts.com/2007-7-All_you_ever_wanted_to_know_about_SharePoint_2007_Site_Templates.aspx" rel="nofollow">here</a></p> <p>specifically the export function should let you download and re-use a template.</p> <p>this functionality works similar in the context of list templates IIRC; though doubt it will help for site columns</p> <p>getting a little more advanced you can try the SharePoint solution generator that is part of the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=19f21e5e-b715-4f0c-b959-8c6dcbdc1057&amp;displaylang=en" rel="nofollow">Visual Studio 2005 Extensions</a>:</p> <blockquote> <p>SharePoint Solution Generator</p> <p>This stand-alone program generates a Site Definition project from an existing SharePoint site. The program enables developers to use the browser and Microsoft Office SharePoint Designer to customize the content of their sites before creating code by using Visual Studio.</p> </blockquote> http://stackoverflow.com/questions/135496/sharepoint-deploy-custom-lists-and-new-columns-in-lists/148543#148543 1 Answer by Alex Angas for Sharepoint: Deploy Custom Lists and New Columns in lists Alex Angas 2008-09-29T12:54:35Z 2008-10-01T10:55:03Z <p>Regarding the new custom list, this can be done using features. See <a href="http://msdn.microsoft.com/en-us/library/ms466023.aspx" rel="nofollow">How to: Create a Custom List Definition</a> for more information. The Visual Studio Extensions for SharePoint (<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3E1DCCCD-1CCA-433A-BB4D-97B96BF7AB63" rel="nofollow">VS2005</a> / <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7bf65b28-06e2-4e87-9bad-086e32185e68" rel="nofollow">VS2008</a>) will help you to extract the list definition if you've created it through the SharePoint UI. If you are fortunate enough to be using a custom site definition and don't have any webs created yet, you can set your site definition to create the custom list using <a href="http://msdn.microsoft.com/en-us/library/bb861862.aspx" rel="nofollow">feature stapling</a>.</p> <p>If you are attempting to apply these changes to webs that already exist, you can still use a feature to define your custom list. It will just appear as a type of list that can be created. Then to have the custom list automatically created for existing webs or to modify existing lists such as the Announcements list, you can use a feature receiver. This allows you to run any custom code when the feature is activated. See the MSDN article <a href="http://msdn.microsoft.com/en-us/library/ms469501.aspx" rel="nofollow">Feature Events</a> for more information.</p> <p>Alternatively, you could not use features at all as they can be difficult, time consuming and painful. In fact, <a href="http://www.sharepointnutsandbolts.com/2008/09/sharepoint-dev-strategies-it-not-all.html" rel="nofollow">this blog post</a> has a good argument against the idea. You could try the tool mentioned on that page or other applications such as <a href="http://www.avepoint.com/products/sharepoint-content-management" rel="nofollow">DocAve Content Manager</a> and <a href="http://www.metalogix.net/products/migrationmanagersp/index.htm" rel="nofollow">SharePoint Site Migration Manager</a>.</p>