<?xml version="1.0" encoding="utf-8"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>Corro'll Driskell</title><link>http://sharepoint.mindsharpblogs.com/Driskell</link><description>iDeal Office Systems
/collaboration.productivity.integration/</description><copyright>(C) 2009 Mindsharp</copyright><lastBuildDate>Sat, 04 Jul 2009 18:08:39 GMT</lastBuildDate><generator>RSSBuilder: 1.0.0.0</generator><item><author>Corro'll Driskell</author><title>Requirements for Building a Master Pages From the Bottom Up using SharePoint Designer 2007</title><guid>/Driskell/archive/2009/04/03/Requirements-for-Building-a-Master-Pages-From-the-Bottom-Up-using-SharePoint-Designer-2007.aspx</guid><link>/Driskell/archive/2009/04/03/Requirements-for-Building-a-Master-Pages-From-the-Bottom-Up-using-SharePoint-Designer-2007.aspx</link><pubDate>Fri, 03 Apr 2009 19:49:00 GMT</pubDate><description>&lt;div class=ExternalClass61CB2D2D17414175AB4920786C49CCFD&gt;&lt;p&gt;There has been a number of conversations over the last year referencing building master pages from the bottom up using SharePoint Designer ( 2007).  &lt;/p&gt; &lt;p&gt;Although It is a best practice – using SPD 2007 -  to build customized master pages using an existing master page, it does not replace the fact that in order to recognize the various components that make up the master page a designer must build a master page from the ground up.&lt;/p&gt; &lt;p&gt;There are a number of blogs that speak to this process.  It is not my intent to duplicate any postings.  It is my intent to discuss this process in my own words and to add value based on the feedback from a number of sessions.  All designers, should download the base.master file from Microsoft and use it as a starting point.  &lt;/p&gt; &lt;p&gt;There are a number of blogs that identify the required controls and placeholders for Master Pages:&lt;/p&gt; &lt;p&gt;&lt;a title="Discover How to Build Various Master Pages" href="http://www.google.com/custom?q=required+placeholders+master+page+heather&amp;amp;hl=en&amp;amp;client=pub-7642675056581356&amp;amp;cof=FORID:13;AH:left;CX:Discover%2520SharePoint;L:http://www.google.com/coop/intl/en/images/custom_search_sm.gif;LH:65;LP:1;VLC:%23551a8b;GFNT:%23666666;DIV:%23cccccc;&amp;amp;cx=000252751487447036259:1ydcjucp_my&amp;amp;adkw=AELymgVi3k4O7yV3Y37XDtoClj0r1XqA26vOwNhyIm_d12FrlIzMMZzlBb4vdP8UoeTRYN_brgf0qx0JLpO22uyGzUc6ZlP_U1AoXyeL_8dzBkeY7E2dKBmkUfTZ2ruvj5Qhj2EkMGshbfqeRTAPSQubWWtEYJ3vp6raEfFq1w0SuzpngeWhu90&amp;amp;sa=2" target="_blank" rel=tag&gt;Discover How to Build Various Master Pages&lt;/a&gt;&lt;/p&gt; &lt;p&gt;To start, I would recommend that designers open up a number of master pages in SharePoint Designer’s Code View.  You will note the consistent tags between  the &amp;lt;HEAD&amp;gt;&amp;lt;/HEAD&amp;gt; elements.  Remember, you would need to ensure that all of the required controls and content place holders are included on the master page.  &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;1.  You can copy the head elements of an existing master page.  That is a great way to avoid making mistakes.&lt;/p&gt; &lt;p&gt;&amp;lt;HEAD runat=&amp;quot;server&amp;quot;&amp;gt; &lt;br&gt;    &amp;lt;META Name=&amp;quot;GENERATOR&amp;quot; Content=&amp;quot;Microsoft SharePoint&amp;quot;&amp;gt; &lt;br&gt;    &amp;lt;META Name=&amp;quot;progid&amp;quot; Content=&amp;quot;SharePoint.WebPartPage.Document&amp;quot;&amp;gt; &lt;br&gt;    &amp;lt;META HTTP-EQUIV=&amp;quot;Content-Type&amp;quot; CONTENT=&amp;quot;text/html; charset=utf-8&amp;quot;&amp;gt; &lt;br&gt;    &amp;lt;META HTTP-EQUIV=&amp;quot;Expires&amp;quot; content=&amp;quot;0&amp;quot;&amp;gt;&lt;/p&gt; &lt;p&gt;    /*** &lt;br&gt;    &amp;lt;SharePoint:RobotsMetaTag runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;/p&gt; &lt;p&gt;    /*** Displays the set title for the site in the tile bar ***/ &lt;br&gt;    &amp;lt;Title ID=onetidTitle&amp;gt;&amp;lt;asp:ContentPlaceHolder id=PlaceHolderPageTitle runat=&amp;quot;server&amp;quot;/&amp;gt;&amp;lt;/Title&amp;gt;&lt;/p&gt; &lt;p&gt;    /*** The CssLink control calls the core.css cascading style sheets from the WFE server’s 12 Hive ***/ &lt;br&gt;    &amp;lt;SharePoint:CssLink runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;/p&gt; &lt;p&gt;    /*** The Theme control calls the cascading style sheet for the associated theme ***/ &lt;br&gt;    &amp;lt;SharePoint:Theme runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;/p&gt; &lt;p&gt;   /*** The ScriptLink control runs the core.js javascript file.  It contains the basic SharePoint functions. ***/ &lt;br&gt;    &amp;lt;SharePoint:ScriptLink language=&amp;quot;javascript&amp;quot; name=&amp;quot;core.js&amp;quot; Defer=&amp;quot;true&amp;quot; runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;/p&gt; &lt;p&gt;    /*** Calls on any custom javascript files. ***/ &lt;br&gt;    &amp;lt;SharePoint:CustomJSUrl runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;/p&gt; &lt;p&gt;    /*** Identifies the site’s disco file that defines the web services. ***/ &lt;br&gt;    &amp;lt;SharePoint:SoapDiscoveryLink runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;/p&gt; &lt;p&gt;   /*** Content Place Holder that allows additional information to be added to the Page head. ***/ &lt;br&gt;    &amp;lt;asp:ContentPlaceHolder id=&amp;quot;PlaceHolderAdditionalPageHead&amp;quot; runat=&amp;quot;server&amp;quot;/&amp;gt;&lt;/p&gt; &lt;p&gt;   /*** SharePoint uses the DelegateControl to add additional content between the head elements. ***/ &lt;br&gt;    &amp;lt;SharePoint:DelegateControl runat=&amp;quot;server&amp;quot; ControlId=&amp;quot;AdditionalPageHead&amp;quot; AllowMultipleControls=&amp;quot;true&amp;quot;/&amp;gt; &lt;br&gt;&amp;lt;/HEAD&amp;gt;&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/16/HEADMP_06282A54.png"&gt;&lt;img title=HEADMP style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=250 alt=HEADMP src="/Driskell/Lists/Posts/Attachments/16/HEADMP_thumb_06282A54.png" width=516 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;2. Copy the opening body and form tags from an existing master page and overwrite open body and form tags. &lt;/p&gt; &lt;p&gt;&amp;lt;BODY scroll=&amp;quot;yes&amp;quot; onload=&amp;quot;javascript:if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();&amp;quot;&amp;gt; &lt;br&gt;  &amp;lt;form runat=&amp;quot;server&amp;quot; onsubmit=&amp;quot;return _spFormOnSubmitWrapper();&amp;quot;&amp;gt; &lt;br&gt;    &amp;lt;WebPartPages:SPWebPartManager id=&amp;quot;m&amp;quot; runat=&amp;quot;Server&amp;quot;/&amp;gt;&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/16/BODYMP_06282A54.png"&gt;&lt;img title=BODYMP style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=91 alt=BODYMP src="/Driskell/Lists/Posts/Attachments/16/BODYMP_thumb_34157D0C.png" width=447 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;3. In the event that you created a Master Page using the .masterpage template, delete the ContentPlaceHolder1 ContentPlaceholder &amp;amp; Save the master page.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/16/SPD_Templates_34157D0C.png"&gt;&lt;img title="SPD_Templates" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=160 alt="SPD_Templates" src="/Driskell/Lists/Posts/Attachments/16/SPD_Templates_thumb_34157D0C.png" width=176 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;&amp;lt;asp:ContentPlaceHolder id=&amp;quot;ContentPlaceHolder1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt; &lt;br&gt;    &amp;lt;/asp:ContentPlaceHolder&amp;gt;&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/16/Content1_34157D0C.png"&gt;&lt;img title=Content1 style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=41 alt=Content1 src="/Driskell/Lists/Posts/Attachments/16/Content1_thumb_34157D0C.png" width=405 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;There are a number of Designers that would like to utilize absolute positioning to control the placement of objects on the master pages versus using tables. To be exact, Designers would like to get rid of the “SharePointy Look”.  No,…. the SharePointy term is not yet recognized by Wikipedia.  I could not resist adding a bit of humor to this post.&lt;/p&gt; &lt;p&gt;In order to leverage absolute positioning a Designer is required to do the following:&lt;/p&gt; &lt;p&gt;1. Wrap the PlaceHolders with DIV and SPAN elements.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/16/DIV_34157D0C.png"&gt;&lt;img title=DIV style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=72 alt=DIV src="/Driskell/Lists/Posts/Attachments/16/DIV_thumb_1F23FA99.png" width=404 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;2. Use a Cascading Style Sheet (CSS) to position the PlaceHolder on the page.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/16/apppossition_1F23FA99.png"&gt;&lt;img title=apppossition style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=77 alt=apppossition src="/Driskell/Lists/Posts/Attachments/16/apppossition_thumb_1F23FA99.png" width=285 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;In the event that a Designer would like to leverage tables, there are a number of SharePoint Designer features that are available.&lt;/p&gt; &lt;p&gt;3. Click on the Table menu.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/16/Tables_1F23FA99.png"&gt;&lt;img title=Tables style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=399 alt=Tables src="/Driskell/Lists/Posts/Attachments/16/Tables_thumb_1F23FA99.png" width=380 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;4. On the Master Page the Designer must identify the location of the Web Part toolpane.  By default, the Web Part toolpane is located in a table cell.  The MSO_ContentDiv is a placeholder control.  It’s purpose is to allow SharePoint  to add the web part toolpane.&lt;/p&gt; &lt;p&gt;&amp;lt;PlaceHolder id=&amp;quot;MSO_ContentDiv&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/PlaceHolder&amp;gt; &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/16/MSO_CONTENT_4D114D51.png"&gt;&lt;img title="MSO_CONTENT" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=125 alt="MSO_CONTENT" src="/Driskell/Lists/Posts/Attachments/16/MSO_CONTENT_thumb_4D114D51.png" width=438 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Note: A Designer can use a table for formatting inside of the MSO_ContentDiv PlaceHolder.  The default.master file provides a great example.&lt;/p&gt; &lt;p&gt;Note: The primary PlaceHolder used out of the box is the PlaceHolderMain.  Within the PlaceHolderMain elements a Designer can use a table to layout the content in that area.&lt;/p&gt; &lt;p&gt;5.  For all placeholders that are not used by the Designer, it is recommended that the Designer use the Panel control to hide the un-used placeholders.  A Designer’s other option would be to set the visible property to false for each placeholder.&lt;/p&gt; &lt;p&gt;&amp;lt;asp:panel visible=&amp;quot;false&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderBodyLeftBorder&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderBodyRightMargin&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderCalendarNavigator&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderFormDigest&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderHorizontalNav&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderLeftActions&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderLeftNavBar&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderLeftNavBarDataSource&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderLeftNavBarTop&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderMiniConsole&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderNavSpacer&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderPageImage&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder id=&amp;quot;PlaceHolderSearchArea&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder id=&amp;quot;PlaceHolderSiteName&amp;quot; runat =&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder id=&amp;quot;PlaceHolderTitleAreaClass&amp;quot; runat =&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderTitleAreaSeparator&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderTitleBreadcrumb&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderTitleInTitleArea&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderPageTitleInTitleArea&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderTitleLeftBorder&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderTitleRightMargin&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderTopNavBar&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;PlaceHolderUtilityContent&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;SPNavigation&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;WSSDesignConsole&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder ID=&amp;quot;OSSConsole&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder id=&amp;quot;PlaceHolderBodyAreaClass&amp;quot; runat =&amp;quot;server&amp;quot; /&amp;gt; &lt;br&gt;&amp;lt;asp:ContentPlaceHolder id=&amp;quot;PlaceHolderPageDescription&amp;quot; runat=&amp;quot;server&amp;quot;/&amp;gt;                        &lt;br&gt;&amp;lt;/asp:panel&amp;gt;&lt;/p&gt; &lt;p&gt;This is just a start.  I encourage you all to look out for Enrique Lima’s posting over the next few days.  I will update this blog with a reference to his detailed steps for, “Building a Master Page from the ground up”.&lt;/p&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2009/04/03/Requirements-for-Building-a-Master-Pages-From-the-Bottom-Up-using-SharePoint-Designer-2007.aspx#Comments</comments><category>Design;#9;#Branding</category></item><item><author>Corro'll Driskell</author><title>Summary of Resources for the SharePoint Designers</title><guid>/Driskell/archive/2009/02/19/Summary-of-Resources-for-the-SharePoint-Designers.aspx</guid><link>/Driskell/archive/2009/02/19/Summary-of-Resources-for-the-SharePoint-Designers.aspx</link><pubDate>Thu, 19 Feb 2009 14:33:00 GMT</pubDate><description>&lt;div class=ExternalClass93CCF483586F41CF8ADB17F5343D0085&gt;
&lt;h4&gt; &lt;/h4&gt;
&lt;p&gt;&lt;font size=3&gt;During a number of facilitated sessions, I mention a number of resources that all SharePoint designers must reference.  I have included a reference to those resources in this blog.  I will update this blog post with additional information on a consistent basis.&lt;/font&gt;  &lt;font size=3&gt;Please continue to add value by posting additional references in you comments.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;Disclaimer: I am not personally responsible for the content of the listed resources.  &lt;/i&gt;
&lt;p&gt; 
&lt;p&gt;&lt;font size=3&gt;In order to properly customize a SharePoint platform.  It is my position that all designers must have a basic knowledge of SharePoint.  I have included some links to introduce you to the SharePoint platform and its offerings.&lt;/font&gt; 
&lt;p&gt;&lt;a title="An Introduction to Office SharePoint  2007" href="http://office.microsoft.com/en-us/sharepointserver/HA101732171033.aspx" target="_blank"&gt;An Introduction to Office SharePoint  2007&lt;/a&gt; 
&lt;p&gt;&lt;a href="https://www.runaware.com/microsoft/en-us/2007office/td/launch" target="_blank"&gt;Microsoft Test-drive&lt;/a&gt; –  (You need to sign up for this.) 
&lt;p&gt;&lt;a title="Virtual Lab: SharePoint Products and Technologies" href="http://www.microsoft.com/technet/traincert/virtuallab/sharepoint.mspx" target="_blank"&gt;Virtual Lab: SharePoint Products and Technologies&lt;/a&gt; 
&lt;p&gt; 
&lt;p&gt;&lt;font size=3&gt;Although the use of SharePoint Designer 2007 doesn’t require knowledge of code, I strongly believe that all designers should learn about XML, HTML and CSS.  There is a significant value in reviewing the following links:&lt;/font&gt; 
&lt;p&gt;&lt;font size=3&gt;XML, HTML, and CSS resources:&lt;/font&gt; 
&lt;p&gt;&lt;a title="W3C MarkUp Guide" href="http://www.w3.org/MarkUp/Guide/" target="_blank"&gt;W3C MarkUp Guide&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://www.w3.org/TR/REC-CSS2/intro.html" target="_blank"&gt;Introduction to CSS2&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://www.w3.org/TR/xmlschema-0/" target="_blank"&gt;XML Schema Part 0: Primer Second Edition&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://msdn2.microsoft.com/en-gb/library/ms438349.aspx" target="_blank"&gt;CSS Classes in SharePoint’s core.css&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://www.csszengarden.com/" target="_blank"&gt;CSS Zen Garden – some great examples of what can be done with CSS&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://www.w3.org/TR/xpath20/" target="_blank"&gt;World Wide Web Consortium (W3C) recommendations for XPath&lt;/a&gt;  (version 2.0) 
&lt;p&gt;&lt;a href="http://mindsharpblogs.com/kathy/archive/2007/02/28/1596.aspx"&gt;Surfacing CSS Classes in SharePoint Pages&lt;/a&gt; 
&lt;p&gt;&lt;br&gt;&lt;font size=3&gt;In order to ensure that an organization follow organizational and government policies, SharePoint designers must ensure that they are knowledgeable about accessibility and how SharePoint Designer adds value.  It has become more important for organizations today to include accessibility in their project plans.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size=3&gt;Accessibility of SharePoint Sites:&lt;/font&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://msdn2.microsoft.com/en-us/library/ms916821.aspx" target="_blank"&gt;Tips for Enhancing the Accessibility of SharePoint Web Sites&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://www.microsoft.com/industry/government/products/section508.mspx" target="_blank"&gt;Section 508 VPATs for Microsoft products&lt;/a&gt;&lt;br&gt;
&lt;p&gt;&lt;font size=3&gt;Additional Workflow tools: &lt;/font&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=5ddf902d-95b1-4640-b9e4-45440dc388d9&amp;amp;displaylang=en" target="_blank"&gt;Windows SharePoint Services 3.0 Starter Kit: Workflow Developer Starter Kit for Windows SharePoint Services 3.0&lt;/a&gt; 
&lt;p&gt;Note:  The Workflow Developer Starter Kit for Windows SharePoint Services 3.0 (WSSWorkflowStarterKitB2.msi) templates are now part of the Windows SharePoint Services 3.0 Software Development Kit (WssSdk.exe). 
&lt;p&gt;&lt;font size=3&gt;&lt;/font&gt; 
&lt;p&gt;&lt;font size=3&gt;Software Development Kits:&lt;/font&gt; 
&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=05E0DD12-8394-402B-8936-A07FE8AFAFFD&amp;amp;displaylang=en" target="_blank"&gt;Windows SharePoint Services 3.0 Software Development Kit&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=6d94e307-67d9-41ac-b2d6-0074d6286fa9&amp;amp;displaylang=en" target="_blank"&gt;SharePoint Server 2007 SDK: Software Developer Kit&lt;/a&gt; 
&lt;p&gt; 
&lt;p&gt;&lt;font size=3&gt;Design Policies and Templates:&lt;/font&gt; 
&lt;p&gt; &lt;a href="http://go.microsoft.com/fwlink/?LinkId=92311&amp;amp;clcid=0x409" target="_blank"&gt;Office SharePoint Server 2007 Customization Policy&lt;/a&gt;&lt;br&gt;by Sean Livingston &lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.graphicalwonder.com/?p=654"&gt;WSS 3.0 Master Pages and Content PlaceHolder’s: A Desktop Reference Companion&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://blogs.msdn.com/ecm/archive/2007/02/10/moss-navigation-deep-dive-part-1.aspx" target="_blank"&gt;MOSS Navigation Deep Dive – Part 1&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;font size=3&gt;&lt;/font&gt; 
&lt;p&gt;&lt;font size=3&gt;Other Resources:&lt;/font&gt; 
&lt;p&gt;&lt;a href="http://mindsharpblogs.com/kathy/archive/2007/01/26/1500.aspx" target="_blank"&gt;Adding the Edit Button to the IE7 Toolbar&lt;/a&gt;:&lt;br&gt;by Kathy Hughes 
&lt;p&gt;&lt;a href="http://support.microsoft.com/kb/825454" target="_blank"&gt;How to configure form results and have them sent to multiple email addresses&lt;/a&gt;? 
&lt;p&gt;&lt;a href="http://blogs.msdn.com/sharepoint/archive/2006/12/02/customizing-th-wss-3-0-moss-2007-menu-control.aspx" target="_blank"&gt;Customizing the menu control for MOSS&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://blogs.msdn.com/ecm/archive/2006/12/20/have-a-field-day.aspx" target="_blank"&gt;Overview of Field Controls&lt;/a&gt; 
&lt;p&gt;&lt;a href="http://www.codeplex.com/SPMasterPicker" target="_blank"&gt;Stramit SharePoint 2007 Master Picker&lt;/a&gt; 
&lt;p&gt;&lt;font size=3&gt;&lt;/font&gt; 
&lt;p&gt;&lt;font size=3&gt;Search Resources&lt;/font&gt; 
&lt;p&gt;&lt;font size=2&gt;&lt;a href="http://www.google.com/codesearch" target="_blank"&gt;Google Code Search&lt;/a&gt;&lt;/font&gt; 
&lt;p&gt;&lt;font size=2&gt;&lt;a href="http://www.discoversharepoint.net/" target="_blank"&gt;Discover SharePoint&lt;/a&gt;&lt;/font&gt; 
&lt;p&gt; &lt;/p&gt;
&lt;div class=wlWriterEditableSmartContent id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5bc43e81-91ac-42aa-8a3a-5980ca9083f4" style="padding-right:0px;display:inline;padding-left:0px;float:none;padding-bottom:0px;margin:0px;padding-top:0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/SharePoint+Designer" rel=tag&gt;SharePoint Designer&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Office+SharePoint+Server+2007" rel=tag&gt;Office SharePoint Server 2007&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Windows+SharePoint+Services+3.0" rel=tag&gt;Windows SharePoint Services 3.0&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2009/02/19/Summary-of-Resources-for-the-SharePoint-Designers.aspx#Comments</comments><category /></item><item><author>Corro'll Driskell</author><title>UDiscover SharePoint User Group</title><guid>/Driskell/archive/2009/02/18/UDiscover-SharePoint-User-Group.aspx</guid><link>/Driskell/archive/2009/02/18/UDiscover-SharePoint-User-Group.aspx</link><pubDate>Wed, 18 Feb 2009 22:34:00 GMT</pubDate><description>&lt;div class=ExternalClassCDF58BB1493646A8A555DB22FEDF4C23&gt;
&lt;div&gt;Become a member of 'potentially, the largest SharePoint user group.  The purpose of &lt;a href="http://u.discoversharepoint.net/"&gt;UDiscover SharePoint &lt;/a&gt;is to remove the boundaries of brick and mortar style user groups.  The official launch date is February 25, 2009. &lt;/div&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2009/02/18/UDiscover-SharePoint-User-Group.aspx#Comments</comments><category>User Groups</category></item><item><author>Corro'll Driskell</author><title>Contributor Settings... Site by Site</title><guid>/Driskell/archive/2009/02/18/Contributor-Settings...-Site-by-Site.aspx</guid><link>/Driskell/archive/2009/02/18/Contributor-Settings...-Site-by-Site.aspx</link><pubDate>Wed, 18 Feb 2009 22:01:11 GMT</pubDate><description>&lt;div class=ExternalClassF763ED2F41F14A61A831FFE66F8484DF&gt;&lt;p&gt;There are a number of blogs that focus on configuring ( &lt;a href="http://office.microsoft.com/en-us/sharepointdesigner/HA101009091033.aspx" target="_blank"&gt;Create a Contributor group&lt;/a&gt;) the the Contributor Settings in SharePoint Designer 2007.  It is not my intentions to provide the step by step to create and configure contributor settings.  &lt;/p&gt; &lt;p&gt;&lt;a href="http://www.mindsharpblogs.com//images/mindsharpblogs_com/driskell/115/o_sitemenu_contributorsettings.jpg" target="_blank"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=208 alt="Site Menu in SPD" src="/Driskell/Lists/Posts/Attachments/6/sitemenu_contributorsettings_thumb_1_11EE18CB.png" width=152 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;Also, I can site a number of sites that clearly define the intentions of Contributor Settings (&lt;a href="http://office.microsoft.com/en-us/sharepointdesigner/HA101174691033.aspx" target="_blank"&gt;Introduction to Contributor Settings&lt;/a&gt;).  In summary, the intent of the Contributor Settings is to control the use of SharePoint Designer on a site by site basis.  &lt;/p&gt; &lt;p&gt;&lt;a href="http://www.mindsharpblogs.com//images/mindsharpblogs.com/driskell/115/o_CG_ContributorSettting[3].jpg" target="_blank"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=184 alt="Contributor Groups of Contributor Settings" src="/Driskell/Lists/Posts/Attachments/6/CG_ContributorSettting_thumb_11EE18CB.png" width=180 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;I am posting this blog to discuss the limitations of the &lt;a href="http://office.microsoft.com/en-us/sharepointdesigner/HA101174691033.aspx" target="_blank"&gt;Contributor Setting&lt;/a&gt; configurations and proposed work around. The fact that contributor settings are configurable on a site by site basis is not a great option in a number of site deployments.  The fact that new sites are created within site collections at an alarming rate, is a compelling reason to ask for more of a centralized capability to set the contributor settings at the site collection level and to push it down throughout its namespace.  In fact, it would be great to ensure that all sites across all web applications - scoped at individual sites - are dynamically configured with the required contributor settings.&lt;/p&gt; &lt;p&gt;The fact remains that Contributor Settings can only be set by using SharePoint Designer as the Site Manager.  After the [contributor setting].htm - generally named using the GUID of the site - is created, the [contributor setting].htm can be added to a site template using the File element in the ONET.XML file.  &lt;/p&gt; &lt;p&gt;&lt;a href="http://www.mindsharpblogs.com//images/mindsharpblogs_com/driskell/115/o_xhtmlfile_contributorsettings[3].png"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=135 alt="Contributor Setting File" src="/Driskell/Lists/Posts/Attachments/6/xhtmlfile_contributorsettings_thumb_11EE18CB.png" width=348 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;But, in the event that Designers do not have access to the Web Front End (WFE) servers, adding the [contributor setting].htm as a file element to the ONET.XML file, is not a viable option.&lt;/p&gt; &lt;p&gt;What we have found that adds some value for our SharePoint Designers - using SharePoint Designer 2007 - is that you can create a site - using the Browser or SharePoint Designer 2007 as a tool.  After creating and customizing - it is titled Branding in some eyes - the site.  &lt;/p&gt; &lt;p&gt;Once the site is customized, the Site Manager can create Contributor Groups and Region Types.   After configuring the Contributor Settings, the Site Manager, Site Owner or Site Collection Owner - that all depends on the level of the site and the tools - Browser or SharePoint Designer - can save the site as a template.  &lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;table cellspacing=0 cellpadding=0 width=400 border=0&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td valign=top width=200&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/6/sitetemplateSPD_2_7CFC9657.png" target="_blank"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=105 alt="Site Template Option Using SPD" src="/Driskell/Lists/Posts/Attachments/6/sitetemplateSPD_thumb_7CFC9657.png" width=205 border=0&gt;&lt;/a&gt; &lt;/td&gt; &lt;td valign=top width=200&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/6/sitetemplateBrowser_2_7CFC9657.png" target="_blank"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=244 alt="Site Template Option Using Browser" src="/Driskell/Lists/Posts/Attachments/6/sitetemplateBrowser_thumb_7CFC9657.png" width=115 border=0&gt;&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/6/sitetemplateOptions_4_7CFC9657.png" target="_blank"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=208 alt="Site Template Options" src="/Driskell/Lists/Posts/Attachments/6/sitetemplateOptions_thumb_1_2AE9E910.png" width=244 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/6/ContributorSettingsTemplate_2_2AE9E910.png" target="_blank"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=171 alt=ContributorSettingsTemplate src="/Driskell/Lists/Posts/Attachments/6/ContributorSettingsTemplate_thumb_2AE9E910.png" width=412 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;To ensure that the save template(s) are used, the Site Collection Administrator or Site Owner can limit the template choices to the template(s) configured with the Contributor Settings.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/6/SubSiteTemplateOption_2_2AE9E910.png" target="_blank"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=314 alt=SubSiteTemplateOption src="/Driskell/Lists/Posts/Attachments/6/SubSiteTemplateOption_thumb_2AE9E910.png" width=418 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;The option presented is not the most centralized way to ensure the use of a consistent contributor settings across a number of sites within a site collection.  But, it presents an option to ensure the authorized use of SharePoint Designer 2007 on each sub-site.&lt;/p&gt; &lt;p&gt;I hope that this helps.....&lt;/p&gt; &lt;div class=wlWriterEditableSmartContent id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:1a1b234b-4a1f-4744-9f44-8bd252e763dd" style="padding-right:0px;display:inline;padding-left:0px;float:none;padding-bottom:0px;margin:0px;padding-top:0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/SharePoint+Designer+2007%27" rel=tag&gt;SharePoint Designer 2007'&lt;/a&gt;,&lt;a href="http://technorati.com/tags/SharePoint+Technologies" rel=tag&gt;SharePoint Technologies&lt;/a&gt;,&lt;a href="http://technorati.com/tags/MOSS+2007" rel=tag&gt;MOSS 2007&lt;/a&gt;,&lt;a href="http://technorati.com/tags/WSS+3.0" rel=tag&gt;WSS 3.0&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Mindsharp" rel=tag&gt;Mindsharp&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2009/02/18/Contributor-Settings...-Site-by-Site.aspx#Comments</comments><category>Design</category></item><item><author>Corro'll Driskell</author><title>Rolling up Calendars using SharePoint Designer</title><guid>/Driskell/archive/2008/12/11/Rolling-up-Calendars-using-SharePoint-Designer.aspx</guid><link>/Driskell/archive/2008/12/11/Rolling-up-Calendars-using-SharePoint-Designer.aspx</link><pubDate>Thu, 11 Dec 2008 18:26:00 GMT</pubDate><description>&lt;div class=ExternalClassA2F7B064EC99410796980A591BDE479E&gt;&lt;p&gt;There are a number of requests in regards to rolling up calendar events from various sites to a site hosting a master calendar.  The most economical choice is to use SharePoint Designer 2007. &lt;/p&gt; &lt;p&gt;&lt;br&gt; &lt;strong&gt;&amp;quot;This post, only, focuses on creating linked calendars.&amp;quot;&lt;/strong&gt;  &lt;br&gt;1.  You will need to open up the site that will host the master   calendar.  After selecting the URL for the hosting site, Click on the Open button. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/OpenSite_2_088C6EC9.png"&gt;&lt;img title=OpenSite style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=103 alt=OpenSite src="/Driskell/Lists/Posts/Attachments/4/OpenSite_thumb_088C6EC9.png" width=205 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt; &lt;a href="/Driskell/Lists/Posts/Attachments/4/OpenDialog_2_088C6EC9.png"&gt;&lt;img title=OpenDialog style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=342 alt=OpenDialog src="/Driskell/Lists/Posts/Attachments/4/OpenDialog_thumb_3679C181.png" width=542 border=0&gt;&lt;/a&gt;  &lt;br&gt;2.  After the web site is opened in SharePoint Designer you will see all related folders and files displayed in the Folder List. &lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/SitePath_2_7E81A027.png"&gt;&lt;img title=SitePath style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=169 alt=SitePath src="/Driskell/Lists/Posts/Attachments/4/SitePath_thumb_7E81A027.png" width=244 border=0&gt;&lt;/a&gt;  &lt;br&gt;3.  Click on the &lt;strong&gt;Task Pane&lt;/strong&gt; menu and Select the  &lt;strong&gt;Data Source Library&lt;/strong&gt;. The Data Source Library is displayed. &lt;br&gt;&lt;/p&gt; &lt;table style="width:400px" cellspacing=0 cellpadding=0 border=0&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td valign=top width=144&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/TaskPane_DataSource_2_7E81A027.png"&gt;&lt;img title="TaskPane_DataSource" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=460 alt="TaskPane_DataSource" src="/Driskell/Lists/Posts/Attachments/4/TaskPane_DataSource_thumb_7E81A027.png" width=145 border=0&gt;&lt;/a&gt; &lt;/td&gt; &lt;td valign=top width=254&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/DataSourceLibrary_2_7E81A027.png"&gt;&lt;img title=DataSourceLibrary style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=224 alt=DataSourceLibrary src="/Driskell/Lists/Posts/Attachments/4/DataSourceLibrary_thumb_7E81A027.png" width=244 border=0&gt;&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p&gt;&lt;br&gt;4. From the &lt;strong&gt;Data Source Library&lt;/strong&gt; task pane, select &lt;strong&gt;Connect to another library...&lt;/strong&gt; the &lt;strong&gt;Manage Library&lt;/strong&gt; dialog box appears.  Click on the &lt;strong&gt;Add&lt;/strong&gt; button. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/Connecttolibrary_2_7E81A027.png"&gt;&lt;img title="Connect to library" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=54 alt="Connect to library" src="/Driskell/Lists/Posts/Attachments/4/Connecttolibrary_thumb_69901DB4.png" width=205 border=0&gt;&lt;/a&gt;  &lt;br&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/ManageLibDialog_2_177D706D.png"&gt;&lt;img title=ManageLibDialog style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=116 alt=ManageLibDialog src="/Driskell/Lists/Posts/Attachments/4/ManageLibDialog_thumb_177D706D.png" width=352 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;5. The &lt;strong&gt;Collection Properties&lt;/strong&gt; dialog box is displayed.  In the &lt;strong&gt;Display Name&lt;/strong&gt; text box, type the name of the site&lt;strong&gt;.  In the Location&lt;/strong&gt; text box, type in the URL for the source site.  Click on the OK button to close the Collection Properties and Click the &lt;b&gt;OK button to close the Manage Library dialog box&lt;/b&gt;.&lt;/p&gt; &lt;p&gt; &lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/CollectionProperties_2_177D706D.png"&gt;&lt;img title=CollectionProperties style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=118 alt=CollectionProperties src="/Driskell/Lists/Posts/Attachments/4/CollectionProperties_thumb_177D706D.png" width=399 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt; &lt;strong&gt;Note:&lt;/strong&gt; The new &lt;strong&gt;Collection&lt;/strong&gt; - IT Services - is available from in the &lt;strong&gt;Data Source Library&lt;/strong&gt;.&lt;/p&gt; &lt;p&gt; &lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/LinkedSiteDataLibrary_2_177D706D.png"&gt;&lt;img title=LinkedSiteDataLibrary style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=373 alt=LinkedSiteDataLibrary src="/Driskell/Lists/Posts/Attachments/4/LinkedSiteDataLibrary_thumb_177D706D.png" width=189 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;6. In the &lt;strong&gt;Data Source Library&lt;/strong&gt; task pane, navigate to the &lt;strong&gt;Current Site&lt;/strong&gt; &lt;strong&gt;Collection&lt;/strong&gt; .  Click the plus symbol next to &lt;strong&gt;Current Site&lt;/strong&gt;.  Next, Click the plus symbol next to the &lt;strong&gt;Linked sources &lt;/strong&gt;and&lt;strong&gt; Click Create a new linked source… &lt;/strong&gt;button.&lt;strong&gt; &lt;/strong&gt;Next, Click on the &lt;strong&gt;Configure Linked Source... &lt;/strong&gt;Button. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/LinkedDataSource_4_177D706D.png"&gt;&lt;img title=LinkedDataSource style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=230 alt=LinkedDataSource src="/Driskell/Lists/Posts/Attachments/4/LinkedDataSource_thumb_1_028BEDFA.png" width=180 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt; &lt;a href="http://lh5.google.com/corroll.driskell/R6EIlPErDWI/AAAAAAAAAnE/WRY3Zk6077E/LinkedDataSource4"&gt;&lt;/a&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/DataSourceProperties_2_028BEDFA.png"&gt;&lt;img title=DataSourceProperties style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=338 alt=DataSourceProperties src="/Driskell/Lists/Posts/Attachments/4/DataSourceProperties_thumb_028BEDFA.png" width=380 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt;&lt;/a&gt;7.  The&lt;strong&gt; Link Data Sources Wizard&lt;/strong&gt; dialog is displayed.  In the Available Data Sources list box, ensure that the &lt;strong&gt;Current Site Collection &lt;/strong&gt;data sources are displayed.  Next, Click on the &lt;strong&gt;SharePoint Lists&lt;/strong&gt; and select the &lt;strong&gt;Calendar&lt;/strong&gt; list.  Next, Click on the &lt;strong&gt;Add&lt;/strong&gt; button. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/LinkedDataSources_Sales_2_028BEDFA.png"&gt;&lt;img title="LinkedDataSources_Sales" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=283 alt="LinkedDataSources_Sales" src="/Driskell/Lists/Posts/Attachments/4/LinkedDataSources_Sales_thumb_307940B2.png" width=354 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;8.  In the &lt;strong&gt;Available Data Sources&lt;/strong&gt; list box, Click on the &lt;strong&gt;IT Services&lt;/strong&gt; Collection's data sources are displayed in the &lt;strong&gt;Available Data Sources&lt;/strong&gt;.  Next, Click on the &lt;strong&gt;SharePoint Lists&lt;/strong&gt; and select the &lt;strong&gt;Calendar &lt;/strong&gt;list.  Next, Click the &lt;strong&gt;Add &lt;/strong&gt;button.  Finally, Click on the &lt;strong&gt;Next &lt;/strong&gt;button. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/LinkedDataSources_ITServices_2_307940B2.png"&gt;&lt;img title="LinkedDataSources_ITServices" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=285 alt="LinkedDataSources_ITServices" src="/Driskell/Lists/Posts/Attachments/4/LinkedDataSources_ITServices_thumb_307940B2.png" width=353 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;9.  In the '&lt;strong&gt;Select the link type that best represents the relationship between the selected sources' section, &lt;/strong&gt;Select the option, '&lt;strong&gt;Merge the contents of the data sources.  Choose this option if you'd like to sort, group, and filter the sources as one long list.'  &lt;/strong&gt;Click the&lt;strong&gt; Finish&lt;/strong&gt; button.  &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/LinkedDataSources_Merger_2_307940B2.png"&gt;&lt;img title="LinkedDataSources_Merger" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=343 alt="LinkedDataSources_Merger" src="/Driskell/Lists/Posts/Attachments/4/LinkedDataSources_Merger_thumb_307940B2.png" width=426 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;strong&gt;10.  &lt;/strong&gt;The &lt;strong&gt;Data Source Properties&lt;/strong&gt; are displaying the added Calendars in the &lt;strong&gt;Component source properties&lt;/strong&gt; section.  Click on the &lt;strong&gt;OK&lt;/strong&gt; button. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/LinkedDataSources_Calendars_2_307940B2.png"&gt;&lt;img title="LinkedDataSources_Calendars" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=304 alt="LinkedDataSources_Calendars" src="/Driskell/Lists/Posts/Attachments/4/LinkedDataSources_Calendars_thumb_5E66936A.png" width=340 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;strong&gt;Note: &lt;/strong&gt;After the &lt;strong&gt;Linked Data Source&lt;/strong&gt; is saved, it is named &lt;strong&gt;New Data Source&lt;/strong&gt; in the &lt;strong&gt;Linked sources&lt;/strong&gt; section. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/LinkedDataSource_New_2_5E66936A.png"&gt;&lt;img title="LinkedDataSource_New" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=71 alt="LinkedDataSource_New" src="/Driskell/Lists/Posts/Attachments/4/LinkedDataSource_New_thumb_5E66936A.png" width=176 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;11. Using SharePoint Designer, Create a new ASPX page in the current site.  Click in the &lt;strong&gt;Form&lt;/strong&gt; control to position your cursor. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/NewPage_2_5E66936A.png"&gt;&lt;img title=NewPage style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=114 alt=NewPage src="/Driskell/Lists/Posts/Attachments/4/NewPage_thumb_5E66936A.png" width=346 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;12.  Click on the &lt;strong&gt;Data View&lt;/strong&gt; menu.  Next, Click on &lt;strong&gt;Insert Data View..&lt;/strong&gt; option.  The &lt;strong&gt;DataFormWebPart&lt;/strong&gt; is added in the &lt;strong&gt;Form&lt;/strong&gt; control.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/DataViewTaskPane_2_5E66936A.png"&gt;&lt;img title=DataViewTaskPane style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=72 alt=DataViewTaskPane src="/Driskell/Lists/Posts/Attachments/4/DataViewTaskPane_thumb_5E66936A.png" width=192 border=0&gt;&lt;/a&gt; &lt;/p&gt; &lt;p&gt; &lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_2_497510F7.png"&gt;&lt;img title=DataFormWebPart style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=123 alt=DataFormWebPart src="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_thumb_497510F7.png" width=439 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;13.  Navigate to the &lt;strong&gt;Data Source Library&lt;/strong&gt; task pane. Drag and drop the merged calendars&lt;strong&gt; - New Data Source&lt;/strong&gt; &lt;strong&gt;- &lt;/strong&gt;onto the DataFormWebPart on the new page.&lt;/p&gt; &lt;p&gt; &lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_Add_2_497510F7.png"&gt;&lt;img title="DataFormWebPart_Add" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=315 alt="DataFormWebPart_Add" src="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_Add_thumb_497510F7.png" width=438 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;14.  Click on the &lt;strong&gt;'On Object User Interface' &lt;/strong&gt;(OOUI), It will open the &lt;strong&gt;'Common Data View Tasks&lt;/strong&gt;'.  Click on the &lt;strong&gt;Edit Columns..&lt;/strong&gt; option. &lt;/p&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_CDVT_2_497510F7.png"&gt;&lt;img title="DataFormWebPart_CDVT" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=244 alt="DataFormWebPart_CDVT" src="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_CDVT_thumb_497510F7.png" width=243 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;15.  Remove both &lt;strong&gt;Modified By&lt;/strong&gt; and &lt;strong&gt;Modified&lt;/strong&gt; from  &lt;strong&gt;Displayed Columns &lt;/strong&gt;list box and add &lt;strong&gt;Location&lt;/strong&gt; field from the &lt;strong&gt;Available fields &lt;/strong&gt;list box&lt;strong&gt;.  &lt;/strong&gt;Next, Click on the &lt;strong&gt;OK&lt;/strong&gt; button. &lt;/p&gt; &lt;p&gt;&lt;br&gt; &lt;a href="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_EditColumns_2_776263AF.png"&gt;&lt;img title="DataFormWebPart_EditColumns" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=249 alt="DataFormWebPart_EditColumns" src="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_EditColumns_thumb_776263AF.png" width=336 border=0&gt;&lt;/a&gt;  &lt;a href="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_EditColumnsResults_2_776263AF.png"&gt;&lt;img title="DataFormWebPart_EditColumnsResults" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=137 alt="DataFormWebPart_EditColumnsResults" src="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_EditColumnsResults_thumb_776263AF.png" width=429 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;16.  Navigate back to the &lt;strong&gt;Common Data View Tasks&lt;/strong&gt; properties.  Click on the &lt;strong&gt;Filter &lt;/strong&gt;option.  Use the table below to configure the filters. After configuration, Click the &lt;strong&gt;OK&lt;/strong&gt; button. &lt;br&gt;&lt;/p&gt; &lt;table style="width:426px" cellspacing=0 cellpadding=2 border=0&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td valign=top width=92&gt; &lt;div align=center&gt;&lt;strong&gt;Field Name&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt; &lt;td valign=top width=158&gt; &lt;div align=center&gt;&lt;strong&gt;Comparison&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt; &lt;td valign=top width=109&gt; &lt;div align=center&gt;&lt;strong&gt;Value&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt; &lt;td valign=top width=64&gt; &lt;div align=center&gt;&lt;strong&gt;And/Or&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td valign=top width=91&gt; &lt;div align=center&gt;Start Time&lt;/div&gt;&lt;/td&gt; &lt;td valign=top width=157&gt;Greater Than or Equal To&lt;/td&gt; &lt;td valign=top width=109&gt; &lt;div align=center&gt;[Current Date]&lt;/div&gt;&lt;/td&gt; &lt;td valign=top width=64&gt; &lt;div align=center&gt;Or&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td valign=top width=91&gt; &lt;div align=center&gt;End Time&lt;/div&gt;&lt;/td&gt; &lt;td valign=top width=157&gt;Greater Than or Equal To&lt;/td&gt; &lt;td valign=top width=109&gt; &lt;div align=center&gt;[Current Date]&lt;/div&gt;&lt;/td&gt; &lt;td valign=top width=64&gt; &lt;div align=center&gt;And&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p&gt;&lt;br&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_Filter_2_776263AF.png"&gt;&lt;img title="DataFormWebPart_Filter" style="border-right:0px;border-top:0px;display:inline;border-left:0px;border-bottom:0px" height=168 alt="DataFormWebPart_Filter" src="/Driskell/Lists/Posts/Attachments/4/DataFormWebPart_Filter_thumb_776263AF.png" width=285 border=0&gt;&lt;/a&gt;  &lt;/p&gt; &lt;p&gt;&lt;br&gt;17.  Save the page and preview in the browser.  You can add events to all calendars included in&lt;strong&gt; &lt;/strong&gt;linked sources and it is reflected in the rendered page. &lt;br&gt;&lt;strong&gt;Note:&lt;/strong&gt; You can attach the page to the master page for the site to ensure that it is branded like all other pages. &lt;br&gt;&lt;br&gt;&lt;a href="http://lh3.google.com/corroll.driskell/R5nek_Eq_iI/AAAAAAAAAIY/vOU68dJG7HI/clip_image0143"&gt;&lt;/a&gt;&lt;br&gt;&lt;/p&gt; &lt;p&gt; &lt;div class=wlWriterSmartContent id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e466e456-ab1c-4044-ac74-8d8a894174aa" style="padding-right:0px;display:inline;padding-left:0px;padding-bottom:0px;margin:0px;padding-top:0px"&gt;Technorati Tags: &lt;a href="http://technorati.com/tags/SharePoint%20Designer%202007" rel=tag&gt;SharePoint Designer 2007&lt;/a&gt;,&lt;a href="http://technorati.com/tags/MOSS" rel=tag&gt;MOSS&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Office%20SharePoint%20Server" rel=tag&gt;Office SharePoint Server&lt;/a&gt;,&lt;a href="http://technorati.com/tags/Windows%20SharePoint%20Services" rel=tag&gt;Windows SharePoint Services&lt;/a&gt;&lt;/div&gt;&lt;/p&gt; &lt;div class=blogger-post-footer&gt;©2000-2008 Driskells. All Rights Reserved. Terms of Use and Privacy Policy.&lt;/div&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2008/12/11/Rolling-up-Calendars-using-SharePoint-Designer.aspx#Comments</comments><category>Design</category></item><item><author>Corro'll Driskell</author><title>Enable Enterprise Features</title><guid>/Driskell/archive/2008/11/28/Enable-Enterprise-Features.aspx</guid><link>/Driskell/archive/2008/11/28/Enable-Enterprise-Features.aspx</link><pubDate>Fri, 28 Nov 2008 22:13:00 GMT</pubDate><description>&lt;div class=ExternalClassA9B4EDA0266746609167B718E2A83026&gt;Enterprise Features &lt;br&gt;Enable Enterprise features &lt;br&gt;In the event an administrator decides to install Microsoft Office SharePoint Server 2007 by using the Standard license type, the following features are available: &lt;br&gt;Collaboration &lt;br&gt;Enterprise content management &lt;br&gt;Workflow &lt;br&gt;My Sites &lt;br&gt;Profiles and personalization &lt;br&gt;Enterprise search &lt;br&gt;&lt;br&gt;On the other hand, a SharePoint Administrator can convert the license type to the Enterprise license, which would enable and, allow the SharePoint Administrator to push down the Enterprise feature set to all sites within a server farm. The following additional features, in conjunction with the Standard license features, are available with the Enterprise license type: &lt;br&gt;Business Data Catalog &lt;br&gt;Excel Services &lt;br&gt;Report Center &lt;br&gt;InfoPath Forms Services &lt;br&gt;&lt;br&gt;Enable Enterprise features &lt;br&gt;In Central Administration, on the Operations tab, under Upgrade and Migration, click Enable Enterprise Features. &lt;br&gt;On the Enable Enterprise Features page, under Use these features, click Enterprise (Requires Enterprise client license). &lt;br&gt;&lt;br&gt;&lt;img style="display:block;margin:0px auto 10px;cursor:hand;text-align:center" alt="" src="http://photos1.blogger.com/x/blogger/4836/584/320/507957/eef1.jpg" border=0&gt; &lt;br&gt;&lt;br&gt;In the Enter Product Key box, type the Enterprise Client license key. &lt;br&gt;Important You cannot return to using the Standard feature set after you have enabled the Enterprise feature set. If you want to return to using only the Standard features, you must turn off all of the Enterprise features on all sites. Alternatively, you can uninstall Office SharePoint Server 2007, reinstall it by using the Standard license type and create a new server farm, and then attach the content databases to the new farm. BTW, bad, bad, bad…. &lt;br&gt;Enable features on existing sites &lt;br&gt;In Central Administration, on the Operations tab, under Upgrade and Migration, click Enable Features on existing sites. &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On the Enable Features on existing sites page, select the Enable all sites in this installation to use the following set of features check box. &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;After enabling features for all sites, you will note the enabling status displaying a status of Initializing. &lt;br&gt;In essence, the configuration of the features allows a SharePoint Administrator to manage the features at both the Farm and Web Application level. &lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Manage Farm Features &lt;br&gt;&lt;br&gt;Manage Web Application Features  &lt;/div&gt;</description><comments>/Driskell/archive/2008/11/28/Enable-Enterprise-Features.aspx#Comments</comments><category>Collaborations</category></item><item><author>Corro'll Driskell</author><title>Configuration of the BDC in the TrainsByDave environment</title><guid>/Driskell/archive/2008/11/06/Configuration-of-the-BDC-in-the-TrainsByDave-environment.aspx</guid><link>/Driskell/archive/2008/11/06/Configuration-of-the-BDC-in-the-TrainsByDave-environment.aspx</link><pubDate>Thu, 06 Nov 2008 06:36:00 GMT</pubDate><description>&lt;div class=ExternalClassC8825460E1DD4FC2872B36B818749183&gt;&lt;p&gt; &lt;/p&gt; &lt;p&gt;1. Login to the &lt;b&gt;Student 12B &lt;/b&gt;image with the &lt;u&gt;Administrator&lt;/u&gt; Account.&lt;/p&gt; &lt;p&gt;2. Click on the &lt;b&gt;Start&lt;/b&gt; button and navigate to the Administrative Tools and click on Services.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image002_2_59488878.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=199 alt="clip_image002" src="/Driskell/Lists/Posts/Attachments/5/clip_image002_thumb_59488878.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;3. In the &lt;b&gt;Services &lt;/b&gt;dialog box. Locate the &lt;b&gt;Microsoft Single Sign-on Service&lt;/b&gt; and double click it.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image004_2_44570605.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=97 alt="clip_image004" src="/Driskell/Lists/Posts/Attachments/5/clip_image004_thumb_44570605.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;4. Click on the Log on tab. Select the &lt;b&gt;‘This account’&lt;/b&gt; option and configure it with a domain account. After configuration, click on the &lt;b&gt;OK&lt;/b&gt; button.&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image006_2_44570605.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=244 alt="clip_image006" src="/Driskell/Lists/Posts/Attachments/5/clip_image006_thumb_44570605.jpg" width=216 border=0&gt;&lt;/a&gt;&lt;/b&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; I used the Administrator account to simplify the configuration process. Any other time, you would use a service account here. When configuring the Single Sign-On settings in the &lt;b&gt;Central Administration&lt;/b&gt; site you would need to logon with the service account. &lt;/p&gt; &lt;p&gt;5. Right click on the Microsoft Single Sign-on services and click on the &lt;b&gt;Start&lt;/b&gt; option. After start, close the &lt;b&gt;Services&lt;/b&gt; window.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image008_2_44570605.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=98 alt="clip_image008" src="/Driskell/Lists/Posts/Attachments/5/clip_image008_thumb_44570605.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;Note: &lt;/b&gt;After clicking on the &lt;b&gt;Start&lt;/b&gt; Option is clicked. The &lt;b&gt;Service Control&lt;/b&gt; dialog box displays the status&lt;/p&gt; &lt;p&gt;. &lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image010_2_44570605.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=109 alt="clip_image010" src="/Driskell/Lists/Posts/Attachments/5/clip_image010_thumb_44570605.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;6. Navigate to the &lt;b&gt;Central Administration&lt;/b&gt; web site and select the &lt;b&gt;Operations &lt;/b&gt;Tab.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image012_2_724458BD.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=124 alt="clip_image012" src="/Driskell/Lists/Posts/Attachments/5/clip_image012_thumb_724458BD.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;7. Go to the &lt;b&gt;Security Configurations&lt;/b&gt; section and click on the &lt;b&gt;Manage settings for single sign-on&lt;/b&gt; link. It will take you to the &lt;b&gt;Manage Settings for Single Sign-On for MOSS01 &lt;/b&gt;page.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image014_2_724458BD.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=181 alt="clip_image014" src="/Driskell/Lists/Posts/Attachments/5/clip_image014_thumb_724458BD.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;Note: &lt;/b&gt;You will notice that the &lt;b&gt;Manage Server settings&lt;/b&gt; is your only available option. If you fail to configure the &lt;b&gt;Microsoft Single Sign-On&lt;/b&gt; service with a service account - in our scenario the administrator account – no option would be available. They would all be grayed out.&lt;/p&gt; &lt;p&gt;8. In the &lt;b&gt;Server settings&lt;/b&gt; section, click on the &lt;b&gt;Manage server settings &lt;/b&gt;.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image016_2_724458BD.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=88 alt="clip_image016" src="/Driskell/Lists/Posts/Attachments/5/clip_image016_thumb_724458BD.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;Note: &lt;/b&gt;You are taken to the &lt;b&gt;Manage Server Settings for Single Sign-On &lt;/b&gt;page.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image018_2_2031AB76.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=33 alt="clip_image018" src="/Driskell/Lists/Posts/Attachments/5/clip_image018_thumb_2031AB76.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;9. On the &lt;b&gt;Manage Server Settings for Single Sign-On &lt;/b&gt;page in the &lt;b&gt;Single Sign-On Administrator Account&lt;/b&gt; text box type the name of the group - &lt;b&gt;we are using an individual account in our scenario&lt;/b&gt; - or user account – &lt;b&gt;trainsbydave\administrator&lt;/b&gt; - that can set up and manage the single sign-on service. This account must be a member of the same domain to which the single sign-on service account belongs.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image020_2_2031AB76.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=23 alt="clip_image020" src="/Driskell/Lists/Posts/Attachments/5/clip_image020_thumb_2031AB76.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;10. Next, on the &lt;b&gt;Manage Server Settings for Single Sign-On &lt;/b&gt;page in the&lt;b&gt; Enterprise Application Definition Administrator Account &lt;/b&gt;text box type the name of the group - &lt;b&gt;we are using an individual account in our scenario&lt;/b&gt; - or user account – &lt;b&gt;trainsbydave\administrator&lt;/b&gt; - that can set up and manage enterprise application definitions. This account must be a member of the same domain to which the single sign-on service account belongs.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image022_2_2031AB76.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=23 alt="clip_image022" src="/Driskell/Lists/Posts/Attachments/5/clip_image022_thumb_2031AB76.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;11. Do not change any other setting on the &lt;b&gt;Manage Server Settings for Single Sign-On&lt;/b&gt; page. Click on the &lt;b&gt;OK&lt;/b&gt; button.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image024_2_2031AB76.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=72 alt="clip_image024" src="/Driskell/Lists/Posts/Attachments/5/clip_image024_thumb_0B402903.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;12. After you are returned to the &lt;b&gt;Manage Settings for Single Sign-On for MOSS01&lt;/b&gt;, you will notice that you can configure other settings for the &lt;b&gt;Single Sign-On&lt;/b&gt; service. Click on the &lt;b&gt;Manage settings for enterprise application definitions&lt;/b&gt; link in the &lt;b&gt;Enterprise Application Definition Settings&lt;/b&gt; section.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image025_2_0B402903.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=24 alt="clip_image025" src="/Driskell/Lists/Posts/Attachments/5/clip_image025_thumb_0B402903.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;13. On the &lt;b&gt;Manage Enterprise Application Definitions &lt;/b&gt;page, click on the &lt;b&gt;New Item&lt;/b&gt; link.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image027_2_0B402903.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=64 alt="clip_image027" src="/Driskell/Lists/Posts/Attachments/5/clip_image027_thumb_0B402903.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;14. On the &lt;b&gt;Create Enterprise Application Definition&lt;/b&gt;, you will create an Application Definition file used by the Business Data Catalog (BDC) to connect to the &lt;b&gt;AdventureWorksDW&lt;/b&gt; database.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image029_2_0B402903.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=89 alt="clip_image029" src="/Driskell/Lists/Posts/Attachments/5/clip_image029_thumb_0B402903.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;15. Also, on the &lt;b&gt;Create Enterprise Application Definition&lt;/b&gt;, you will configure the account type. In our scenario, we will use the &lt;b&gt;Individual &lt;/b&gt;account type.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image031_2_392D7BBB.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=71 alt="clip_image031" src="/Driskell/Lists/Posts/Attachments/5/clip_image031_thumb_392D7BBB.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; In the event that you decide to use the &lt;b&gt;Group – trainsbydave\domain users&lt;/b&gt; setting, the &lt;b&gt;SQL&lt;/b&gt; database administrator must ensure the group account has permissions on the various databases.&lt;/p&gt; &lt;p&gt;16. Also, on the &lt;b&gt;Create Enterprise Application Definition&lt;/b&gt;, you will configure the authentication type. In our scenario, we are using the &lt;b&gt;Windows Authentication&lt;/b&gt; type.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image033_2_392D7BBB.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=49 alt="clip_image033" src="/Driskell/Lists/Posts/Attachments/5/clip_image033_thumb_392D7BBB.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;17. Also on the &lt;b&gt;Create Enterprise Application Definition&lt;/b&gt;, you will configure the Logon Account Information. In our scenario, we are accepting the default values. Click on the &lt;b&gt;OK&lt;/b&gt; button.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image035_2_392D7BBB.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=58 alt="clip_image035" src="/Driskell/Lists/Posts/Attachments/5/clip_image035_thumb_392D7BBB.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;18. On the &lt;b&gt;Manage Enterprise Application Definitions&lt;/b&gt;, you will see the &lt;b&gt;AdventureWorksDW&lt;/b&gt; SSO definition file.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image037_2_392D7BBB.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=22 alt="clip_image037" src="/Driskell/Lists/Posts/Attachments/5/clip_image037_thumb_243BF948.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;19. Open the &lt;b&gt;Windows Explorer&lt;/b&gt; application and navigate to the 2007 &lt;b&gt;AdventureWorks Samples &lt;/b&gt;folder (&lt;b&gt;C:\Program Files\2007 Office System Developer Resources\Samples\Business Data Catalog\AdventureWorks Samples&lt;/b&gt;)&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image039_2_243BF948.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=62 alt="clip_image039" src="/Driskell/Lists/Posts/Attachments/5/clip_image039_thumb_243BF948.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;20. Make a copy of the &lt;b&gt;AdventureWorks2005DW.xml&lt;/b&gt; and &lt;b&gt;AdventureWorks2000_SSO.xml&lt;/b&gt; files. &lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image041_2_243BF948.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=156 alt="clip_image041" src="/Driskell/Lists/Posts/Attachments/5/clip_image041_thumb_243BF948.jpg" width=200 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;21. Open the &lt;b&gt;AdventureWorks2005DW.xml&lt;/b&gt; file using &lt;b&gt;SharePoint Designer 2007&lt;/b&gt; or &lt;b&gt;Visual Studio 2005&lt;/b&gt;. Once the AdventureWorks2005DW.xml is open, locate the &lt;b&gt;RdbConnection Data Source &lt;/b&gt;property and set the property to &lt;b&gt;MOSS01&lt;/b&gt;.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image043_2_243BF948.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=150 alt="clip_image043" src="/Driskell/Lists/Posts/Attachments/5/clip_image043_thumb_243BF948.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image045_2_52294C00.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=41 alt="clip_image045" src="/Driskell/Lists/Posts/Attachments/5/clip_image045_thumb_52294C00.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;22. Next, open the AdventureWorks2000_SSO.xml file with &lt;b&gt;SharePoint Designer 2007 &lt;/b&gt;or &lt;b&gt;Visual Studio 2005&lt;/b&gt;.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image047_2_52294C00.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=91 alt="clip_image047" src="/Driskell/Lists/Posts/Attachments/5/clip_image047_thumb_52294C00.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;23. Copy the Property elements for both, &lt;b&gt;SSOApplicationID&lt;/b&gt; and &lt;b&gt;SSOProviderImplementation&lt;/b&gt; from the &lt;b&gt;AdventureWorks2000_SSO.xm.&lt;/b&gt; to &lt;b&gt;AdventureWorks2005DW.xml &lt;/b&gt;after the &lt;b&gt;RdbConnection Intergrated Security&lt;/b&gt; property. Verify that the Property elements are well formed and save the &lt;b&gt;AdventureWorksDW.xml &lt;/b&gt;file. Close &lt;b&gt;SharePoint Designer &lt;/b&gt;or &lt;b&gt;Visual Studio 2005&lt;/b&gt;.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image049_2_52294C00.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=27 alt="clip_image049" src="/Driskell/Lists/Posts/Attachments/5/clip_image049_thumb_52294C00.jpg" width=200 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image051_2_00169EB9.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=46 alt="clip_image051" src="/Driskell/Lists/Posts/Attachments/5/clip_image051_thumb_00169EB9.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image053_2_00169EB9.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=18 alt="clip_image053" src="/Driskell/Lists/Posts/Attachments/5/clip_image053_thumb_00169EB9.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;24. Navigate to the &lt;b&gt;Central Administration&lt;/b&gt; site. On the &lt;b&gt;Quick Launch Bar&lt;/b&gt; navigate to the &lt;b&gt;Shared Services Service:&lt;/b&gt; &lt;b&gt;SSP01 &lt;/b&gt;page.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image055_2_00169EB9.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=204 alt="clip_image055" src="/Driskell/Lists/Posts/Attachments/5/clip_image055_thumb_00169EB9.jpg" width=136 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image057_2_00169EB9.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=51 alt="clip_image057" src="/Driskell/Lists/Posts/Attachments/5/clip_image057_thumb_00169EB9.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;25. Navigate to the &lt;b&gt;Business Data Catalog &lt;/b&gt;section of the &lt;b&gt;Shared Services Service: SSP01&lt;/b&gt; page. Click on the &lt;b&gt;Import Application Definition&lt;/b&gt; link. It will take you to the &lt;b&gt;Import Application Definition &lt;/b&gt;page.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image059_2_6B251C45.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=144 alt="clip_image059" src="/Driskell/Lists/Posts/Attachments/5/clip_image059_thumb_6B251C45.jpg" width=197 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;26. On the &lt;b&gt;Import Application Definition &lt;/b&gt;page, click on the &lt;b&gt;Browse &lt;/b&gt;button in the &lt;b&gt;Application Definition&lt;/b&gt; section and browse to the location you saved the &lt;b&gt;AdventureWorks2005DW.xml&lt;/b&gt; (&lt;b&gt;:\Program Files\2007 Office System Developer Resources\Samples\Business Data Catalog\AdventureWorks Samples&lt;/b&gt;) file. Click on the &lt;b&gt;Open&lt;/b&gt; button and verify the path.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image061_2_6B251C45.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=74 alt="clip_image061" src="/Driskell/Lists/Posts/Attachments/5/clip_image061_thumb_6B251C45.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image063_2_19126EFE.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=32 alt="clip_image063" src="/Driskell/Lists/Posts/Attachments/5/clip_image063_thumb_19126EFE.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;27. Accept the default values for all other sections on the &lt;b&gt;Import Application Definition&lt;/b&gt; page. Click on the &lt;b&gt;Import&lt;/b&gt; button at the bottom of the page. A verification process status bar appears. Click on the &lt;b&gt;OK&lt;/b&gt; button.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image065_2_19126EFE.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=85 alt="clip_image065" src="/Driskell/Lists/Posts/Attachments/5/clip_image065_thumb_19126EFE.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image067_2_19126EFE.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=75 alt="clip_image067" src="/Driskell/Lists/Posts/Attachments/5/clip_image067_thumb_19126EFE.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;28. Next, you are taken to the &lt;b&gt;View Application: AdventureWorksDW&lt;/b&gt; page. Click on the &lt;b&gt;Manage Permissions &lt;/b&gt;link. It will take you to the &lt;b&gt;Manage Permissions: AdventureWorksDW&lt;/b&gt; page. Click on the &lt;b&gt;Add User/Groups&lt;/b&gt; link.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image069_2_0420EC8B.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=162 alt="clip_image069" src="/Driskell/Lists/Posts/Attachments/5/clip_image069_thumb_0420EC8B.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image071_2_0420EC8B.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=88 alt="clip_image071" src="/Driskell/Lists/Posts/Attachments/5/clip_image071_thumb_0420EC8B.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;29. On the &lt;b&gt;Add User/Groups&lt;/b&gt; page in the &lt;b&gt;Choose Users &lt;/b&gt;section, add the &lt;b&gt;trainsbydave\domain users&lt;/b&gt; group.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image073_2_0420EC8B.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=32 alt="clip_image073" src="/Driskell/Lists/Posts/Attachments/5/clip_image073_thumb_0420EC8B.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;30. On the &lt;b&gt;Add User/Groups&lt;/b&gt; page in the &lt;b&gt;Choose permissions &lt;/b&gt;section, select all, four, permissions. Click on the &lt;b&gt;Save &lt;/b&gt;button. You are taken back to the &lt;b&gt;Manage Permissions: AdventureWorksDW &lt;/b&gt;page.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image075_2_320E3F43.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=56 alt="clip_image075" src="/Driskell/Lists/Posts/Attachments/5/clip_image075_thumb_320E3F43.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;31. Select all users and groups on the &lt;b&gt;Manage Permissions: AdventureWorksDW&lt;/b&gt; page. Click on &lt;b&gt;Copy all permissions to descendants &lt;/b&gt;link. Click the &lt;b&gt;OK&lt;/b&gt; button for the dialog box displayed.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image077_2_320E3F43.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=44 alt="clip_image077" src="/Driskell/Lists/Posts/Attachments/5/clip_image077_thumb_320E3F43.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; This option ensures that the permissions for the listed users and groups are on all Access Control Lists (ACLs) for each entity identified in the Application Definition file.&lt;/p&gt; &lt;p&gt;&lt;a href="/Driskell/Lists/Posts/Attachments/5/clip_image079_2_320E3F43.jpg"&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=79 alt="clip_image079" src="/Driskell/Lists/Posts/Attachments/5/clip_image079_thumb_320E3F43.jpg" width=244 border=0&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;Note: Additional documentation will follow for demonstrations for, both, SharePoint Designer and Excel Services. If you are familiar with the existing Excel Services and Business Data Catalog (BDC) Web Parts, you can start using the BDC.&lt;/b&gt;&lt;/p&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2008/11/06/Configuration-of-the-BDC-in-the-TrainsByDave-environment.aspx#Comments</comments><category>Design</category></item><item><author>Corro'll Driskell</author><title>Understanding Change, Power, and Conflict in your SharePoint Server 2007 Deployment - Mark R. Schneider</title><guid>/Driskell/archive/2008/09/15/Understanding-Change,-Power,-and-Conflict-in-your-SharePoint-Server-2007-Deployment-[dash]-Mark-R.-Schneider.aspx</guid><link>/Driskell/archive/2008/09/15/Understanding-Change,-Power,-and-Conflict-in-your-SharePoint-Server-2007-Deployment-[dash]-Mark-R.-Schneider.aspx</link><pubDate>Mon, 15 Sep 2008 23:23:00 GMT</pubDate><description>&lt;div class=ExternalClass8B52E84A222E42A9ADE92A37DA292468&gt;Mark Schneider's focus is on on how to guide your organization through reasonable change.&lt;br&gt;Mark spoke to change in an organization as a skill. Mark stated that, &amp;quot;Share point is an agent of change.&amp;quot; The point is that governance makes change more manageable. Overall, an organization need to be forthcoming and open. It is the empowerment of people.&amp;quot; With that in mind, we have to provide guidance for that change.&lt;br&gt;&lt;br&gt;You need. 5 things to properly manage change.&lt;br&gt;&lt;br&gt;1. Support of A champion&lt;br&gt;&lt;br&gt;2. Grassroots support&lt;br&gt;&lt;br&gt;3. Approved and funded budget&lt;br&gt;&lt;br&gt;4. Clear objective and goals&lt;br&gt;&lt;br&gt;5. Control over the project&lt;br&gt;&lt;br&gt;Most importantly, Mark expressed that an organization should ensure that people are trained. Mark encourages an organization to communicate leveraging the SharePoint technologies -Blogs - and provide an example by leveraging a Team Site template. That is, project managers should lead by example.&lt;br&gt;&lt;br&gt;Best practices in a nutshell is to work to ensure that people don't result to using their imaginations to fill communication gaps. The psychological effect of ,an unmanaged, SharePoint implementation in an organization prompts negative responses at time. That is, you need to balance your approach for changing both technologies and processes. Overall , you want to avoid a chaotic impact. The fact that people naturally respond negatively to unplanned change encourages governance.&lt;br&gt;&lt;br&gt;Submitted from the Blackberry....&lt;br&gt;-------------------------------------------------------&lt;br&gt;Corro'll Driskell  &lt;div class=blogger-post-footer&gt;©2000-2008 Driskells. All Rights Reserved. Terms of Use and Privacy Policy.&lt;/div&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2008/09/15/Understanding-Change,-Power,-and-Conflict-in-your-SharePoint-Server-2007-Deployment-[dash]-Mark-R.-Schneider.aspx#Comments</comments><category>Planning</category></item><item><author>Corro'll Driskell</author><title>Getting on the SharePoint Roll</title><guid>/Driskell/archive/2008/08/21/Getting-on-the-SharePoint-Roll.aspx</guid><link>/Driskell/archive/2008/08/21/Getting-on-the-SharePoint-Roll.aspx</link><pubDate>Thu, 21 Aug 2008 23:27:00 GMT</pubDate><description>&lt;div class=ExternalClassFE7277A8113E4A9D80A869986443CE83&gt;&lt;h5&gt;Over the last few months, I have been tasked with working on a number of SharePoint related engagements.  What I find amazing is how can any one person can find the time to blog, speak, consult and manage to spend time with family.  First, I have to be thankful for having a family that understands and support ME.  It is obvious that I have worked with some great people over the last year.  BTW - that includes some international travel.&lt;/h5&gt; &lt;p&gt;Although I have a schedule filled throughout the year, I am speaking at the &lt;a title="SharePoint Best Practices Conference" href="http://www.sharepointbestpractices.com/" target="_blank"&gt;SharePoint Best Practices Conference&lt;/a&gt;.  I want to discuss my presentation and how important it is to the actual deployment and branding of business application deployed on the SharePoint platform.  First, the title of my presentation is, &amp;quot;&lt;a title="Content Development and Deployment Using Publishing Features &amp;amp; SharePoint Designer 2007" href="http://www.sharepointbestpractices.com/agenda##38" target="_blank" rel=tag&gt;Content Development and Deployment using Publishing and SharePoint Designer 2007&lt;/a&gt;&amp;quot;.  The purpose of the presentation is to solidify best practices in which multiple content developers can use SharePoint Designer and the publishing features of a single mirrored environment to simplify the development of content (masterpages, custom pages, pagelayouts, content and styles) and its migration into a production environment. Here is the catch...., both the mirrored and production environment are hosted on the same physical farm.  &lt;/p&gt; &lt;p&gt;At the same time, I have been co-authoring a book with Enrique Lima.  The title of the book is, &amp;quot;Developer's Guide to InfoPath Form Services&amp;quot;.  Openly, I admit that it has taken quite a bit of time out of my day and night.  In fact, I have had quite a time over the last few months managing my time.  But, I am enjoying every bit of the sacrifice.  I will keep you all posted with the timelines.  &lt;/p&gt; &lt;p&gt;Finally, I am working to promote the &lt;a href="http://groups.google.com/group/sharepointdesigner" target="_blank"&gt;SharePoint Designer Discussion Group&lt;/a&gt;.  I encourage all to visit and consider joining the group.  The purpose of the group is to share SharePoint Designer 2007 experiences with others.  It has grown over the months.  In fact, I have taken more of a hands-off approach.  I love the energy.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;BTW - I am open to speaking at user groups.  Yes, that is right.  I am open to speaking at user groups.&lt;/p&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;Signing Off - Whoooo Hooooo&lt;/p&gt; &lt;p&gt;Corro'll Driskell&lt;/p&gt; &lt;h6&gt; &lt;/h6&gt; &lt;p&gt;&lt;a href="mailto:mark@solutionsmark.com"&gt; &lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2008/08/21/Getting-on-the-SharePoint-Roll.aspx#Comments</comments><category>User Groups</category></item><item><author>Corro'll Driskell</author><title>SharePoint Best Practices Conference</title><guid>/Driskell/archive/2008/07/28/SharePoint-Best-Practices-Conference.aspx</guid><link>/Driskell/archive/2008/07/28/SharePoint-Best-Practices-Conference.aspx</link><pubDate>Mon, 28 Jul 2008 23:09:00 GMT</pubDate><description>&lt;div class=ExternalClass31F8A3A9AD664F5E8AC8E84717686691&gt;&lt;table cellspacing=0 cellpadding=5 width=400 border=0&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td valign=top width=400&gt;&lt;a title="SharePoint Best Practices Conference" href="http://www.sharepointbestpractices.com/" target="_blank" rel=tag&gt;&lt;img style="border-top-width:0px;border-left-width:0px;border-bottom-width:0px;border-right-width:0px" height=111 alt="bp_horizontal" src="/Driskell/Lists/Posts/Attachments/8/bp_horizontal_3_18A6F413.jpg" width=782 border=0&gt;&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;p&gt; &lt;/p&gt; &lt;p&gt;&lt;font size=3&gt;The message...&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size=3&gt;&amp;quot;&lt;em&gt;The 2008 Best Practices Conference&lt;/em&gt; &lt;em&gt;replaces confusion with Clarity, Direction and Confidence&lt;/em&gt; by establishing key principles to guide effective SharePoint decision-making in any situation. &amp;quot;&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size=3&gt;Working with many organizations there are a number of questions referencing Office SharePoint Server 2007 and Windows SharePoint Server 3.0 and Best Practices.  Across the SharePoint solution stack, it is very difficult to answer all questions with the limited time constraint.  &lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size=3&gt;Enter the Best Practices SharePoint Conference utilizing a great tag line: &amp;quot;Clarity, Direction and Confidence&amp;quot;.... The catch phrase does an excellent job conveying the goal of this conference.  Obviously, all must consider attending.&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size=3&gt;&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font size=3&gt;&lt;a href="http://www.sharepointbestpractices.com"&gt;http://www.sharepointbestpractices.com&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;&lt;/div&gt;</description><comments>/Driskell/archive/2008/07/28/SharePoint-Best-Practices-Conference.aspx#Comments</comments><category>Best Practice</category></item></channel></rss>