<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Off Shore Development India &#187; Microsoft Project Server</title>
	<atom:link href="http://www.offshoresoftwaredevelopmentindia.com/blog/category/net-development/microsoft-project-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.offshoresoftwaredevelopmentindia.com/blog</link>
	<description>Offshore Software Development India</description>
	<lastBuildDate>Wed, 25 Jan 2012 13:14:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MOSS21 / Things to remember for webpart development.</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2009/01/10/moss21-things-to-remember-when-creating-and-deploying-webpart-in-sharepoint-server-2007/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2009/01/10/moss21-things-to-remember-when-creating-and-deploying-webpart-in-sharepoint-server-2007/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 06:58:36 +0000</pubDate>
		<dc:creator>rupen</dc:creator>
				<category><![CDATA[.Net Development]]></category>
		<category><![CDATA[ASP.Net Frameworks]]></category>
		<category><![CDATA[C# Development]]></category>
		<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[Learn SharePoint Server]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[MOSS 2007 development]]></category>
		<category><![CDATA[MOSS Customization]]></category>
		<category><![CDATA[MOSS Design]]></category>
		<category><![CDATA[SharePoint code]]></category>
		<category><![CDATA[Sharepoint Configuration]]></category>
		<category><![CDATA[sharepoint customization]]></category>
		<category><![CDATA[sharepoint experts]]></category>
		<category><![CDATA[SharePoint Extension]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[sharepoint server 2007]]></category>
		<category><![CDATA[sharepoint server Solutions]]></category>
		<category><![CDATA[SharePoint Webpart]]></category>
		<category><![CDATA[Webpart]]></category>
		<category><![CDATA[WebPart for MOSS]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=67</guid>
		<description><![CDATA[This article will help you to develop webpart quickly and easily. Remember following things during the werpart development. That will speed up the creation and deployment of the webpart.
Things to remember when creating and deploying webpart to the site:

Give Assembly name and namespace name for that right click on the project name in solution explorer [...]]]></description>
			<content:encoded><![CDATA[<p><span><span>This article will help you to develop webpart quickly and easily. Remember following things during the werpart development. That will speed up the creation and deployment of the webpart.</span></span></p>
<p><span style="text-decoration: underline;"><strong>T<span><span>hings to remember when creating and deploying webpart to the site:</span></span></strong></span></p>
<ul>
<li>Give Assembly name and namespace name for that right click on the project name in solution explorer and select properties. On Application tab give assembly name and namespace name.</li>
</ul>
<ul>
<li>On Build tab in output path give the bin directory path of the site on which you want to deploy the web part.</li>
</ul>
<ul>
<li>Open AssemblyInfo.cs file and add system.security namespace and also add [assembly: AllowPartiallyTrustedCallers()] and then save the file.</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart.jpg"><img class="alignnone size-medium wp-image-152" title="MOSS Webpart" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart-300x190.jpg" alt="MOSS Webpart" width="300" height="190" /></a></p>
<ul>
<li style="text-align: left;">Open the web.config file of the site on which you have to deploy the web part. Site bin directory is under the vitual directories. Path is C:\Inetpub\wwwroot\wss\VirtualDirectories.</li>
</ul>
<ul>
<li>In web.config file add safecontrol entry under safe controls section.</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart2.jpg"><img class="alignnone size-medium wp-image-153" title="MOSS Webpart" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart2-300x184.jpg" alt="MOSS Webpart" width="300" height="184" /></a></p>
<ul>
<li>Also Change the trust level: and change it to Full (Write Full trust level).</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart3.jpg"><img class="alignnone size-medium wp-image-154" title="MOSS Webpart" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart3-300x187.jpg" alt="MOSS Webpart" width="300" height="187" /></a></p>
<ul>
<li>Deploy the web part.</li>
</ul>
<ul>
<li>When you deploy the web part the dll of the web part that you have created had been created in the bin directory of that site folder under virtual directories.</li>
</ul>
<ul>
<li>On the site go to the web parts section. Click on the site settings menu under site action dropdown list and select web part click new tab and select the web part check mark the web part that you have deployed. And click on populate gallery button now you can add a web part on the web part zone.</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart4.jpg"><img class="alignnone size-medium wp-image-155" title="MOSS Webpart" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart4-300x170.jpg" alt="MOSS Webpart" width="300" height="170" /></a></p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart5.jpg"><img class="alignnone size-medium wp-image-156" title="MOSS Webpart" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/checklist_create_webpart5-300x159.jpg" alt="MOSS Webpart" width="300" height="159" /></a></p>
<ul>
<li>Now you can add the web part on the web part zone.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2009/01/10/moss21-things-to-remember-when-creating-and-deploying-webpart-in-sharepoint-server-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS20 / Integration of Outlook with the SharePoint</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/12/10/moss20-integration-of-outlook-with-the-sharepoint/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/12/10/moss20-integration-of-outlook-with-the-sharepoint/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 06:53:43 +0000</pubDate>
		<dc:creator>rupen</dc:creator>
				<category><![CDATA[.Net Development]]></category>
		<category><![CDATA[ASP.Net Frameworks]]></category>
		<category><![CDATA[C# Development]]></category>
		<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[Integrate Outlook with MOSS]]></category>
		<category><![CDATA[Learn SharePoint Server]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[MOSS Customization]]></category>
		<category><![CDATA[MOSS Design]]></category>
		<category><![CDATA[Outlook Integration]]></category>
		<category><![CDATA[Outlook Integration with SharePoint]]></category>
		<category><![CDATA[SharePoint code]]></category>
		<category><![CDATA[Sharepoint Configuration]]></category>
		<category><![CDATA[sharepoint customization]]></category>
		<category><![CDATA[sharepoint experts]]></category>
		<category><![CDATA[SharePoint Extension]]></category>
		<category><![CDATA[sharepoint server 2007]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=89</guid>
		<description><![CDATA[Dot Net team at OffshoreSoftwareDevelopmentIndia.com has developed many extensions for Outlook with the SharePoint. This blog is for how to integrate Outlook with SharePoint Server.
Integration of Outlook with the SharePoint:
To use Outlook 2007 to view Share Point Server 2007 resources, we must connect the Share Point Server 2007 resources to Outlook 2007. The steps that [...]]]></description>
			<content:encoded><![CDATA[<p>Dot Net team at OffshoreSoftwareDevelopmentIndia.com has developed many extensions for Outlook with the SharePoint. This blog is for how to integrate Outlook with SharePoint Server.</p>
<p><span style="text-decoration: underline;"><strong>Integration of Outlook with the SharePoint:</strong></span></p>
<p>To use Outlook 2007 to view Share Point Server 2007 resources, we must connect the Share Point Server 2007 resources to Outlook 2007. The steps that described below uses a document library as an example but we can use these steps to connect other resources, including Calendar, Task List, Discussion Board, or Contact List.</p>
<p><strong>Notes:</strong></p>
<p>Share Point Server 2007 permission carry over to Outlook 2007. For example, if you have permission to edit a document or list on a team site, you can also edit the document or list in Outlook 2007.</p>
<p><strong>Steps to integrate Outlook with the Share Point:</strong></p>
<ul>
<li>On a SharePoint Server 2007 site, go to the Shared Documents Document Library. A link to this library should appear on the left navigation menu (Quick Launch).</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_1.jpg"><img class="alignnone size-medium wp-image-186" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_1-300x156.jpg" alt="Integration of Outlook" width="300" height="156" /></a></p>
<ul>
<li>On the Action menu, click Connect to Outlook.</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_2.jpg"><img class="alignnone size-medium wp-image-187" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_2-300x162.jpg" alt="Integration of Outlook" width="300" height="162" /></a></p>
<ul>
<li>In the Connect this SharePoint [Resource] to Outlook window, click yes.</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_3.jpg"><img class="alignnone size-medium wp-image-188" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_3-300x194.jpg" alt="Integration of Outlook" width="300" height="194" /></a></p>
<p>The Shared Documents library appears in a folder in the Mail pane, under the SharePoint Lists.</p>
<p><strong>Note:</strong></p>
<p>When you connect resources to Outlook 2007, the resources appear in their respective sections of the Outlook 2007 navigation pane. Calendars appear in the Calendar pane, under Other Calendars; Tasks appear in the Tasks pane, under Other Tasks; Contact Lists are similar to Document Libraries and appear in the Mail pane, under SharePoint Lists.</p>
<p><strong>Send a Sharing Message:</strong></p>
<p>If you have resources connected to Outlook 2007, you can share the connection with others through a Sharing Message.</p>
<ul>
<li>In Outlook 2007, right-click the listing, and then click Share&#8221; [SharePoint resource].&#8221;</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_4.jpg"><img class="alignnone size-medium wp-image-189" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_4-300x211.jpg" alt="Integration of Outlook" width="300" height="211" /></a></p>
<ul>
<li>In the message window, add recipients to the To line, type a message, and then click send.</li>
</ul>
<ul>
<li>Recipients click a link in the message to connect to the resource.</li>
</ul>
<p><strong>Note:</strong></p>
<p>In order for recipients to access the shared resource, an owner of the resource must provide appropriate access permission.</p>
<p><strong>Connect from a Sharing Message:</strong></p>
<ul>
<li>Open the Sharing Message in Outlook 2007.</li>
</ul>
<ul>
<li>In the Open group on the Outlook 2007 Ribbon, click Connect to this [SharePoint Resource].</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_5.jpg"><img class="alignnone size-medium wp-image-190" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_5-300x225.jpg" alt="Integration of Outlook" width="300" height="225" /></a></p>
<p><strong>Edit Document Library Files in Outlook 2007</strong></p>
<p>When we connected to the corporate network, changes you make to most resources in Outlook 2007(Calendar, Task List, Discussion Board and Contact List) are automatically updated on the SharePoint Server 2007 site.</p>
<ul>
<li>In Outlook 2007, double-click a Document Library file to open it.</li>
</ul>
<ul>
<li>In the Opening File dialog box, click to Open.</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_6.jpg"><img class="alignnone size-medium wp-image-191" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_6-300x210.jpg" alt="Integration of Outlook" width="300" height="210" /></a></p>
<ul>
<li>In the Message bar, at the top of the document, click Edit Offline. (The file opens as read-only until you click Edit Offline).</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_7.jpg"><img class="alignnone size-medium wp-image-192" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_7-300x209.jpg" alt="Integration of Outlook" width="300" height="209" /></a></p>
<ul>
<li>In the Edit Offline dialog box, click Ok.</li>
<p>The file is stored on your computer, in your SharePoint Server 2007 Drafts folder.</ul>
<ul>
<li>Edit the file. When you have finished, save your changes and then close the file.</li>
</ul>
<ul>
<li>In the Edit Offline window, click Update.</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_8.jpg"><img class="alignnone size-medium wp-image-193" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_8-300x210.jpg" alt="Integration of Outlook" width="300" height="210" /></a></p>
<p><strong>Tips</strong></p>
<ul>
<li>To ensure others do not make changes to the file while you are working on it, check it out in SharePoint Server 2007 before you being editing. Be sure to check it in when you have finished.</li>
</ul>
<ul>
<li>To find working copies of SharePoint Server 2007 documents that have not been updated to the SharePoint Server 2007 site, in the Outlook 2007 Mail pane, under SharePoint Lists, look in the SharePoint Drafts search folder.</li>
</ul>
<p><strong>Remove a Connected Document from Outlook 2007</strong></p>
<p>When you have finished work on a SharePoint Server 2007 file, you can remove it from Outlook 2007. This keeps your SharePoint Server 2007 Lists folder organized and helps you focus on current needs.</p>
<ul>
<li>In the SharePoint Lists folder, select the library or list from which you want to remove a file.</li>
</ul>
<ul>
<li>In the window to the right of the Mail navigation pane, select the file you want to remove. To select multiple files, hold down CTRL while you click file names.</li>
</ul>
<ul>
<li>Right-click the selected file and then click Remove Offline Copy.</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_9.jpg"><img class="alignnone size-medium wp-image-194" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_9-300x209.jpg" alt="Integration of Outlook" width="300" height="209" /></a></p>
<p><strong>Delete a Resource from Outlook 2007</strong></p>
<p>When you no longer need a resource, you can remove it from Outlook 2007. This keeps Outlook 2007 organized and helps you focus on current projects.</p>
<ul>
<li>In the SharePoint Lists folder or in the respective sections for Calendars, Task Lists, and Contact Lists select the resource you want to remove.</li>
</ul>
<ul>
<li>Right-click the folder and then click Delete [Resource Name].</li>
</ul>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_10.jpg"><img class="alignnone size-medium wp-image-195" title="Integration of Outlook" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/outlook_integration_10-300x211.jpg" alt="Integration of Outlook" width="300" height="211" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/12/10/moss20-integration-of-outlook-with-the-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS19 / Integration of Excel Services with SharePoint</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/11/15/moss19-integration-of-excel-services-with-the-sharepoint-server/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/11/15/moss19-integration-of-excel-services-with-the-sharepoint-server/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 06:46:02 +0000</pubDate>
		<dc:creator>rupen</dc:creator>
				<category><![CDATA[.Net Development]]></category>
		<category><![CDATA[ASP.Net Frameworks]]></category>
		<category><![CDATA[C# Development]]></category>
		<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Excel Services with MOSS]]></category>
		<category><![CDATA[Excel Services With SharePoint Server]]></category>
		<category><![CDATA[Integration Excel Services with SharePoint Server]]></category>
		<category><![CDATA[Integration Of Excel Services With MOSS]]></category>
		<category><![CDATA[Learn SharePoint Server]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[MOSS 2007 development]]></category>
		<category><![CDATA[MOSS Customization]]></category>
		<category><![CDATA[MOSS Design]]></category>
		<category><![CDATA[SharePoint code]]></category>
		<category><![CDATA[Sharepoint Configuration]]></category>
		<category><![CDATA[sharepoint customization]]></category>
		<category><![CDATA[sharepoint experts]]></category>
		<category><![CDATA[SharePoint Extension]]></category>
		<category><![CDATA[sharepoint server 2007]]></category>
		<category><![CDATA[sharepoint server Solutions]]></category>
		<category><![CDATA[Solution for MOSS]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=172</guid>
		<description><![CDATA[Dot Net team at OffshoreSoftwareDevelopmentIndia.com has developed many extenions for Excel Services with the SharePoint Server. How to integrate Excel Services with SharePoint, has mentioned in this article.

Excel Services provides a server-side paradigm for Excel in which spreadsheets published to SharePoint can calculate and render on the server, letting users pull results down to their [...]]]></description>
			<content:encoded><![CDATA[<p>Dot Net team at <span><span>OffshoreSoftwareDevelopmentIndia.com has developed many extenions for Excel Services with the SharePoint Server. How to integrate Excel Services with SharePoint, has mentioned in this article.<br />
</span></span></p>
<p>Excel Services provides a server-side paradigm for Excel in which spreadsheets published to SharePoint can calculate and render on the server, letting users pull results down to their browsers. In this new scenario, analysts can publish their worksheets to SharePoint, and allow Excel Services to kick in, meaning that anybody who browses to the site containing the spreadsheet can access the full functionality of the sheet whether or not they have Excel installed. In this scenario, the formulae that analysts enter become the code that everyone will run. You don&#8217;t need a developer to reemployment the formulae or create a new application.</p>
<p><span style="text-decoration: underline;"><strong>Creating and Configuring SharePoint for Excel Services:-</strong></span></p>
<p>First of all create the Blank Site. At the top right of the screen you can see the Site Action menu dropdown list. Select &#8220;Create&#8221; from the dropdown and you will be taken to a screen containing several categories of options for creating various types of item (See below Figure).</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_1.jpg"><img class="alignnone size-medium wp-image-173" title="Integration for Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_1-300x165.jpg" alt="Integration for Excel Services" width="300" height="165" /></a></p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_2.jpg"><img class="alignnone size-medium wp-image-174" title="Integration for Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_2-300x165.jpg" alt="Integration for Excel Services" width="300" height="165" /></a></p>
<p>Select &#8220;Document Library&#8221; from this screen to create a new Document Library. On the Document Library screen, give the new document library a name and a Document Template. Choose any name you like (the examples use &#8220;Analytics,&#8221; and select &#8220;Microsoft Office Excel Worksheet&#8221; as the document template).</p>
<p>And Click on Create.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_4.jpg"><img class="alignnone size-medium wp-image-176" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_4-300x183.jpg" alt="Integration of Excel Services" width="300" height="183" /></a></p>
<p><strong>Running Excel Services:</strong></p>
<p>Before Excel Services will work with this repository; you must make sure that the services are up and running correctly. To do this, return to the Central Administration screen, and select the Operations tab. From here, select the &#8220;Services on Server&#8221; screen. You&#8217;ll see a list of services at the bottom of the screen. Make sure that &#8220;Excel Calculation Services&#8221; is started. If it isn&#8217;t, use the link beside it to start up the service.</p>
<p>Additionally, you&#8217;ll have to configure a trusted file location for your Excel workbooks. You do this by returning to Central Administration, and selecting the &#8220;Create or configure this farm&#8217;s shared services&#8221; link. You&#8217;ll see the &#8220;SharedServices1 (Default)&#8221; entry on this screen. Drop this down, by clicking the arrow to the right of it, and select the &#8220;Open Shared Services Admin Site&#8221; option. This opens the administration screen for these shared services. On the right side of this screen you&#8217;ll see the &#8220;Trusted File Locations&#8221; link which you can use to set up where you can store the Excel files securely. Select &#8220;Add Trusted File Location&#8221; and you&#8217;ll see the screen below.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_5.jpg"><img class="alignnone size-medium wp-image-177" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_5-300x171.jpg" alt="Integration of Excel Services" width="300" height="171" /></a></p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_6.jpg"><img class="alignnone size-medium wp-image-178" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_6-300x181.jpg" alt="Integration of Excel Services" width="300" height="181" /></a></p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_7.jpg"><img class="alignnone size-medium wp-image-179" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_7-300x177.jpg" alt="Integration of Excel Services" width="300" height="177" /></a></p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_8.jpg"><img class="alignnone size-medium wp-image-180" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_8-300x177.jpg" alt="Integration of Excel Services" width="300" height="177" /></a></p>
<p>Use the URL address of the document library that you set up earlier (for example: http://win2k3sp:17964/sites/DevX1/Analytics) and make sure to specify the Location Type as &#8220;Windows SharePoint Services.&#8221; Click &#8220;OK&#8221; and the SharePoint will create the trusted file location as shown in Figure.</p>
<p><strong>Creating and Publishing a Spreadsheet:-</strong></p>
<p>Now you need a spreadsheet to use for shared calculations. For this example, you&#8217;ll build a very simple example spreadsheet that serves to demonstrate how the calculation services work. The spreadsheet performs a simple analytics calculation, called a &#8220;P/E Ration,&#8221; which simply divides the price of a stock by its earnings. It&#8217;s a useful analytic that tells you how many years you&#8217;ll need to own a stock before it pays for itself in earnings. So, for example, if your stock costs $100 and earns $10 a year, it will take 10 years to pay for itself in earnings. This ratio (or analytic) is usually seen as a great indicator of the value of a stock. In a real-world scenario, the user will provide a stock ticker, and the application would retrieve the values for price and earnings from a database. The spreadsheet could then divide price by earnings using a formula. For simplicity, this example doesn&#8217;t use a database—you&#8217;ll simply provide the spreadsheet with the price and earnings values. The P/E will be a simple Excel formula that divides the named ranges for the Price and Earnings values.</p>
<p>I&#8217;ve added a chart to show the relative values of Price and Earnings, and you can see the spreadsheet in Figure.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_9.jpg"><img class="alignnone size-medium wp-image-181" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_9-300x211.jpg" alt="Integration of Excel Services" width="300" height="211" /></a></p>
<p>When you&#8217;ve completed the spreadsheet, publish it to SharePoint using the Excel Services option on the &#8220;Publish&#8221; menu see Figure.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_10.jpg"><img class="alignnone size-medium wp-image-182" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_10-300x216.jpg" alt="Integration of Excel Services" width="300" height="216" /></a></p>
<p>When you select this, the &#8220;Save As&#8221; dialog will appear. You can use this dialog to specify the save location this should be the location that you configured as a Trusted Location earlier. However, before you do this, you should select the &#8220;Excel Services Options&#8221; button at the bottom of the dialog. You use these options to specify the items within the sheet that you want to have available to browsers. This is important, as you may have some proprietary stuff that you do not want to publish. You can simply uncheck that from this dialog and it will not be published to SharePoint, and thus kept private.</p>
<p>You&#8217;re now ready to publish. For the file name, specify the path to the SharePoint site that you set up earlier. The dialog will refresh and show you the document library. You can then save the document into the library. (See below Figure).</p>
<p>SharePoint publishes your workbook into the document library. If you browse to this document from IE, you&#8217;ll see an Excel-like generated interface. Remember, your clients do not need to have Excel installed to use the application that you&#8217;ve just built in Excel that&#8217;s part of the magic of using SharePoint and Excel services.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_11.jpg"><img class="alignnone size-medium wp-image-183" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_11-300x209.jpg" alt="Integration of Excel Services" width="300" height="209" /></a></p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_12.jpg"><img class="alignnone size-medium wp-image-184" title="Integration of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_12-300x180.jpg" alt="Integration of Excel Services" width="300" height="180" /></a></p>
<p>You may open the worksheet from the Document Library (See Figure).</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_13.jpg"><img class="alignnone size-medium wp-image-185" title="Integrations of Excel Services" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/excel_services_13-300x180.jpg" alt="Integrations of Excel Services" width="300" height="180" /></a></p>
<p>In this article you saw the procedures to configure and use Excel Services with SharePoint 2007. This is a terrific and incredibly useful service that allows you to publish your Excel documents to a server library and let users run them, taking advantage of the Excel&#8217;s calculation power and formulae. This is important on a number of fronts. First, it prevents version drift of documents a common problem for companies that use a lot of spreadsheets. Having a centralized repository means that all users can share the same version. Additionally, because the calculations can now run on the server, many users don&#8217;t even need to have Excel installed! They just need to be able to browse to the SharePoint repository and render the sheet within their browsers. The user who specifies the calculations also becomes the developer of the functionality available to the end users. So, instead of having a developer translate Excel spreadsheets and formulae into a language suitable for Web applications and building a custom UI, your formula experts can simply publish their spreadsheets to Excel and have end users consume them directly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/11/15/moss19-integration-of-excel-services-with-the-sharepoint-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS11 / Creating a Solution for SharePoint Server</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/09/10/moss11-creating-a-solution-for-sharepoint-server-200/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/09/10/moss11-creating-a-solution-for-sharepoint-server-200/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 05:20:13 +0000</pubDate>
		<dc:creator>rupen</dc:creator>
				<category><![CDATA[.Net Development]]></category>
		<category><![CDATA[ASP.Net Frameworks]]></category>
		<category><![CDATA[C# Development]]></category>
		<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[Create Solution for MOSS]]></category>
		<category><![CDATA[Create Solution for SharePoint Server]]></category>
		<category><![CDATA[Learn SharePoint Server]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[MOSS 2007 development]]></category>
		<category><![CDATA[MOSS Customization]]></category>
		<category><![CDATA[MOSS Design]]></category>
		<category><![CDATA[SharePoint code]]></category>
		<category><![CDATA[sharepoint customization]]></category>
		<category><![CDATA[sharepoint experts]]></category>
		<category><![CDATA[SharePoint Extension]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[sharepoint server 2007]]></category>
		<category><![CDATA[sharepoint server Solutions]]></category>
		<category><![CDATA[SharePoint Webpart]]></category>
		<category><![CDATA[Solution for MOSS]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=117</guid>
		<description><![CDATA[SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 and project server 2007.</p>
<p>Team would like to share same experience. This can help who wanted to begin with the sharePoint development and Project Server development.</p>
<p>There are list of articles start with SP and from number 1 to &#8230; Always start with the article SP1 and read next article to start working on MOSS easily and quickly.</p>
<p><span style="text-decoration: underline;"><strong>Creating a Solution:</strong></span></p>
<p>A solution package is a cabinet (.cab) file with a .wsp file name extension and a manifest file. It can contain the following components:</p>
<ul>
<li>Site definitions</li>
</ul>
<ul>
<li> Feature definitions and their corresponding element definitions and files</li>
</ul>
<ul>
<li> Web Part files (*.webpart, *.dwp)</li>
</ul>
<ul>
<li> Template files and root files, which can include the following:
<ol>
<li>_layouts files</li>
<li>Resources(*.resx)</li>
<li>Resource files(for example, *.doc or *.xls)</li>
</ol>
</li>
</ul>
<ul>
<li> Assemblies, which can include the following:
<ol>
<li>Safe control entries</li>
<li>Resources</li>
</ol>
</li>
</ul>
<ul>
<li>Code access security policies</li>
</ul>
<p>Solution files have a hierarchical structure a manifest file is at the root while feature, resource, or site definition directories are contained in subdirectories. In turn, feature definitions define where associated files are located inside of the solution.</p>
<p>The solution creator can define the remaining structure; however, it is recommended that files for a particular feature or site definition be placed in that feature or site definition&#8217;s subdirectory.</p>
<p><strong>Note:</strong></p>
<p>The directory structure inside of the .wsp file determines the final directory structure on the front-end Web server file system.</p>
<p>To create a solution package, perform the following steps:</p>
<ul>
<li>Create a solution manifest.xml file.</li>
<p>The solution manifest (always called manifest.xml) is stored at the root of a solution file. This file defines the list of features, site definitions, resource files, Web Part files, and assemblies to process. It does not define the file structure if files are included in a solution but not listed in the manifest XML file, they are not processed in any way.</p>
<p>Following is the structure of a manifest.xml file.</p>
<p>XML</ul>
<div style="background-color:#F8F8F8">
<p style="padding-left: 60px;">
<p style="padding-left: 60px;">
<p style="padding-left: 60px; text-align: left;">&lt;Solution SolutionId=&#8221;4AFC1350-F354-4439-B941-51377E845F2B&#8221; xmlns=&#8221;http://schemas.microsoft.com/sharepoint/&#8221;&gt;</p>
<p style="padding-left: 90px; text-align: left;">&lt;FeatureManifests&gt;<br />
&lt;FeatureManifest Location=&#8221;FeatureLibrary\feature.xml&#8221;/&gt;<br />
&lt;/FeatureManifests&gt;<br />
&lt;TemplateFiles&gt;<br />
&lt;TemplateFile Location=&#8221;ControlTemplates\Featurelibraryform.ascx&#8221;/&gt;<br />
&lt;/TemplateFiles&gt;<br />
&lt;RootFiles&gt;<br />
&lt;!&#8211; These files go into the 12\ directory and can be used for Web services and global resources &#8211;&gt;<br />
&lt;RootFile Location=&#8221;ISAPI\MyWebService.asmx&#8221;&gt;<br />
&lt;/RootFiles&gt;<br />
&lt;Assemblies&gt;<br />
&lt;Assembly DeploymentTarget=&#8221;GlobalAssemblyCache&#8221;<br />
Location=&#8221;ms.samples.sharepoint.myFeature.dll&#8221;/&gt;<br />
&lt;/Assemblies&gt;</p>
<p style="padding-left: 60px; text-align: left;">&lt;/Solution&gt;</p>
<p style="padding-left: 60px;">
</div>
<p>In addition, you can add a DwpFiles element to specify .webpart or .dwp files, or a ResourceFiles element to specify resource files, site definitions, application resources, and code access security policies.</p>
<ul>
<li> Optional. Annotate your feature.xml files with  tags.</li>
</ul>
<p style="padding-left: 60px;">In the &lt;ElementManifests&gt; tag in your feature.xml file, add &lt;ElementFile Location=&#8221;&#8230;&#8221;/&gt; for all of the extra files in your feature, such as .aspx pages (for example, allitems.aspx) or master pages, and so on.</p>
<p style="padding-left: 60px;"><strong>Note:</strong></p>
<p style="padding-left: 60px;">This step is required only if your solution contains features.</p>
<ul>
<li>Create your solution package (the .wsp file).</li>
</ul>
<p style="padding-left: 60px;">Because the solution file is essentially a .cab file, use the makecab.exe tool to create the solution package. The makecab.exe tool takes a pointer to a .ddf file, which describes the structure of the .cab file. The format of a .ddf file is basically in the same style as the .inf file you declare a standard header and then enumerate, one file per line, the set of files by where they live on disk, separated by where they should live in the .cab file.</p>
<p style="padding-left: 60px;">Xml</p>
<p style="padding-left: 60px;">.OPTION EXPLICIT; Generate errors<br />
.Set CabinetNameTemplate=MySolutionFile.wsp<br />
.set DiskDirectoryTemplate=CDROM ; All cabinets go in a single directory<br />
.Set CompressionType=MSZIP;** All files are compressed in cabinet files<br />
.Set UniqueFiles=&#8221;ON&#8221;<br />
.Set Cabinet=on<br />
.Set DiskDirectory1=Package<br />
build\manifest.xml manifest.xml<br />
build\ MySolutionFile \feature.xml MySolutionFile \feature.xml</p>
<p style="padding-left: 60px;">
<p><strong>Installation Instructions:</strong></p>
<p><strong>Prerequisites:</strong></p>
<p style="padding-left: 30px;">- Installation package: LHH.PageLayoutsAndLists.wsp</p>
<p style="padding-left: 30px;">- Flash Player installed on the client to access the site.</p>
<p>From cmd go to: &#8220;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\bin&#8221;</p>
<ul>
<li><strong>Adding Solution:</strong></li>
</ul>
<p style="padding-left: 60px;">Run this command:<br />
Stsadm.exe  -o addsolution -filename C:\Temp\LHH.PageLayoutsAndLists.wsp</p>
<ul>
<li><strong>Deploying Solution:</strong></li>
</ul>
<p style="padding-left: 60px;">Run this command<br />
Stsadm.exe -o deploysolution -name LHH.PageLayoutsAndLists.wsp –local -allowgacdeployment</p>
<ul>
<li><strong>Activating Features:</strong></li>
</ul>
<p style="padding-left: 60px;">From LHH Portal Site go to Site Actions &gt;&gt; Site Settings &gt;&gt; Modify All Site Settings</p>
<p>Site Collection Features<br />
Activate:<br />
LHH Content Types<br />
LHH Master Page and Page Layouts</p>
<p style="padding-left: 60px;">
<ul>
<li><strong>Referencing content types:</strong></li>
</ul>
<p style="padding-left: 60px;">Go to &#8220;Site Actions&#8221; &gt;&gt; View All Site Content &gt;&gt; Pages<br />
Click on &#8220;Document Library Settings&#8221;<br />
Click on Advance Settings &gt;&gt; Allow Manage Content Types (True) &gt;&gt; Ok</p>
<p style="padding-left: 30px;">Then Go to</p>
<p style="padding-left: 30px;">Site actions -&gt; Site setting -&gt; modify all settings</p>
<p style="padding-left: 30px;">Site collection administration -&gt; site collection feature</p>
<p style="padding-left: 30px;"><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/07/solution_site_settings.jpg"><img class="alignnone size-medium wp-image-147" title="solution site settings" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/07/solution_site_settings-300x139.jpg" alt="solution site settings" width="300" height="139" /></a></p>
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">Then you will see the site collection feature list, active our feature from the list. We will have all the features available.</p>
<p style="padding-left: 30px;">
<p style="padding-left: 30px;"><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/07/solution_site_features.jpg"><img title="solution site features" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/07/solution_site_features-300x143.jpg" alt="solution site features" width="300" height="143" /></a></p>
<p style="padding-left: 30px;">
<p style="text-align: left; padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
<p style="padding-left: 30px;">
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/09/10/moss11-creating-a-solution-for-sharepoint-server-200/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS10 / Publishing Page Layout using a Feature</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/08/10/moss10-publishing-page-layout-using-a-feature-in-sharepoint-server-2007/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/08/10/moss10-publishing-page-layout-using-a-feature-in-sharepoint-server-2007/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 05:20:25 +0000</pubDate>
		<dc:creator>rupen</dc:creator>
				<category><![CDATA[.Net Development]]></category>
		<category><![CDATA[ASP.Net Frameworks]]></category>
		<category><![CDATA[C# Development]]></category>
		<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[Features in MOSS]]></category>
		<category><![CDATA[Learn SharePoint Server]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[MOSS 2007 development]]></category>
		<category><![CDATA[MOSS Customization]]></category>
		<category><![CDATA[MOSS Design]]></category>
		<category><![CDATA[Publishing Features]]></category>
		<category><![CDATA[Publishing Page Layout for MOSS]]></category>
		<category><![CDATA[SharePoint code]]></category>
		<category><![CDATA[Sharepoint Configuration]]></category>
		<category><![CDATA[sharepoint customization]]></category>
		<category><![CDATA[sharepoint experts]]></category>
		<category><![CDATA[Sharepoint Server]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=116</guid>
		<description><![CDATA[SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 and project server 2007.</p>
<p>Team would like to share same experience. This can help who wanted to begin with the sharePoint development and Project Server development.</p>
<p>There are list of articles start with SP and from number 1 to &#8230;. Always start with the article SP1 and read next article to start working on MOSS easily and quickly.</p>
<p><span style="text-decoration: underline;"><strong>Publishing Page Layout using a Feature:</strong></span></p>
<p>This is the post on creating site columns, publishing content types and page layouts using features:</p>
<p>This post describes how to create a publishing page layout and deploy it using a custom feature. Now that we have a custom publishing site columns as well as custom publishing content types defined using a feature, the next step is to create the page layout.</p>
<p>Publishing page layouts map to the custom fields of a publishing content type. The files are placed in the Master page gallery (Site Actions &gt; Site Settings &gt; Modify All Settings &gt; Galleries section &gt; Master pages and page layouts).</p>
<p><strong>Creating the page layout:</strong></p>
<p>The page layout can be created by using Visual Studio 2005. It&#8217;s really an .ASPX page and some basic Intellisense works for the SharePointWebControls and PublishingWebControls.</p>
<p>If you need information on how to create your custom page layout there is a very good article on MSDN:</p>
<p><a title="Customizing and Branding Web Content Management-Enabled SharePoint Sites (Part 1 of 3): Understanding Web Content Management and the Default Features." href="http://msdn2.microsoft.com/en-us/library/aa830818.aspx" target="_blank"> Customizing and Branding Web Content Management-Enabled SharePoint Sites (Part 1 of 3): Understanding Web Content Management and the Default Features.</a></p>
<p>Important to remember here is that you are dependant from the Master Page that will be used together with your page layout. In this article I&#8217;m using the default Blue Bland one; so all the default Content placeholders are available.</p>
<p>Snippet of the page layout (download all the files from the link at the bottom of the post):</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/07/publishing_pagelayout_feature.jpg"><img class="alignnone size-medium wp-image-149" title="Publishing Page layout Usinf Feature" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/07/publishing_pagelayout_feature-300x272.jpg" alt="Publishing Page layout Usinf Feature" width="300" height="272" /></a></p>
<p>Tip: to quickly create and test a page layout for my custom content types I sometimes use SharePoint Designer 2007 (SDP). Create the page layout by choosing &#8220;New &gt; Page Layout&#8221; in the Master pages gallery. Be sure to choose your custom page layout:</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/07/publishing_new_pagelayout.jpg"><img class="alignnone size-medium wp-image-150" title="Publishing New PageLayout" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/07/publishing_new_pagelayout-300x260.jpg" alt="Publishing New PageLayout" width="300" height="260" /></a></p>
<p>Then open the page using SharePoint Designer. Add your HTML and design elements and drag your custom properties to the page. HTML page design is really not my thing so this is an easy way to add some tables and layout to the page. Once you have the page ready in SPD, save the file, check in and test it by creating a new page.</p>
<p>You can now use the HTML and controls from this page when creating your custom page layout using Visual Studio.</p>
<p>Note that SPD saves the page directly into the SharePoint database and not on the hard drive. So this is just a fast way to start up the creation of your page layout but it does not allow you to deploy the page easily to other servers.</p>
<p><strong>Creating the provisioning xml schema:</strong></p>
<p>To provision the page layout and any used CSS, images or other files we create a XML file that will be picked up by the feature and install the files in the corresponding libraries in your publishing site.</p>
<p>In my example I have one custom page layout with just one image. I could as well have several images and CSS files installed using the same feature. I guess you get the idea with this image sample.</p>
<div style="background-color:#F8F8F8;; text-align:left">&lt;Elements xmlns=&#8221;http://schemas.microsoft.com/sharepoint/&#8221;&gt;</p>
<p style="padding-left: 30px;">&lt;Module Name=&#8221;ProductPageLayouts&#8221; Url=&#8221;_catalogs/masterpage&#8221; Path=&#8221;PageLayouts&#8221; RootWebOnly=&#8221;TRUE&#8221;&gt;</p>
<p style="padding-left: 30px;">&lt;File Url=&#8221;ProductDetail.aspx&#8221; Type=&#8221;GhostableInLibrary&#8221;&gt;<br />
&lt;Property Name=&#8221;Title&#8221; Value=&#8221;$Resources:pagelayout_product_name;&#8221; /&gt;<br />
&lt;Property Name=&#8221;MasterPageDescription&#8221; Value=&#8221;$Resources:pagelayout_product_description;&#8221; /&gt;<br />
&lt;Property Name=&#8221;ContentType&#8221; Value=&#8221;$Resources:cmscore,contenttype_pagelayout_name;&#8221; /&gt;<br />
&lt;Property Name=&#8221;PublishingPreviewImage&#8221; Value=&#8221;~SiteCollection/_catalogs/masterpage/$Resources:core,Culture;/Preview Images/DefaultPageLayout.png, ~SiteCollection/_catalogs/masterpage/$Resources:core,Culture;/Preview Images/DefaultPageLayout.png&#8221; /&gt;<br />
&lt;Property Name=&#8221;PublishingAssociatedContentType&#8221; Value=&#8221;;#$Resources:contenttype_productbase_name;;<br />
#0&#215;010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB0645<br />
84E219954237AF3900ADB88465BE2C439798977662094183BC;#&#8221;/&gt;<br />
&lt;/File&gt;</p>
<p style="padding-left: 30px;">&lt;/Module&gt;<br />
&lt;Module Name=&#8221;ProductLayoutImages&#8221; Url=&#8221;Style Library&#8221; Path=&#8221;Styles&#8221; RootWebOnly=&#8221;TRUE&#8221;&gt;<br />
&lt;File Url=&#8221;images/line.jpg&#8221; Name=&#8221;product/images/line.jpg&#8221; Type=&#8221;GhostableInLibrary&#8221; /&gt;<br />
&lt;/Module&gt;</p>
<p>&lt;/Elements&gt;</p>
</div>
<p>(Note: the value for PublishingAssociatedContentType above contains a break for HTML display reasons. You should put the value in one line).</p>
<p>I must say not much is available in the MSDN documentation about the schema for provisioning publishing pages. Like in other cases I looked at the PublishingLayouts feature delivered with the MOSS 2007 installation. This is a hidden feature that provisions the standard page layouts, master pages, etc for a MOSS Publishing site. You can find the feature here: C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\PublishingLayouts.</p>
<p>Some clarifications to the schema elements:</p>
<p><strong>&lt;Module&gt; element:</strong></p>
<p>&lt;Module Name=&#8221;[your module name]&#8221; Url=&#8221;virtual path destination of the module elements &#8221; Path=&#8221;path from within this feature&#8221;&gt;</p>
<p><strong>PublishingAssociatedContentType property:</strong></p>
<p>This property specifies to which the page layout you are installing is mapped to. The syntax is<br />
;#ContentTypeName;#ContentTypeID;#</p>
<p><strong>GhostableInLibrary:</strong></p>
<p>Every  element has the property Type=&#8221;GhostableInLibrary&#8221;. This property is important because it will install the file in the Master Page gallery, but the actual file content are still stored on the hard drive and not directly in the SharePoint database (as is the case if you create your page layout using SDP).</p>
<p><strong>Wrapping it up: creating the feature:</strong></p>
<p>I&#8217;m using one single feature to create my custom publishing fields, custom publishing content type and custom page layout(s).</p>
<p><strong>The feature now has the following structure:</strong></p>
<p>Three XML files are referenced by the feature schema in the order in which they should be installed.</p>
<ul>
<li>myfields.xml: this file defines all my custom site columns.</li>
</ul>
<ul>
<li>ProductContentTypes.xml: this file defines my two custom publishing content types and uses the custom field defined in myfields.xml.</li>
</ul>
<ul>
<li>PageProvisionedFiles.xml: this file contains the provisioning for page layout and associated image.</li>
</ul>
<p>I think the order in which these files are referenced in the feature schema are important because the site columns must be created before the content types, and the content types must be created before the page layout can reference it.</p>
<p>So, I have no proof that this really executes in the order defined in the feature schema but I do assume it is the case. Maybe someone has found some documentation on this?</p>
<div style="background-color:#F8F8F8;"><strong>Feature schema:</strong></p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;Feature Id=&#8221;787DCDC4-97F9-4f64-A771-D2A8B86DCADB&#8221;<br />
Title=&#8221;My publishing content type&#8221;<br />
Description=&#8221;$Resources:feature_description;&#8221;<br />
Version=&#8221;1.0.0.0&#8243;<br />
Scope=&#8221;Site&#8221;<br />
DefaultResourceFile=&#8221;_Res&#8221;<br />
Hidden=&#8221;FALSE&#8221;<br />
xmlns=&#8221;http://schemas.microsoft.com/sharepoint/&#8221;&gt;<br />
&lt;ActivationDependencies&gt;<br />
&lt;!&#8211; Add a dependency to the Publishing site&#8211;&gt;<br />
&lt;ActivationDependency FeatureId=&#8221;F6924D36-2FA8-4f0b-B16D-06B7250180FA&#8221; /&gt;<br />
&lt;/ActivationDependencies&gt;<br />
&lt;ElementManifests&gt;<br />
&lt;ElementManifest Location=&#8221;myfields.xml&#8221;/&gt;<br />
&lt;ElementManifest Location=&#8221;ProductContentTypes.xml&#8221;/&gt;<br />
&lt;ElementManifest Location=&#8221;PageProvisionedFiles.xml&#8221;/&gt;<br />
&lt;/ElementManifests&gt;<br />
&lt;/Feature&gt;</p>
</div>
<p>That&#8217;s it, the feature is complete.</p>
<p style="text-align: left;">All that needs to be done is copy the feature directory to &#8220;C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\MyContentTypeFeature&#8221; and run the install command.</p>
<p style="text-align: left;">stsadm -o installfeature -filename MyContentTypeFeature\feature.xml</p>
<p>This command can be used to install and test the feature. For a production environment I would recommend creating a SharePoint solution that installs the feature and all its files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/08/10/moss10-publishing-page-layout-using-a-feature-in-sharepoint-server-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS9 / Creating Publishing Content Types</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/07/10/moss9-creating-publishing-content-types-in-sharepoint-server-2007/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/07/10/moss9-creating-publishing-content-types-in-sharepoint-server-2007/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 04:35:43 +0000</pubDate>
		<dc:creator>rupen</dc:creator>
				<category><![CDATA[.Net Development]]></category>
		<category><![CDATA[ASP.Net Frameworks]]></category>
		<category><![CDATA[C# Development]]></category>
		<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Learn SharePoint Server]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[MOSS 2007 development]]></category>
		<category><![CDATA[MOSS Customization]]></category>
		<category><![CDATA[MOSS Design]]></category>
		<category><![CDATA[Publishing Content Type for MOSS]]></category>
		<category><![CDATA[SharePoint Administration]]></category>
		<category><![CDATA[SharePoint code]]></category>
		<category><![CDATA[Sharepoint Configuration]]></category>
		<category><![CDATA[sharepoint customization]]></category>
		<category><![CDATA[sharepoint experts]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[sharepoint server 2007]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=115</guid>
		<description><![CDATA[SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 and project server 2007.</p>
<p>Team would like to share same experience. This can help who wanted to begin with the sharePoint development and Project Server development.</p>
<p>There are list of articles start with SP and from number 1 to &#8230;. Always start with the article SP1 and read next article to start working on MOSS easily and quickly.</p>
<p><strong><span style="text-decoration: underline;">How to Create Site Columns:</span></strong></p>
<p>Before going into detail on the creation of content types via features it is important to understand how Content type IDs work.</p>
<p>You should read the following MSDN page that explains about ContenTypes IDs and their inheritance based model: <a title="http://msdn2.microsoft.com/en-us/library/aa543822.aspx" href="http://msdn2.microsoft.com/en-us/library/aa543822.aspx" target="_blank">http://msdn2.microsoft.com/en-us/library/aa543822.aspx</a></p>
<p>Since this post shows how to create Publishing Content Types we need to find from which existing content type we want to base our own. I did some research on the features that are installed and activated when you use the Publishing site. In there we can see that the base content type from which we want to inherit is the &#8220;Page&#8221;. This Content Type has an ID of:</p>
<p><span style="color: #808000;"><strong>0&#215;010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3DB0<br />
64584E219954237AF39</strong></span></p>
<p>So in order to create our own ID we can add two hexadecimal values, or, we can add &#8220;00&#8243; followed by a GUID. I prefer this approach as it is unique and identifies custom content types more easily.</p>
<p><strong>So my content type ID can be:</strong></p>
<p><span style="color: #808000;"><strong>0&#215;010100C568DB52D9D0A14D9B2FDCC96666E9F20079481<br />
30EC3DB064584E219954237AF3900ADB88465BE2C439798977662094183BC</strong></span></p>
<p>The bold text is the Page content type ID to which I append &#8220;00&#8243; and a new GUID.</p>
<p><strong>Content Type Schema:</strong></p>
<p style="text-align: left;">Second important piece of information is the Content Type schema. I could not find any information specific to publishing content types on MSDN or the MOSS SDK. So again the solution is to use the available information together with some nosing in the publishing features installed by MOSS in the 12 hive. ContentType schema on MSDN: <a title="http://msdn2.microsoft.com/en-us/library/aa544268.aspx" href="http://msdn2.microsoft.com/en-us/library/aa544268.aspx" target="_blank">http://msdn2.microsoft.com/en-us/library/aa544268.aspx</a></p>
<p>In the following sample I&#8217;m creating two content types: a product content type and a hardware product content type. You will see that the hardware product content type inherits from the product content type by appending 00 + a new GUID to the ID.</p>
<div style="background-color:#F8F8F8;">
<p style="text-align: left;">&lt;Elements xmlns=&#8221;http://schemas.microsoft.com/sharepoint/&#8221;&gt;</p>
<p style="padding-left: 30px; text-align: left;">&lt;!&#8211; Product base content type &#8211;&gt;<br />
&lt;ContentType ID=&#8221;0&#215;010100C568DB52D9D0A14D9B2FDCC96666E9F2007<br />
948130EC3DB064584E219954237AF3900ADB88465BE2C43979<br />
8977662094183BC&#8221; Name=&#8221;$Resources:contenttype_productbase_name;&#8221; Description=&#8221;$Resources:contenttype_productbase_description;&#8221; Group=&#8221;$Resources:group_productcontenttypes;&#8221; Sealed=&#8221;FALSE&#8221; Version=&#8221;0&#8243;&gt;<br />
&lt;FieldRefs&gt;<br />
&lt;FieldRef ID=&#8221;{F44BFBB0-4725-4167-B976-F85F84131AA3}&#8221; Name=&#8221;ProductCategory&#8221; Required=&#8221;FALSE&#8221; /&gt;<br />
&lt;FieldRef ID=&#8221;{EB19D87C-5DEE-4a73-85E0-506293D422D9}&#8221; Name=&#8221;ProductName&#8221; Required=&#8221;TRUE&#8221; /&gt;<br />
&lt;FieldRef ID=&#8221;{D73843E5-0D9F-4400-BC75-1A4C2BD27900}&#8221; Name=&#8221;ProductIntro&#8221; Required=&#8221;TRUE&#8221; /&gt;<br />
&lt;FieldRef ID=&#8221;{894635F9-1DF8-46f1-BC47-46EFF09FEF3D}&#8221; Name=&#8221;ProductDescription&#8221; Required=&#8221;FALSE&#8221; /&gt;<br />
&lt;FieldRef ID=&#8221;{D89C9409-2A97-4a7a-81F5-7D45E7CD8D6B}&#8221; Name=&#8221;LaunchDate&#8221; Required=&#8221;TRUE&#8221; /&gt;<br />
&lt;FieldRef ID=&#8221;{6036ECDE-521A-4dbe-94B4-40E0E4EF7029}&#8221; Name=&#8221;ProductImage&#8221; Required=&#8221;FALSE&#8221; /&gt;<br />
&lt;FieldRef ID=&#8221;{F31DF817-D220-4449-BD6F-2F1B7C0823ED}&#8221; Name=&#8221;ProductPrice&#8221; Required=&#8221;TRUE&#8221; /&gt;<br />
&lt;/FieldRefs&gt;<br />
&lt;DocumentTemplate TargetName=&#8221;/_layouts/CreatePage.aspx&#8221; /&gt;<br />
&lt;/ContentType&gt;</p>
<p style="padding-left: 30px; text-align: left;">&lt;ContentType ID=&#8221;0&#215;010100C568DB52D9D0A14D9B2FDCC96666E9F2007948130EC3D<br />
B064584E219954237AF3900ADB88465BE2C439798977662094183BC00B2DE<br />
F3B02D274199BFF43C6D2F129D99&#8243; Name=&#8221;$Resources:contenttype_hardwareproduct_name;&#8221; Group=&#8221;$Resources:group_productcontenttypes;&#8221; Sealed=&#8221;FALSE&#8221; Version=&#8221;0&#8243;&gt;<br />
&lt;FieldRefs&gt;<br />
&lt;FieldRef ID=&#8221;{6A08E31A-0620-45df-BAC1-54A4D0FBFDCE}&#8221; Name=&#8221;ProductManual&#8221; /&gt;<br />
&lt;/FieldRefs&gt;<br />
&lt;DocumentTemplate TargetName=&#8221;/_layouts/CreatePage.aspx&#8221; /&gt;<br />
&lt;/ContentType&gt;</p>
<p style="text-align: left;">&lt;/Elements&gt;</p>
</div>
<p>Now we need to add this to the feature and install it together with what was done in part I of this series.</p>
<p>The complete feature can be downloaded <a title="here" href="http://www.katriendg.com/aboutdotnet/attachments/200703/MyContentTypeFeature.zip" target="_blank">here</a>.</p>
<p><strong>Refer:</strong></p>
<p><a title="http://www.katriendg.com/aboutdotnet/2007_4_2_publishing-content-types.aspx" href="http://www.katriendg.com/aboutdotnet/2007_4_2_publishing-content-types.aspx" target="_blank">http://www.katriendg.com/aboutdotnet/2007_4_2_publishing-content-types.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/07/10/moss9-creating-publishing-content-types-in-sharepoint-server-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS8 / Create Site Columns in SharePoint Server</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/06/12/moss8-create-site-columns-in-sharepoint-server-2007/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/06/12/moss8-create-site-columns-in-sharepoint-server-2007/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 04:17:14 +0000</pubDate>
		<dc:creator>rupen</dc:creator>
				<category><![CDATA[.Net Development]]></category>
		<category><![CDATA[ASP.Net Frameworks]]></category>
		<category><![CDATA[C# Development]]></category>
		<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[Learn SharePoint Server]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[MOSS 2007 development]]></category>
		<category><![CDATA[MOSS Design]]></category>
		<category><![CDATA[SharePoint Administration]]></category>
		<category><![CDATA[SharePoint code]]></category>
		<category><![CDATA[Sharepoint Configuration]]></category>
		<category><![CDATA[sharepoint customization]]></category>
		<category><![CDATA[sharepoint experts]]></category>
		<category><![CDATA[sharepoint server 2007]]></category>
		<category><![CDATA[Site Columns for MOSS]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=114</guid>
		<description><![CDATA[SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 and project server 2007.</p>
<p>Team would like to share same experience. This can help who wanted to begin with the sharePoint development and Project Server development.</p>
<p>There are list of articles start with SP and from number 1 to &#8230;. Always start with the article SP1 and read next article to start working on MOSS easily and quickly.</p>
<p><strong>Creating Site Columns:</strong></p>
<p>In this 3 part series I will explain the steps you need to follow in order to create site columns, content types and page layouts for use with a MOSS publishing site.</p>
<p>There is already quite some information to be found on the internet on how to create site columns and custom lists using a feature, however most part apply to team sites (WSS3 sites), not MOSS publishing sites.</p>
<p><strong>Field definition schema:</strong></p>
<p>Site columns are created by placing &lt;Field&gt; elements inside an &lt;Elements&gt; tag. It is important to review the &lt;Field&gt; element definition before going any further. The complete schema definition is detailed in the WSS3 SDK which can be consulted online on the MSDN site (<span style="color: #0000ff;"><a title="http://msdn2.microsoft.com/en-us/library/ms437580.aspx" href="http://msdn2.microsoft.com/en-us/library/ms437580.aspx" target="_blank">http://msdn2.microsoft.com/en-us/library/ms437580.aspx</a></span>). On the mentioned URL you can find all the types of fields available out of the box, the required attributes, possible values and so forth.</p>
<p>This is very good documentation for WSS3 fields but information on extra field types for publishing site columns is not available. At least I was unable to find it in the MOSS SDK or online. My solution was to look at the feature definitions used by MOSS publishing feature available out of the box.</p>
<p>Most of the attributes of the &lt;Field&gt; element are optional. This is a sample field definition using the most common attributes:</p>
<p style="text-align: left; padding-left: 30px;">&lt;Field</p>
<p style="text-align: left; padding-left: 60px;">ID=&#8221;{4C67267C-B950-4cd4-8038-DEACA9EC2F74}&#8221;<br />
Name=&#8221;IntroductionText&#8221;<br />
StaticName=&#8221; IntroductionText &#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243;<br />
Group=&#8221;My publishing fields group&#8221;<br />
DisplayName=&#8221;Introduction text field&#8221;<br />
Type=&#8221;Text&#8221;<br />
Required=&#8221;FALSE&#8221;<br />
Sealed=&#8221;TRUE&#8221;<br />
MaxLength=&#8221;250&#8243;&gt;</p>
<p style="text-align: left; padding-left: 30px;">&lt;/Field&gt;</p>
<p style="text-align: left;">When using other types of fields there are extra attributes that are useful.</p>
<p>A note about the sealed attribute: setting this to &#8220;TRUE&#8221; will ensure the field cannot be removed via the &#8220;Change column&#8221; page. However when you are creating a choice field (a dropdown, a checkbox list), and you want your users to be able to edit the list of values you need to set sealed to FALSE.</p>
<p>Some attributes are only used in combination with some types of fields, like for example the StorageTZ attribute, which is useful together with Type=&#8221;DateTime&#8221;.</p>
<p>When it comes to publishing field types there are some new types that you can use. As far as I could find they are not yet documented. By looking at the &#8220;PublishingResources&#8221; hidden feature I could find the following:</p>
<table border="0">
<tbody>
<tr>
<th>Field type</th>
<th>Description</th>
<th>Related attributes</th>
</tr>
<tr>
<td>Image</td>
<td>Publishing field for storing an image. The edit control shows the Insert picture button.</td>
<td>RichText=&#8221;TRUE&#8221;<br />
RichTextMode=&#8221;FullHtml&#8221;</td>
</tr>
<tr>
<td>HTML</td>
<td>HTML editing control</td>
<td>RichText=&#8221;TRUE&#8221; RichTextMode=&#8221;FullHtml&#8221;</td>
</tr>
<tr>
<td>Link</td>
<td>Hyperlink control</p>
<p>In edit mode, allows the user to select an internal file (also external links can be allowed)</p>
<p>In display mode shows the clickable link to the file</td>
<td>RichText=&#8221;TRUE&#8221; RichTextMode=&#8221;FullHtml&#8221;</td>
</tr>
<tr>
<td>SummaryLinks</td>
<td>Field control for editing a list of links</td>
<td></td>
</tr>
</tbody>
</table>
<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val=" " /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> There are also some extra fields that are related to the page publishing content types such as &#8220;Publishing schedule start date&#8221;. I don&#8217;t think you&#8217;d like to use these as the page content types normally already inherit these types of columns.</p>
<p>As a sample for this and the following posts in this series I&#8217;m creating a product page content type. My product contains 8 fields going from name and description, date, image, price.</p>
<p>This is the XML schema (myfields.xml):</p>
<p style="text-align: left;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243; ?&gt;<br />
&lt;!&#8211; _lcid=&#8221;1033&#8243; _version=&#8221;12.0.4017&#8243; _dal=&#8221;1&#8243; &#8211;&gt;<br />
&lt;!&#8211; _LocalBinding &#8211;&gt;<br />
&lt;!&#8211;<br />
&#8211;&gt;<br />
&lt;Elements xmlns=&#8221;http://schemas.microsoft.com/sharepoint/&#8221;&gt;<br />
&lt;Field ID=&#8221;{F44BFBB0-4725-4167-B976-F85F84131AA3}&#8221; Name=&#8221;ProductCategory&#8221; StaticName=&#8221;ProductCategory&#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243; Group=&#8221;$Resources:column_group_products;&#8221; DisplayName=&#8221;$Resources:column_productcategory_displayname;&#8221; Type=&#8221;Choice&#8221; Format=&#8221;Dropdown&#8221; Required=&#8221;FALSE&#8221; Sealed=&#8221;FALSE&#8221;&gt;<br />
&lt;CHOICES&gt;<br />
&lt;CHOICE&gt;$Resources:column_productcategory_choice1;&lt;/CHOICE&gt;<br />
&lt;CHOICE&gt;$Resources:column_productcategory_choice2;&lt;/CHOICE&gt;<br />
&lt;CHOICE&gt;$Resources:column_productcategory_choice3;&lt;/CHOICE&gt;<br />
&lt;/CHOICES&gt;<br />
&lt;/Field&gt;<br />
&lt;Field ID=&#8221;{EB19D87C-5DEE-4a73-85E0-506293D422D9}&#8221; Name=&#8221;ProductName&#8221; StaticName=&#8221;ProductName&#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243; Group=&#8221;$Resources:column_group_products;&#8221; DisplayName=&#8221;$Resources:column_productname_displayname;&#8221; Type=&#8221;Text&#8221; Required=&#8221;TRUE&#8221; Sealed=&#8221;TRUE&#8221; MaxLength=&#8221;255&#8243;&gt;&lt;/Field&gt;<br />
&lt;Field ID=&#8221;{D73843E5-0D9F-4400-BC75-1A4C2BD27900}&#8221; Name=&#8221;ProductIntro&#8221; StaticName=&#8221;ProductIntro&#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243; Group=&#8221;$Resources:column_group_products;&#8221; DisplayName=&#8221;$Resources:column_intro_displayname;&#8221; Type=&#8221;Text&#8221; Description=&#8221;$Resources:column_intro_description;&#8221; Required=&#8221;TRUE&#8221; Sealed=&#8221;TRUE&#8221; MaxLength=&#8221;500&#8243; NumLines=&#8221;2&#8243;&gt;&lt;/Field&gt;<br />
&lt;Field ID=&#8221;{894635F9-1DF8-46f1-BC47-46EFF09FEF3D}&#8221; Name=&#8221;ProductDescription&#8221; StaticName=&#8221;ProductDescription&#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243; Group=&#8221;$Resources:column_group_products;&#8221; DisplayName=&#8221;$Resources:column_productdesc_displayname;&#8221; Type=&#8221;HTML&#8221; Required=&#8221;FALSE&#8221; Sealed=&#8221;TRUE&#8221; RichText=&#8221;TRUE&#8221; RichTextMode=&#8221;FullHtml&#8221;&gt;&lt;/Field&gt;<br />
&lt;Field ID=&#8221;{D89C9409-2A97-4a7a-81F5-7D45E7CD8D6B}&#8221; Name=&#8221;LaunchDate&#8221; StaticName=&#8221;LaunchDate&#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243; Group=&#8221;$Resources:column_group_products;&#8221; DisplayName=&#8221;$Resources:column_date_displayname;&#8221; Type=&#8221;DateTime&#8221; Format=&#8221;DateTime&#8221; Required=&#8221;TRUE&#8221; Sealed=&#8221;TRUE&#8221; StorageTZ=&#8221;UTC&#8221;&gt;&lt;/Field&gt;<br />
&lt;Field ID=&#8221;{6036ECDE-521A-4dbe-94B4-40E0E4EF7029}&#8221; Name=&#8221;ProductImage&#8221; StaticName=&#8221;ProductImage&#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243; Group=&#8221;$Resources:column_group_products;&#8221; DisplayName=&#8221;$Resources:column_image_displayname;&#8221; Type=&#8221;Image&#8221; Required=&#8221;FALSE&#8221; Sealed=&#8221;TRUE&#8221; RichText=&#8221;TRUE&#8221; RichTextMode=&#8221;FullHtml&#8221;&gt;&lt;/Field&gt;<br />
&lt;Field ID=&#8221;{6A08E31A-0620-45df-BAC1-54A4D0FBFDCE}&#8221; Name=&#8221;ProductManual&#8221; StaticName=&#8221;ProductManual&#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243; Group=&#8221;$Resources:column_group_products;&#8221; DisplayName=&#8221;$Resources:column_manual_displayname;&#8221; Type=&#8221;Link&#8221; Required=&#8221;FALSE&#8221; Sealed=&#8221;TRUE&#8221; RichText=&#8221;TRUE&#8221; RichTextMode=&#8221;FullHtml&#8221;&gt;&lt;/Field&gt;<br />
&lt;Field ID=&#8221;{F31DF817-D220-4449-BD6F-2F1B7C0823ED}&#8221; Name=&#8221;ProductPrice&#8221; StaticName=&#8221;ProductPrice&#8221; SourceID=&#8221;http://schemas.microsoft.com/sharepoint/v3&#8243; Group=&#8221;$Resources:column_group_products;&#8221; DisplayName=&#8221;$Resources:column_productprice_displayname;&#8221; Type=&#8221;Currency&#8221; Required=&#8221;TRUE&#8221; Sealed=&#8221;TRUE&#8221; Decimals=&#8221;2&#8243;&gt;&lt;/Field&gt;<br />
&lt;/Elements&gt;</p>
<p style="text-align: left;">To install the field definitions via a feature I&#8217;m creating a feature.xml file that refers to the myfields.xml. In the feature file I also add a dependency to the PublishingSite feature.</p>
<p><strong>A note about resources files:</strong></p>
<p>As you may notice in the display name and description attributes I’m referring to a resource instead of typing in the text. I recommend using resource files whenever translatable (non system name) text is used.</p>
<p>Living in Belgium, a country where we have three official languages I&#8217;m used to creating multi-lingual applications. Even when a first requirement does not specify a multi-lingual approach I still prefer to foresee resource files.</p>
<p>When creating features you can use local resource files by placing them in a sub-folder in the feature directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/06/12/moss8-create-site-columns-in-sharepoint-server-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MOSS2/Working with Web Application and Site Collection</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/04/14/moss2-working-with-web-application-and-site-collection-in-sharepoint-server-2007/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/04/14/moss2-working-with-web-application-and-site-collection-in-sharepoint-server-2007/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 05:11:54 +0000</pubDate>
		<dc:creator>rupen</dc:creator>
				<category><![CDATA[.Net Development]]></category>
		<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[Create Content Place holder]]></category>
		<category><![CDATA[Create Master page]]></category>
		<category><![CDATA[Learn SharePoint Server]]></category>
		<category><![CDATA[Minimal Master Page]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Moss 2007 customization]]></category>
		<category><![CDATA[MOSS 2007 development]]></category>
		<category><![CDATA[MOSS Site Collection]]></category>
		<category><![CDATA[MOSS Web Applications]]></category>
		<category><![CDATA[SharePoint Administration]]></category>
		<category><![CDATA[SharePoint code]]></category>
		<category><![CDATA[Sharepoint Configuration]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[sharepoint server 2007]]></category>
		<category><![CDATA[sharepoint server Solutions]]></category>
		<category><![CDATA[Site Collections]]></category>
		<category><![CDATA[Web Application and Site Collections]]></category>
		<category><![CDATA[Web Application and Site Collections in MOSS]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[Working with Site Collections]]></category>
		<category><![CDATA[Working with Web Applications]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=98</guid>
		<description><![CDATA[SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint team and Project server team at offshoresoftwaredevelopmentindia.com has great experience of creating web application based on MOSS 2007 and Project server 2007. That includes customization and development of webpart, site definitions, theme development, extension development, module creation. The team has developed CRM application, Job portal, Project management, to CMS applications based on MOSS 2007 and project server 2007.</p>
<p>Team would like to share same experience. This can help who wanted to begin with the sharePoint development and Project Server development.</p>
<p>There are list of articles start with SP and from number 1 to &#8230;. Always start with the article SP1 and read next article to start working on MOSS easily and quickly.</p>
<p><strong><span style="text-decoration: underline;">Working with Web Application and Site Collection:</span></strong></p>
<p>To start working with WA (Web Application) and SC (Site Collection), open web application we have created by entering link into browser. We need to log in by user name and password which we have given to web application.</p>
<p>See to the following image for home page of the web application. The most important control on the webpage is site Actions.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections.jpg"><img class="alignnone size-medium wp-image-215" title="Working with WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections-300x216.jpg" alt="Working with WebApplication And SiteCollections" width="300" height="216" /></a></p>
<p>If you click on the site action button you will see the menu with so many options.</p>
<p>Go to Site Action -&gt; Site setting -&gt; Modify All Site Settings.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections2.jpg"><img class="alignnone size-medium wp-image-216" title="Working with WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections2-300x114.jpg" alt="Working with WebApplication And SiteCollections" width="300" height="114" /></a></p>
<p>After clicking Modify All site Settings you will see following screen.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections3.jpg"><img class="alignnone size-medium wp-image-217" title="Working with WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections3-300x144.jpg" alt="Working with WebApplication And SiteCollections" width="300" height="144" /></a></p>
<p><strong>Change theme of the website:</strong></p>
<p>Please go to</p>
<p>Go to Site Action -&gt; Site setting -&gt; Modify All Site Settings.</p>
<p>Then you will see the following screen. Then click on</p>
<p>Look and feel -&gt; Site theme</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections4.jpg"><img class="alignnone size-medium wp-image-218" title="Working with WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections4-300x134.jpg" alt="Working with WebApplication And SiteCollections" width="300" height="134" /></a></p>
<p>Then you will see the following screen to change the theme. Select theme you want and apply it.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections5.jpg"><img class="alignnone size-medium wp-image-219" title="Working with WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections5-300x110.jpg" alt="Working with WebApplication And SiteCollections" width="300" height="110" /></a></p>
<p>After applying we can see the new theme as following screen.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections6.jpg"><img class="alignnone size-medium wp-image-220" title="Working with WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections6-300x147.jpg" alt="Working with WebApplication And SiteCollections" width="300" height="147" /></a></p>
<p><strong>Working with master pages and templates:</strong></p>
<p>Please go to</p>
<p>Go to Site Action -&gt; Site setting -&gt; Modify All Site Settings.</p>
<p>Then you will see the following screen. Then click on</p>
<p>Galleries -&gt; Master pages and page layouts</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections7.jpg"><img class="alignnone size-medium wp-image-221" title="Working with WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections7-300x134.jpg" alt="Working with WebApplication And SiteCollections" width="300" height="134" /></a></p>
<p>On clicking master pages you will see page as shown in following image.</p>
<p><a href="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections8.jpg"><img class="alignnone size-medium wp-image-222" title="Working with WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections8-300x130.jpg" alt="Working with WebApplication And SiteCollections" width="300" height="130" /></a></p>
<p><strong>Master Page:</strong></p>
<p>ASP.NET master pages allow you to create a consistent layout for the pages in your application. A single master page defines the look and feel and standard behavior that you want for all of the pages (or a group of pages) in your application. You can then create individual content pages that contain the content you want to display. When users request the content pages, they merge with the master page to produce output that combines the layout of the master page with the content from the content page.</p>
<p><strong>How Master Pages Work:</strong></p>
<p>Master pages actually consist of two pieces, the master page itself and one or more content pages.</p>
<p>A master page is an ASP.NET file with the extension .master (for example, MySite.master) with a predefined layout that can include static text, HTML elements, and server controls. The master page is identified by a special <strong><a title="@ Master" href="http://msdn2.microsoft.com/en-us/library/ms228176.aspx" target="_blank">@ Master</a></strong> directive that replaces the <strong><a title="@ Page" href="http://msdn2.microsoft.com/en-us/library/ydy4x04a.aspx" target="_blank">@ Page</a></strong> directive that is used for ordinary .aspx pages.</p>
<p>In addition to the @ Master directive, the master page also contains all of the top-level HTML elements for a page, such as html, head, and form. For example, on a master page you might use an HTML table for the layout, an img element for your company logo, static text for the copyright notice, and server controls to create standard navigation for your site. You can use any HTML and any ASP.NET elements as part of your master page.</p>
<p><strong>Replaceable Content Placeholders:</strong></p>
<p>In addition to static text and controls that will appear on all pages, the master page also includes one or more ContentPlaceHolder controls. These placeholder controls define regions where replaceable content will appear. In turn, the replaceable content is defined in content pages. After you have defined the ContentPlaceHolder controls, a master page might look like the following.</p>
<hr />C#<br />
&lt;%@ Master Language=&#8221;C#&#8221; %&gt;</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML<br />
1.1//EN&#8221; &#8220;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&#8221;&gt;</p>
<p>&lt;html&gt;<br />
&lt;head runat=&#8221;server&#8221; &gt;<br />
&lt;title&gt;Master page title&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;asp:contentplaceholder id=&#8221;Main&#8221; runat=&#8221;server&#8221; /&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;asp:contentplaceholder id=&#8221;Footer&#8221; runat=&#8221;server&#8221; /&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<hr /><a rel="attachment wp-att-223" href="http://www.offshoresoftwaredevelopmentindia.com/blog/2008/04/14/moss2-working-with-web-application-and-site-collection-in-sharepoint-server-2007/working_with_sitecollections10/"><img title="Working WebApplication And SiteCollections" src="http://www.offshoresoftwaredevelopmentindia.com/blog/wp-content/uploads/2009/08/working_with_sitecollections10-300x203.jpg" alt="Working WebApplication And SiteCollections" width="300" height="203" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/04/14/moss2-working-with-web-application-and-site-collection-in-sharepoint-server-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Share Point Server &amp; Project Server 2007</title>
		<link>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/03/03/microsoft-sharepoint-project-server-solution/</link>
		<comments>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/03/03/microsoft-sharepoint-project-server-solution/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 05:39:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microsoft Project Server]]></category>
		<category><![CDATA[Microsoft SharePoint Server]]></category>
		<category><![CDATA[.Net Development India]]></category>
		<category><![CDATA[Microsoft project server 2007]]></category>
		<category><![CDATA[Microsoft Project Server Training]]></category>
		<category><![CDATA[Microsoft project sharepoint]]></category>
		<category><![CDATA[Project Server 2007]]></category>
		<category><![CDATA[project server consulting]]></category>
		<category><![CDATA[Project Server Developer]]></category>
		<category><![CDATA[Project Server Interface]]></category>
		<category><![CDATA[sharepoint customization]]></category>
		<category><![CDATA[sharepoint experts]]></category>
		<category><![CDATA[sharepoint server 2007]]></category>
		<category><![CDATA[sharepoint server Solutions]]></category>
		<category><![CDATA[sharepoint team services]]></category>

		<guid isPermaLink="false">http://www.offshoresoftwaredevelopmentindia.com/blog/?p=9</guid>
		<description><![CDATA[Offshore software development India has added one more technology in its work profile. OSDI has successfully delivered site definition using Microsoft Share Point Server 2007 and Share point services 3.0. This site definition is for the job portal uses Master pages, Page Layouts, lists, web parts, site template, site columns, content types, customize search solution [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Offshore software development India has added one more technology in its work profile. OSDI has successfully delivered site definition using Microsoft Share Point Server 2007 and Share point services 3.0. This site definition is for the job portal uses Master pages, Page Layouts, lists, web parts, site template, site columns, content types, customize search solution for the portal and many other share point features. All the development is done programmatically and solution of site definition is totally customizable with the features. Solution is easily installed and deployed in share point farm using installer.</p>
<p class="MsoNormal" style="line-height: normal;">The second part of the development was for the project server 2007. New site template has been created for the project server using FBA authentication. All the site definition and site templates are installable in the server farm using their installer or using manual installation.</p>
<p class="MsoNormal">Apart from the above site definition and site templates there are readily available web parts for the MOSS 2007 custom calendar, tree view control for the document library, people picker for Active directory users. All the web parts are available with installation package.</p>
<p class="MsoNormal">Team at OSDI is Please contact <a href="mailto:info@offshoresoftwaredevelopmentindia.com">info@offshoresoftwaredevelopmentindia.com</a> for the inquiry and development using share point server and project server.</p>
<p class="MsoNormal"><strong>About Share Point Server:</strong></p>
<p class="MsoNormal"><a title="Microsoft SharePoint Server 2007" href="http://www.offshoresoftwaredevelopmentindia.com/asp-net-mssql-vb-csharp-programming/microsoft-sharepoint-server-customization-solutions.html" target="_blank"><img src="/templates/Offshore_Software/images/logo6.jpg" alt="The image “http://www.offshoresoftwaredevelopmentindia.com/templates/Offshore_Software/images/logo6.jpg” cannot be displayed, because it contains errors." /></a></p>
<p class="MsoNormal" style="margin: 12.25pt 0in; line-height: 19.2pt;">Office SharePoint Server 2007 provides integrated enterprise-class capabilities that can help improve organizational effectiveness by connecting people, processes, and information across boundaries. This helps in Manage content and streamline processes, Improve business insight, Find and share information more simply, Empower IT to make a strategic impact.</p>
<p class="MsoNormal"><strong>Benefits:</strong></p>
<ul>
<li>Provide a simple,      familiar, and consistent user experience.</li>
<li>Boost employee      productivity by simplifying everyday business activities.</li>
<li>Help meet regulatory      requirements through comprehensive control over content.</li>
<li>Effectively manage and      repurpose content to gain increased business value.</li>
<li>Simplify organization-wide      access to both structured and unstructured information across disparate      systems.</li>
</ul>
<p>Connect people with      information and expertise.</p>
<ul>
<li>Accelerate shared business      processes across organizational boundaries.</li>
<li>Share business data      without divulging sensitive information.</li>
<li>Enable people to make      better-informed decisions by presenting</li>
<li>Provide a single,      integrated platform to manage intranet, extranet, and Internet      applications across the enterprise.</li>
</ul>
<ul style="margin-top: 0in;" type="disc"></ul>
<p class="MsoNormal" style="margin: 12.25pt 0in; line-height: 19.2pt;">For more information please refer <a href="http://office.microsoft.com/sharepoint/">http://office.microsoft.com/sharepoint/</a>.</p>
<p class="MsoNormal"><strong>About Project Server:</strong></p>
<p class="MsoNormal"><a title="Microsoft Office Project Server 2007" href="http://www.offshoresoftwaredevelopmentindia.com/asp-net-mssql-vb-csharp-programming/microsoft-project-server-customization-solutions.html" target="_blank"><img src="/templates/Offshore_Software/images/project_server_logo.jpg" alt="The image “http://www.offshoresoftwaredevelopmentindia.com/templates/Offshore_Software/images/project_server_logo.jpg” cannot be displayed, because it contains errors." /></a></p>
<p class="MsoNormal">With Microsoft Office Project Server 2007 and its clients, your organization can more effectively manage and coordinate work ranging from one-time projects to complex programs across the entire project life cycle. Office Project Server 2007 is designed to be accessible by its clients, Microsoft Office Project Professional 2007 and Microsoft Office Project Web Access.</p>
<p class="MsoNormal"><strong>Benefits:</strong></p>
<ul>
<li>Budget Tracking and Cost      Resources permit better financial insight and tracking.</li>
<li>The Proposals capability      in Office Project Web Access manages plans and activities prior to project      approval.</li>
<li>The Activity Plan      capability of Office Project Web Access helps manage ongoing operations      activities after project completion.</li>
<li>The Reporting Data Service      permits easy user reporting with common business reporting tools such as      Microsoft Office SharePoint Server 2007.</li>
<li>With the Cube Building      Service, users can easily select data to build portfolio analyzer cubes,      for sophisticated analysis and reporting.</li>
<li>About Offshore Software      Development India:</li>
</ul>
<ul style="margin-top: 0in;" type="disc"></ul>
<p class="MsoNormal">For more information please refer <a href="http://office.microsoft.com/en-us/projectserver/">http://office.microsoft.com/en-us/projectserver/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.offshoresoftwaredevelopmentindia.com/blog/2008/03/03/microsoft-sharepoint-project-server-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

