<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://k2underground.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Articles</title><subtitle type="html" /><id>http://k2underground.com/blogs/articles/atom.aspx</id><link rel="alternate" type="text/html" href="http://k2underground.com/blogs/articles/default.aspx" /><link rel="self" type="application/atom+xml" href="http://k2underground.com/blogs/articles/atom.aspx" /><generator uri="http://communityserver.org" version="4.1.40407.4157">Community Server</generator><updated>2007-07-10T20:09:00Z</updated><entry><title>How to combine your own custom data with K2 Process information</title><link rel="alternate" type="text/html" href="/blogs/articles/archive/2008/06/10/how-to-combine-your-own-custom-data-with-k2-process-information.aspx" /><id>/blogs/articles/archive/2008/06/10/how-to-combine-your-own-custom-data-with-k2-process-information.aspx</id><published>2008-06-10T14:45:00Z</published><updated>2008-06-10T14:45:00Z</updated><content type="html">&lt;P&gt;We have been working with a client recently and as their reporting requirements unfolded it became apparent that the OOB and custom reporting made available through blackpearl wasn’t going to cut the mustard in certain instances.&lt;/P&gt;
&lt;P&gt;Why? Well these guys needed reporting that was going to provide them with visibility of information that resides in their own custom data store (SQL Server tables) and also process specific information that blackpearl holds. This information was to be presented via SQL Reporting Services reports and for each instance of a process (submission of a Investment Plan) they needed process information (Folio Name, Start Date, End Date, Duration, Number of times a particular activity has occurred – in this case how many times the Rework activity has occurred) combined with information from their own SQL tables (Customer name, custom Status info and other details). All of this information was available through SmartObjects. The blackpearl OOB reports use their own SmartObjects and we made use of the Dynamic SQL Service to provide the connectivity to the custom SQL database which in turn provides data to our SmartObjects.&lt;/P&gt;
&lt;P&gt;Initially our thoughts were to provide the reporting utilizing SmartObjects. SmartObjects are indeed a fantastic component within the blackpearl platform but from a reporting perspective are relatively lightweight. They provide limited “TSQL” functionality, we were to discover that they do not allow for things like aggregation (Select * from SmartObjectA) or Sub Selects which in this case were critical in order for us to produce the information our client needed.&lt;/P&gt;
&lt;P&gt;I have raised support tickets for these as I believe they should support this common querying capability.&lt;/P&gt;
&lt;P&gt;So we turned our attentions to what was contained within the K2 Databases. Within the K2ServerLog database we looked at the following tables:&lt;/P&gt;
&lt;P&gt;_Act&lt;/P&gt;
&lt;P&gt;_ActInst&lt;/P&gt;
&lt;P&gt;_ProcInstData&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Time to take a look at the SQL&lt;/B&gt;: We use this piece of SQL to essentially count the number of times a particular activity has occurred in this case the Rework Activity.&lt;/P&gt;
&lt;P&gt;SELECT&lt;/P&gt;
&lt;P&gt;TEO.Name AS 'TEO Name'&lt;/P&gt;
&lt;P&gt;, TEO.Edumis&lt;/P&gt;
&lt;P&gt;, TEO.Email AS 'TEO Email'&lt;/P&gt;
&lt;P&gt;, TEO.AdUserName AS 'TEO Username'&lt;/P&gt;
&lt;P&gt;, TEO.TEOType AS 'TEO Type'&lt;/P&gt;
&lt;P&gt;, TEO.XYZArea AS 'TEO Area'&lt;/P&gt;
&lt;P&gt;, Activity.Name AS 'Activity Name'&lt;/P&gt;
&lt;P&gt;, Instance.StartDate&lt;/P&gt;
&lt;P&gt;, Instance.FinishDate&lt;/P&gt;
&lt;P&gt;, DataFields2.value AS 'Number of reworks'&lt;/P&gt;
&lt;P&gt;, Advisor.FirstName + ' ' + Advisor.LastName AS Advisor&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;K2ServerLog.dbo._ActInst AS Instance &lt;B&gt;– K2 Activity Instance table&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;INNER JOIN K2ServerLog.dbo._Act AS Activity ON Instance.ActID = Activity.ID &lt;B&gt;-- K2 Activity&lt;/B&gt; &lt;B&gt;table &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;INNER JOIN K2ServerLog.dbo._ProcInstData AS DataFields1 ON (Instance.ProcInstID = DataFields1.ProcInstID AND (DataFields1.Name = 'TEOID'))&lt;B&gt;-- Process Instance Data Fields (TEOID). So we have the &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;INNER JOIN K2ServerLog.dbo._ProcInstData AS DataFields2 ON (Instance.ProcInstID = DataFields2.ProcInstID) &lt;B&gt;-- Process Instance Data Fields (ReworkCounter)&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;K2ServerLog.dbo._ProcInstData table is essentially a key value pair table per instance for its data fields, with data field name as the key value and data field value as the value data.&lt;/P&gt;
&lt;P&gt;INNER JOIN XYZ_IIP_POC.dbo.tblTEO AS TEO ON (CAST(CAST(DataFields1.value AS nvarchar(50)) AS INT) = TEO.TEOID) &lt;/P&gt;
&lt;P&gt;INNER JOIN XYZ_IIP_POC.dbo.tblAdvisor AS Advisor ON TEO.AdvisorID = Advisor.AdvisorID&lt;/P&gt;
&lt;P&gt;WHERE&lt;/P&gt;
&lt;P&gt;Activity.Name = 'Plan Rework'&lt;/P&gt;
&lt;H4&gt;The Output&lt;/H4&gt;
&lt;P&gt;&lt;A href="http://k2underground.com/blogs/articles/WindowsLiveWriter/HowtocombineyourowncustomdatawithK2Proce_8931/clip_image002_2.jpg"&gt;&lt;IMG style="BORDER-RIGHT:0px;BORDER-TOP:0px;BORDER-LEFT:0px;BORDER-BOTTOM:0px;" height=154 alt=clip_image002 src="http://k2underground.com/blogs/articles/WindowsLiveWriter/HowtocombineyourowncustomdatawithK2Proce_8931/clip_image002_thumb.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;FONT color=#cc0000 size=4&gt;This article written by Robin Doddridge and Jian Sun of &lt;/FONT&gt;&lt;A href="http://www.intergen.co.nz/"&gt;&lt;FONT color=#cc0000 size=4&gt;www.intergen.co.nz&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;img src="http://k2underground.com/aggbug.aspx?PostID=24222" width="1" height="1"&gt;</content><author><name>chrisg</name><uri>http://k2underground.com/members/chrisg/default.aspx</uri></author></entry><entry><title>Actions, Outcomes and Lines Left Unruled</title><link rel="alternate" type="text/html" href="/blogs/articles/archive/2008/05/22/actions-outcomes-and-lines-left-unruled.aspx" /><id>/blogs/articles/archive/2008/05/22/actions-outcomes-and-lines-left-unruled.aspx</id><published>2008-05-22T14:15:00Z</published><updated>2008-05-22T14:15:00Z</updated><content type="html">&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;In an evolutionary fashion, new concepts have been added to K2 in addition to concepts being changed and refined.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;To the developer, it means adopting these new and changed concepts to model business processes better.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;With that in mind, this article addresses a point of confusion that has crept up to which I have fallen prey to.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;When should you use outcome rules over line rules and how do actions relate to this?&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The pitfall so easy to fall into occurs when modeling a multiple branching scenario from an activity.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;If the new K2 concepts have not been understood then where one would expect multiple branches to be followed only one is followed.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is the issue that this article addresses.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Collectively, the three concepts “actions”, “outcomes” and “lines” form the basis of abstracting lower level programming concepts and moving towards higher level concepts that an end user would understand.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I am often asked to explain (to both developers and non-developers) the benefits of using a workflow modeling solution like K2 versus just coding it up directly.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This article is not meant to be an exhaustive exposition on this matter but I would like to highlight one point to elucidate the “abstraction” concept.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The point can be summarized as follows:&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt 0.5in;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;In any solution that models a business process, on one end of the spectrum there is the raw code that is written by developers.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;On the other end, we have business requirements written by business analysts.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In the case that we are modeling business processes, the requirements are likely Visio diagrams.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt 0.5in;"&gt;&lt;FONT face=Calibri size=3&gt;Which is easier to understand (by an end user)?&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Which is easier to modify?&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It is of course the business requirements&lt;/FONT&gt;&lt;SPAN class=MsoFootnoteReference&gt;&lt;SPAN style="mso-special-character:footnote;"&gt;&lt;SPAN class=MsoFootnoteReference&gt;&lt;SPAN style="FONT-SIZE:11pt;LINE-HEIGHT:115%;FONT-FAMILY:'Calibri','sans-serif';mso-bidi-font-family:'Times New Roman';mso-fareast-font-family:Calibri;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;mso-ascii-theme-font:minor-latin;mso-fareast-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-theme-font:minor-bidi;"&gt;[1]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt 0.5in;"&gt;&lt;FONT face=Calibri size=3&gt;With these extremes mapped, I would say that K2 sits on the spectrum somewhere close to the business requirements (Visio diagrams) with the opportunity to drop down to the code level if needed; something to please the business analyst and something to please the developer.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is made possible because the concept of a “step” in a workflow has been brought up from the code level to a tangible concept understandable to the computer and something that can be modeled by a business analyst.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is made possible because of abstraction.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Those of you who have worked with K2.net 2003 know that lines and more specifically line rules are not new.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;They are the logic that represents many lines of code that directs the flow of execution from one step (activity) to another step.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In the same tradition of abstraction, there are two new concepts that have been teased out of the code.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;They are Actions and Outcomes.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;H2 style="MARGIN:10pt 0in 0pt;"&gt;&lt;FONT face=Cambria color=#4f81bd size=4&gt;Actions&lt;/FONT&gt;&lt;/H2&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;From the workflow, the steps that involves human interaction requires that the human do something or “action” that step.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Actions are the options, typically surfaced in a form like “Approve” or “Reject”, that a human can act on a step he/she is assigned that will advance the workflow.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In K2 parlance, actions are defined on each activity that has a client event.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This seemingly simple abstraction allows for the following:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo1;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Actions are surfaced up to the K2 workspace which allows a user to action a step right from the workspace, if so desired.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo1;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Actions can be secured.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Each action can be assigned a specific access rights from the K2 workspace UI.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This allows certain actions to be assigned to some people and restricted from others. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;"&gt;&lt;FONT face=Calibri size=3&gt;&lt;/FONT&gt;&lt;FONT face=Calibri size=3&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&amp;nbsp;&lt;IMG height=428 src="http://i272.photobucket.com/albums/jj162/K2Underground/01-ActionsSecured.jpg" width=559&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 10pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo1;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Actions need not be hardcoded into the “actioning” form.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;This means that the list of possible actions can be retrieved from the system rather embedding it in form. The advantage of this approach is that the actions in the workflow can change without necessarily requiring the forms to be updated.&lt;/FONT&gt;&lt;/P&gt;
&lt;H2 style="MARGIN:10pt 0in 0pt;"&gt;&lt;FONT face=Cambria color=#4f81bd size=4&gt;Outcomes&lt;/FONT&gt;&lt;/H2&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Outcomes are a natural extension of actions.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Outcomes are formal definitions of a K2 activity that defines the end result of an activity once it has been “actioned”.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In many cases, outcomes are one-to-one to actions but they need not be and it is when it is not that things can become confusing.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The interesting point is that by design there can be only one outcome followed for an activity.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In the one-to-one case, because the user selects one and only one action, it will correspond to one and only one outcome.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;In the case that it is not one-to-one, consider the example of a K2 activity:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;Actions defined:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Complete&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Incomplete&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 10pt 0.5in;"&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&lt;IMG height=517 src="http://i272.photobucket.com/albums/jj162/K2Underground/02-ConfigureActions.jpg" width=573&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;Outcomes are not one-to-one and defined as:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT face=Calibri size=3&gt;1.&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Complete1: Action = Complete&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT face=Calibri size=3&gt;2.&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Complete2: (Action = Complete) And (ProductType = Widget)&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 10pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="mso-bidi-font-family:Calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT face=Calibri size=3&gt;3.&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Complete3: (Action = Complete) And (ProductType = Doodad)&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;For each outcome above there is a line that branches the workflow; lines have no rules so that workflow can branch off in three different directions when the user actions “Complete”. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;Because there can be only one outcome, only the outcome “Complete1” will activate.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The other two will not be evaluated because an outcome has been found to be “true”.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;TEXT-ALIGN:center;" align=center&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;IMG height=340 src="http://i272.photobucket.com/albums/jj162/K2Underground/03-ViewFlow.jpg" width=497&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;The first line will be followed, the other two will not.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Outcome definitions must be defined such that only one is evaluated to true.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;They must be mutually exclusive.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The extra clauses (ProductType = Widget, ProductType = Doodad) that I have above that make the outcomes not mutually exclusive should not be defined here.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;These rules are what control the flow of the process out from the activity.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;As such they should be defined in the lines coming out of the activity.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;To fix the above scenario, there really are only two outcomes, Complete and Incomplete, because this is the set that is mutually exclusive.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In this case, because there is no branching with the “Incomplete” outcome it can be removed.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The extra clauses that control the branching need to be defined as line rules.&lt;/FONT&gt;&lt;/P&gt;&lt;SPAN style="FONT-SIZE:11pt;LINE-HEIGHT:115%;FONT-FAMILY:'Calibri','sans-serif';mso-bidi-font-family:'Times New Roman';mso-fareast-font-family:Calibri;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;mso-ascii-theme-font:minor-latin;mso-fareast-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-theme-font:minor-bidi;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;mso-special-character:line-break;"&gt;&lt;/SPAN&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;For the branch “Complete1”:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;&lt;IMG height=364 src="http://i272.photobucket.com/albums/jj162/K2Underground/04-Complete1Branch.jpg" width=495&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;The “Outcome” green variable is a new activity level field that is accessed from the Context Browser:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;IMG height=555 src="http://i272.photobucket.com/albums/jj162/K2Underground/05-ContextBrowser-Outcome.jpg" width=600&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;For the branch “Complete2”:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&lt;IMG height=491 src="http://i272.photobucket.com/albums/jj162/K2Underground/06-Complete2Branch.jpg" width=594&gt;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;And for the branch “Complete3”:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;IMG height=465 src="http://i272.photobucket.com/albums/jj162/K2Underground/07-Complete3Branch.jpg" width=476&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;When the process is changed so that lines have the rules that control branching then the “expected” behaviour follows.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;H1 style="MARGIN:24pt 0in 0pt;"&gt;&lt;FONT face=Cambria color=#365f91 size=5&gt;Summary&lt;/FONT&gt;&lt;/H1&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;This article addresses the issue of when to use outcome rules and when to you use line rules.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;When this is understood, you will not fall prey to creating a multiple branching scenario that does not seem to follow the defined multiple branches, despite having defined the branching logic.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;To summarize the rule of thumb, outcome definitions must be mutually exclusive as there can only be one outcome.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Any rules that define the branching from the activity are meant to be defined on the lines and not part of the outcome definition.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;DIV style="mso-element:footnote-list;"&gt;&lt;BR&gt;&lt;FONT face=Calibri size=3&gt;
&lt;HR align=left&gt;
&lt;/FONT&gt;
&lt;DIV id=ftn1 style="mso-element:footnote;"&gt;
&lt;P class=MsoFootnoteText style="MARGIN:0in 0in 0pt;"&gt;&lt;SPAN class=MsoFootnoteReference&gt;&lt;SPAN style="mso-special-character:footnote;"&gt;&lt;SPAN class=MsoFootnoteReference&gt;&lt;SPAN style="FONT-SIZE:10pt;LINE-HEIGHT:115%;FONT-FAMILY:'Calibri','sans-serif';mso-bidi-font-family:'Times New Roman';mso-fareast-font-family:Calibri;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;mso-ascii-theme-font:minor-latin;mso-fareast-theme-font:minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-theme-font:minor-bidi;"&gt;[1]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri&gt; Some would argue that because code is exact and prose/diagrams generated by a business analyst is not necessarily clear then code is easier to understand.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;On the point of ambiguity, there is no questioning that code is exact; that “while (1) malloc (1);” is memory leak and that the business requirement “I want something that can solve my problem well” is ambiguous and open to interpretation.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;From an end user perspective, however, an end user can be brought up to speed quite fast on a well crafted Visio diagram and would not likely understand code.&lt;/FONT&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://k2underground.com/aggbug.aspx?PostID=23963" width="1" height="1"&gt;</content><author><name>ken.wong</name><uri>http://k2underground.com/members/ken.wong/default.aspx</uri></author><category term="Outcomes" scheme="http://k2underground.com/blogs/articles/archive/tags/Outcomes/default.aspx" /><category term="Actions" scheme="http://k2underground.com/blogs/articles/archive/tags/Actions/default.aspx" /><category term="Designer" scheme="http://k2underground.com/blogs/articles/archive/tags/Designer/default.aspx" /></entry><entry><title>Talkin SmartObjects. by Jason Apergis</title><link rel="alternate" type="text/html" href="/blogs/articles/archive/2008/04/24/talkin-smartobjects-by-jason-apergis.aspx" /><id>/blogs/articles/archive/2008/04/24/talkin-smartobjects-by-jason-apergis.aspx</id><published>2008-04-24T17:15:00Z</published><updated>2008-04-24T17:15:00Z</updated><content type="html">&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Background&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;Colin Murphy, Gabriel Malherbe and I held a workshop on SmartObjects at the K2 Insider Conference this April.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It was an interesting discussion because the three of us had some conference calls beforehand where tried to gain a better understanding of how to position SmartObjects in the Enterprise Architecture.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I wrote a blog that has not been published which all three of us iterated on before the conference.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I made some statements in that article (to invoke debate) where I asserted that SmartObjects could be considered SOA.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I got beat up a little by colleagues and now admit that SmartObjects are not SOA even though they adhere to many of the tenants of SOA like autonomy, manageability, discoverable, maintainable, exception handling, scalability, reliability, transactionality, security, logging, build ability, interoperability, testability, etc.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Maybe it is low on the maturity scale of SOA (level 2 of 5) and I still debate that sometimes that is good enough for many organizations.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It can be challenging to get a company to invest to get to a high maturity level of SOA.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;So then what are SmartObjects?&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Here are some excerpts from the slides that we presented.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Before and Now&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;In the K2 2003 days we would have to go into the client event after the code was generated and start modifying it to get data from external places.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Remember that there is no code generation in blackpearl; it is declarative.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;IMG src="http://i272.photobucket.com/albums/jj162/K2Underground/k2studio-2.jpg"&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;Now all we do is drag and drop smart object references into the canvas to gain access to data; no code.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;IMG src="http://i272.photobucket.com/albums/jj162/K2Underground/mailevent.jpg"&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;K2 [blackpearl] Solution&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:12pt 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l3 level1 lfo1;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Blackpearl introduces SmartObjects to solve many of these issues. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l3 level1 lfo1;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;SmartObjects:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 1in;TEXT-INDENT:-0.25in;mso-list:l3 level2 lfo1;mso-add-space:auto;"&gt;&lt;SPAN style="FONT-FAMILY:'Courier New';mso-fareast-font-family:'Courier New';"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;o&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Are reusable business entities which can be deployed centrally and consumed by non-technical workflow authors &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 1in;TEXT-INDENT:-0.25in;mso-list:l3 level2 lfo1;mso-add-space:auto;"&gt;&lt;SPAN style="FONT-FAMILY:'Courier New';mso-fareast-font-family:'Courier New';"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;o&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Are a storage location for process data (SmartBox)&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 1in;TEXT-INDENT:-0.25in;mso-list:l3 level2 lfo1;mso-add-space:auto;"&gt;&lt;SPAN style="FONT-FAMILY:'Courier New';mso-fareast-font-family:'Courier New';"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;o&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Are a means to quickly access external LOB Data&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 1in;TEXT-INDENT:-0.25in;mso-list:l3 level2 lfo1;mso-add-space:auto;"&gt;&lt;SPAN style="FONT-FAMILY:'Courier New';mso-fareast-font-family:'Courier New';"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;o&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Allow developers to aggregate data from multiple backend systems into a single, composite object&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 1in;TEXT-INDENT:-0.25in;mso-list:l3 level2 lfo1;mso-add-space:auto;"&gt;&lt;SPAN style="FONT-FAMILY:'Courier New';mso-fareast-font-family:'Courier New';"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;o&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Can be created without writing any code&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 3pt 1in;TEXT-INDENT:-0.25in;mso-list:l3 level2 lfo1;mso-add-space:auto;"&gt;&lt;SPAN style="FONT-FAMILY:'Courier New';mso-fareast-font-family:'Courier New';"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;o&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Can be accessed outside of the workflow (ADO Provider) and can be reported on&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;K2 SmartObject in Enterprise Architecture&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;The following diagram is from a presentation I prepared in November of 2007 for the Texas User Group.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;At the time I was digging around SmartObjects trying to understand it.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;From what it looks like my diagram is still spot on.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;SPAN style="mso-no-proof:yes;"&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&lt;IMG src="http://i272.photobucket.com/albums/jj162/K2Underground/arch.jpg"&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;K2 states that SmartObjects are used to “provision” data into your workflows.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;K2 uses it as the underpinning to the entire blackpearl platform.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The two things you should know right off are there are SmartObject Services and SmartObjects.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;SmartObject Services are:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:12pt 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo4;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;The providers that access line of business and expose the data through a common interface. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo4;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;They expose methods that can be executed; typically CRUD operations.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 3pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo4;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;They are registered with the K2 Server and instances of them are created through K2 Workspace.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;SmartObjects are:&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:12pt 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo4;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Class definitions that have data elements that map into the methods that are provided by the SmartObject Service.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo4;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;SmartObjects can be graphically used within K2 to access data.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 3pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l2 level1 lfo4;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;SmartObjects have a data provider API which you can easily hook into other tiers of the architecture.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;In the end SmartObjects is part of your Data Access layer and they allow you to basically write data providers which are access through SmartObjects.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;K2 [blackpearl] Solution&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;The following are out of the box SmartObject Services that are provided by SharePoint.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:12pt 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l4 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;SmartBox (cannot be used for custom SQL Databases)&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l4 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;SharePoint&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l4 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Active Directory – I cannot live without this service when building workflows.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l4 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;K2 [blackpearl] – Provides easy access to all data that is within K2.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 3pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l4 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Salesforce.com&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Blackmarket SmartObject Services&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;The Blackmarket is a K2’s version of CodePlex.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It is an area where developers can share code with one another - &lt;/FONT&gt;&lt;A href="http://k2underground.com/k2/ProjectLanding.aspx"&gt;&lt;FONT face=Calibri color=#800080 size=3&gt;http://k2underground.com/k2/ProjectLanding.aspx&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:12pt 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="http://k2underground.com/k2/ProjectHome.aspx?ProjectID=42"&gt;&lt;FONT face=Calibri color=#800080 size=3&gt;Dynamic SQL Stored Procedure Service&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt; – Build up Service based on stored procedures in SQL Server.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I plan to start using this one because I prefer to be calling stored procedures versus accessing tables and columns directly.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="http://k2underground.com/k2/ProjectHome.aspx?ProjectID=20"&gt;&lt;FONT face=Calibri color=#800080 size=3&gt;Dynamic SmartObject Services Service&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt; – Build up Service based on schema of a SQL Server instance.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="http://k2underground.com/k2/ProjectHome.aspx?ProjectID=8"&gt;&lt;FONT face=Calibri size=3&gt;SharePoint Users in Groups ServiceObject&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt; - This ServiceObject when wrapped in a simple SmartObject allows you to leverage SharePoint Groups.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="http://k2underground.com/k2/ProjectHome.aspx?ProjectID=43"&gt;&lt;FONT face=Calibri size=3&gt;Office Communication Server Service&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt; - The OCS Service Broker allows users to create a SmartObject to send notifications via Microsoft Office Communications Server 2007.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="http://k2underground.com/k2/ProjectHome.aspx?ProjectID=45"&gt;&lt;FONT face=Calibri size=3&gt;Dynamic WebService Service&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt;– Build up Service based on a web service.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="http://k2underground.com/k2/ProjectHome.aspx?ProjectID=51"&gt;&lt;FONT face=Calibri color=#800080 size=3&gt;SmartObject Service Provider for Oracle&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt; – Build up Service based on schema of an Oracle instance.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 3pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo3;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="http://k2underground.com/k2/ProjectHome.aspx?ProjectID=50"&gt;&lt;FONT face=Calibri color=#800080 size=3&gt;Dynamic SmartObject Service&lt;/FONT&gt;&lt;/A&gt;&lt;FONT face=Calibri size=3&gt; – Dynamically builds up services that use existing SmartObjects as the data source.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The author says this allows you to create SmartObject Service inheritance. &lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;This catalog of services is going grow as more people start to contribute.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Conclusions&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;FONT face=Calibri size=3&gt;The following are my conclusions after the discussion.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:12pt 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo5;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;SmartObjects give you a significant edge in delivering timely solutions with K2.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;They have provided me the ability to immediately access Active Directory, SQL Databases, etc.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;We have personally seen that we can now deliver working processes in days instead of weeks because we no longer have to build up custom data access layers and go into the code of K2 and manually access the data.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I can use the SmartObjects in a drag and drop fashion in line rules, succeeding rules, preceding rules, emails, destination users/rules, any configuration item in any event wizard, etc.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It is ridiculously simple to configure my entire K2 process with data and I have zero custom code to get at the data.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Plus I can write C# code in custom event handlers to use SmartObject.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The API is really clean, simple and similar to using System.Data.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo5;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Another great thing about SmartObjects is that if you carefully take the time to build them you will start being able to build catalogs of SmartObjects that business users can use when composing their K2 Processes.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;They will not be exposed to any of the details associated to knowing where the data comes from.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo5;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Right now one concern is the ability to place business rules against the SmartObjects methods.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;For instance if you use the Dynamic SQL Service which build the interface of the service based on the schema of the database there is no way put business rules on the SmartObject to ensure that a value must be greater than X or cannot be null.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;So if a business user were to use SmartObject Event in their process they could possibly just start setting invalid data.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo5;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;The SmartBox is good for doing early iterations of processes but over the long term you may not want to us them.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;For instance you have limited control over the schema of the database (because it is generated).&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;As well, you may not want to co-mingle data from different processes in the same database.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo5;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT face=Calibri size=3&gt;Do not let you SmartObjects replace your Data Warehouse.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;With SmartObjects it is possible to perform CRUD operations across line of business data sources.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It is very tempting to have a SmartObject read from many different places providing a single view of the data despite where the data is being read from.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;A simple example would have a SmartObject read from Active Directory and SQL Server.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;You must take performance into consideration when doing something similar to this.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Performance issues associated to reading data will be vetted out in the SmartObject Service implementation however if you read in two large data sources and then join them together in the SmartObject layer you will not have the opportunity to index those joins.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It would be better to have the SmartObject access data in the Data Warehouse itself.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 3pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo5;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-bidi-font-family:Symbol;mso-fareast-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;This comment will be a little at odds with the first but LINQ, Entity and .Net Data Services make it challenging to position SmartObjects.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;SmartObjects Services may use them to access data and surface it up through a SmartObject for K2.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However many developers will be tempted just use LINQ directly inside your custom server events, middle and UI layers.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I have not personally messed with LINQ and Entity as much as I should but from the hype it is pretty rich and provide a full Object Query Language and Object Relational Mapping (ORM).&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The one nice thing about SmartObjects is that they provide you a way to centralize and publish services.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:12pt 0in 3pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://k2underground.com/aggbug.aspx?PostID=23379" width="1" height="1"&gt;</content><author><name>chrisg</name><uri>http://k2underground.com/members/chrisg/default.aspx</uri></author><category term="smartobjects" scheme="http://k2underground.com/blogs/articles/archive/tags/smartobjects/default.aspx" /></entry><entry><title>Getting into BizTalk</title><link rel="alternate" type="text/html" href="/blogs/articles/archive/2007/09/12/getting-into-biztalk.aspx" /><id>/blogs/articles/archive/2007/09/12/getting-into-biztalk.aspx</id><published>2007-09-13T04:40:00Z</published><updated>2007-09-13T04:40:00Z</updated><content type="html">&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;INTRO&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;This article will attempt to act as an overview of common message broking architectures, the BizTalk architecture and application, BizTalk components and BizTalk capabilities as a message orchestrator and potential application as a human to human and human to system workflow engine.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;The message broker patterns commonly used for system integration are primarily concerned about the transport of data from one system to another.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;TEXT-ALIGN:center;" align=center&gt;&lt;IMG style="WIDTH:556px;HEIGHT:384px;" height=384 src="http://k2underground.com/photos/articles/images/18581/original.aspx" width=556&gt;&lt;BR&gt;&lt;SPAN style="FONT-SIZE:8pt;LINE-HEIGHT:115%;mso-bidi-font-size:11.0pt;"&gt;&lt;FONT face=Calibri&gt;Figure 1: Message Broker Pattern&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;The pattern has 4 main components.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Transport Layer: As the source or destination of the data could be anything from a file to a mobile text message, it is the job of the transport layer to pick the data up from any supported proprietary location. The transport layer is not concerned about the structure of the data. It only knows how to speak with the location and the format of the data. &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Transformation layer: Once the data’s been picked up, the transport layer will need to understand the structure of the data. Most message brokers will use this layer to transform the data into a common format for internal use. Let’s call this our message&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Mapping layer: Sometimes combined with the transport layer, the data, now in a common format, can be remapped and manipulated if needed.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Filtering/Routing Layer: This is the core of the message broker. The idea is that the broker can now route the message out based on the content of the data inside the message. The message could have enough information for the routing engine to determine where it should go and what it should do. Alternatively some work may need to be done to figure this out. This could be achieved by manipulating the message, or by applying complex routing rules and decisions and conditions… from here, the process is exactly the same, but in reverse.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Using this pattern, the BizTalk architecture overview looks like this:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;TEXT-ALIGN:center;" align=center&gt;&lt;IMG style="WIDTH:556px;HEIGHT:392px;" height=392 src="http://k2underground.com/photos/articles/images/18582/original.aspx" width=556&gt;&lt;BR&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="FONT-SIZE:8pt;LINE-HEIGHT:115%;mso-bidi-font-size:11.0pt;"&gt;Figure 2: BizTalk Architecture&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Want to talk?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;BizTalk is primarily a technology for integrating applications. In other words, BizTalk acts as a "broker" between applications, to enable them to work together to achieve a goal, solve a problem or provide extra value. &lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;By using a broker approach to application integration you provide a common connection point for these applications and avoid the complexity of custom integration, often significantly decreasing development time.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;The broker services provided by BizTalk can offer message transport and transformation and increased support for diverse communication mechanisms such as HTTP, MSMQ, FTP, etc.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;On the Windows platform, using BizTalk in this approach is often the best way to integrate with non-Windows applications, such as AS/400 and mainframes.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Various third party adapters are available for BizTalk.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Show me the message!&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;It’s all about the message. As a message broker, BizTalk is primarily concerned about the transport of messages. It is the main entity in any BizTalk application. By using either the supplier adapters or utilizing third party adapters, BizTalk can pick up messages from a wide variety of sources including FTP, HTTP, MSMQ, etc. The receive pipeline (BizTalk’s implementation of the transformation layer) then converts the message into a known structure (XML as preference). Also here a wide variety of industry standards are supported including flat files, EDI documents, XML, etc. The configuration of ports and the mapping of data in the various pipelines and the optional orchestration a business processes can be done code-free. Current support for different transport and message formats include SAP, Oracle, Siebel and WSS.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Other features include a reliably delivery architecture that ensures that messages don’t get lost.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;Using a process of dehydration, processing times of messages in BizTalk can be seconds or years with no detrimental effect on the system.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;So within this, what can it provide?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:5pt 0in;LINE-HEIGHT:normal;mso-layout-grid-align:none;"&gt;&lt;SPAN style="mso-bidi-font-family:'Times New Roman';"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Some of the core capabilities are: &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:5pt 0in 5pt 0.5in;TEXT-INDENT:-0.25in;LINE-HEIGHT:normal;mso-list:l0 level1 lfo1;tab-stops:list .5in;mso-add-space:auto;mso-layout-grid-align:none;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-font-size:11.0pt;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family:'Times New Roman';"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;XML messaging through different open Internet standards &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:5pt 0in 5pt 0.5in;TEXT-INDENT:-0.25in;LINE-HEIGHT:normal;mso-list:l0 level1 lfo1;tab-stops:list .5in;mso-add-space:auto;mso-layout-grid-align:none;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-font-size:11.0pt;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family:'Times New Roman';"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Message transformation/mapping &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:5pt 0in 5pt 0.5in;TEXT-INDENT:-0.25in;LINE-HEIGHT:normal;mso-list:l0 level1 lfo1;tab-stops:list .5in;mso-add-space:auto;mso-layout-grid-align:none;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-font-size:11.0pt;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family:'Times New Roman';"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Message validation &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:5pt 0in 5pt 0.5in;TEXT-INDENT:-0.25in;LINE-HEIGHT:normal;mso-list:l0 level1 lfo1;tab-stops:list .5in;mso-add-space:auto;mso-layout-grid-align:none;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-font-size:11.0pt;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family:'Times New Roman';"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Application/system connectivity through application adapters &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:5pt 0in 5pt 0.5in;TEXT-INDENT:-0.25in;LINE-HEIGHT:normal;mso-list:l0 level1 lfo1;tab-stops:list .5in;mso-add-space:auto;mso-layout-grid-align:none;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-font-size:11.0pt;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family:'Times New Roman';"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Visual business-process orchestration &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:5pt 0in 5pt 0.5in;TEXT-INDENT:-0.25in;LINE-HEIGHT:normal;mso-list:l0 level1 lfo1;tab-stops:list .5in;mso-add-space:auto;mso-layout-grid-align:none;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-font-size:11.0pt;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family:'Times New Roman';"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Business rules repository and engine &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:5pt 0in 5pt 0.5in;TEXT-INDENT:-0.25in;LINE-HEIGHT:normal;mso-list:l0 level1 lfo1;tab-stops:list .5in;mso-add-space:auto;mso-layout-grid-align:none;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-bidi-font-size:11.0pt;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;·&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-family:'Times New Roman';"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Support for secure and reliable messaging &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Support for long-running transactions &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Moving beyond just passing message from one point to another, BizTalk gives a user the ability to graphically define the logic that gets applied via orchestrations for its application integration within the filtering and routing layer. This means that a business process can be dictated inside BizTalk by means of receiving messages, and effectively routing them (or related messages) based on a business process. In BizTalk world this is called orchestration.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It can also provide state management and support for longer-running transactions.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;Building in transformation and or orchestrations is done graphically in BizTalk, and for those trained and knowledgeable, this is a great feature and makes BizTalk powerful yet easy to use.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;SPAN style="FONT-SIZE:12pt;LINE-HEIGHT:115%;mso-bidi-font-size:11.0pt;"&gt;&lt;FONT face=Calibri&gt;Is BizTalk workflow?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Define: ‘Workflow’: "The automation of a business process, in whole or part, during which documents, information or tasks are passed from one participant to another for action, according to a set of procedural rules." – WMC (Workflow Management Coalition)&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Indeed messages flowing from system to system through BizTalk, with rules dictating the routing logic is workflow.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;However, human-to-human and human-to-system workflow is not always message centric but normally state centric. During human workflow the routing is often based on variety of events and data that we collate into a case. The progression of the workflow normally represents a state change in the case as a whole. Together with that, human workflow requires facilities we as information workers need to effectively and easily interact with a business process.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;So what makes human workflow different?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;If the bulk of the process is system integration related (transforming, integrating, processing, chunking) and the level of human interaction (making decisions, escalating , displaying data, entering information, tasking, tracking etc) is minimal, a message brokering platform like BizTalk can be leveraged the best bet would be a message broking platform like BizTalk.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However, if the primary focuses of your processes are based on human interaction, then a tool set focused on human-to-human or human-to-system processes and workflow would be more applicable. Not doing so could increase the amount of code, time and level of knowledge required to bring these solutions to production and the level of effort required to maintain them.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Building processes and workflow with a human-focused platform often makes for easier development and deployment. Some items to keep in mind when considering human workflow the features and intricacies that often become important when building and deploying them:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Task management – How are people assigned tasks based on a business process and how are those tasks managed and escalated?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Task and/or work item notification – When someone is assigned a task, how are they notified? Is the notification mechanism flexible and does it conforms with common collaborative technologies like email or instant messaging?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Work item redirect – Can tasks be easily be re-assigned and routed?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Out of office – How are tasks and work items routed and escalated when the intended actor is not available? Is the actors availability based on some sort of presence notification technology?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Escalations – When work sits on one step, or with one individual, do you want the workflow system to take action, such as send reminder e-mails or escalate the work item to a manager in line with the business process?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Ad-hoc workflow – Informal human workflow and routing used today only have their routes decided at run time. How can the system support this?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Versioning – Human workflows tend to change. How will your system support these changes dynamically and allow for the different versions of the business process to exist at the same time?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Reporting – Human workflows often require the generation of reports and SLA’s based on the business process. This could be based on the meta data of the business case or the people involved in the business process.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Because a message broker platform like BizTalk does not natively address requirements placed on a human business process, accomplishing some of the above can be difficult and cumbersome.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;SPAN style="FONT-SIZE:12pt;LINE-HEIGHT:115%;mso-bidi-font-size:11.0pt;"&gt;&lt;FONT face=Calibri&gt;What have we learned and how does that help me?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;BizTalk is about applications, systems, messages, etc. Each of these can be called process or workflow, but don’t be confused: This is rarely about interaction with a person, or human, or role. The routing of messages is message centric while human workflow is case centric.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;For BizTalk evaluations ask:&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpFirst style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Are my needs primarily message based?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Do I need to do complex transformations on messages?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpMiddle style="MARGIN:0in 0in 0pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Do I need application integration?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoListParagraphCxSpLast style="MARGIN:0in 0in 10pt 0.5in;TEXT-INDENT:-0.25in;mso-list:l1 level1 lfo2;"&gt;&lt;SPAN style="FONT-FAMILY:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;"&gt;&lt;SPAN style="mso-list:Ignore;"&gt;&lt;FONT size=3&gt;·&lt;/FONT&gt;&lt;SPAN style="FONT:7pt 'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Are humans going to be involved in this process and what human workflow activities will be required?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Once I have this mapped out, I can start to make decisions on what I need to write (what must I control completely) and what I am going to buy.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;BizTalk can help greatly in platform- and system- integration scenarios.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It excels when you need to connect various systems or applications, especially when they use different communication methods or protocols.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;If you have simple integration needs, without the need for extensive transformations, and you do not anticipate many other needs of this type, then perhaps coding them manually is the way.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;By considering the above, your options range from custom, point to point integration to implementing a robust, industry standard approach with added benefits of orchestration like BizTalk Server. For the automation of business processes that require human task driven execution, consider a human workflow platform like the K2. If a combination of the above is required make sure your human workflow engine and your system integration tool will happily speak to each other.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Where to now?&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;BizTalk is an information broker for disparate systems.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It does not provide data, it does not service data, and it does not expose data.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It moves data. So if you need a tool that can easily handle moving data from one format or system to another with built-in capabilities for atomic transactions, and planned roll backs, and the ability to orchestrate a message and system centric process around this, then BizTalk is a sound option.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;War stories…&lt;/U&gt;&lt;/B&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;One customer I talked to had custom .NET business objects/entities (like a customer object or a price change object) that they had developed.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;They also had configured these to be serializable (so you could use them in a Web service where they're represented as XML). The benefit to this is that, in their BizTalk &lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;maps, the customer could map the data to the XML schema for the object in question and then just write a single line or two of .NET code to “object.deserialize(xml).” Then they have a fully populated .NET object without doing much at all. This makes creating your Web services simpler, because instead of having to pass in the individual parts, you could just pass in your business object whose parts had been populated for you. This is a good example of a customer that LOVES BizTalk.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;This customer says, “For us, BizTalk is a one-stop shop for moving data from one system or format to another with full system-side, non-human-interactive process development flow.”&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;For more human interactive workflow, the purpose of the tools is to better expose and use data&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;interactively — be it decision criteria, expense report data — and have humans interact with it, use it, change it or reply to it.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;I would like to take this opportunity to thank all those who helped contribute to this most specifically Gabriel Malherbe,&amp;nbsp;Jeremy Ragan, Bob Maggio, and ChrisT&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://k2underground.com/aggbug.aspx?PostID=18583" width="1" height="1"&gt;</content><author><name>chrisg</name><uri>http://k2underground.com/members/chrisg/default.aspx</uri></author></entry><entry><title>Automation testing or simulation with K2.net 2003</title><link rel="alternate" type="text/html" href="/blogs/articles/archive/2007/08/21/automation-testing-or-simulation-with-k2-net-2003.aspx" /><id>/blogs/articles/archive/2007/08/21/automation-testing-or-simulation-with-k2-net-2003.aspx</id><published>2007-08-21T22:06:00Z</published><updated>2007-08-21T22:06:00Z</updated><content type="html">&lt;H1&gt;&lt;A class="" title=_Toc174166435 name=_Toc174166435&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt; &lt;/SPAN&gt;&lt;SPAN class=style1 style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;Purpose&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H1&gt;
&lt;P class=MsoNormal&gt;This article will show how to create automated unit tests which can be used to exercise K2.net workflow process in both ASP.net and InfoPath.&amp;nbsp; Creating automated testing or simulation with K2.net 2003 may seem difficult to do but is easy when using Visual Studio 2005 Test Projects.&amp;nbsp; Creating unit tests with Visual Studio is no different than creating a custom web page that uses the K2ROM to finish a worklist item that has been assigned to a user.&amp;nbsp; In this case instead of embedding code into an .aspx code behind we are going to put the code into a test method.&lt;/P&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:16pt;FONT-FAMILY:'Arial','sans-serif';mso-fareast-font-family:'Times New Roman';mso-font-kerning:18.0pt;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;&lt;/B&gt;
&lt;H1&gt;&lt;A class="" title=_Toc174166436 name=_Toc174166436&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;2.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class=style1 style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;Create a K2.net Process&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H1&gt;
&lt;P class=MsoNormal&gt;The following K2.net process is a standard approve/deny process.&amp;nbsp; This particular screenshot shows an approval process using ASP.net.&amp;nbsp; This process would be initiated by a custom ASP.net page or a K2.net 2003 SmartForm PlanPage.&amp;nbsp; There would then be a second web page which the Manager would use to approve the process instance. &amp;nbsp;Finally an email would be sent out based on the Manager’s decision.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;IMG style="WIDTH:442px;HEIGHT:511px;" height=511 src="http://k2underground.com/photos/articles/images/17918/original.aspx" width=442&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;An assumption is made that the reader knows how to create a basic workflow.&amp;nbsp; The specific details of setting destination users, configuring line rules, configuring email, etc. will not be covered.&lt;/P&gt;&lt;B&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE:14pt;FONT-FAMILY:'Arial','sans-serif';mso-fareast-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/B&gt;
&lt;H2&gt;&lt;A class="" title=_Toc174166437 name=_Toc174166437&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;2.1.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-STYLE:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;Adding a Test ID Data Field&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;The Visual Studio Test Project will require an identifier to correlate the K2.net process instance with the test instance.&amp;nbsp; K2.net generates an identifier called a Serial Number that uniquely identifies every process, activity and event instance.&amp;nbsp; To achieve this we will add a Data Field to the Process by going to the Properties of the Process, clicking on Data Fields and adding a string type called AutomatedTestID.&amp;nbsp; The value will be generated by the Unit Test and set through the K2ROM which will be discussed later.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/17919/original.aspx"&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;&lt;B&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE:14pt;FONT-FAMILY:'Arial','sans-serif';mso-fareast-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/B&gt;
&lt;H2&gt;&lt;A class="" title=_Toc174166438 name=_Toc174166438&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;2.2.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-STYLE:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;Add Approval Data Field&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;For the purposes of this article we will add an Approve Data Field to the Manager Approval activity.&amp;nbsp; This will be used by the manager to approve or deny the workflow.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/17920/original.aspx"&gt;&lt;/P&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:16pt;FONT-FAMILY:'Arial','sans-serif';mso-fareast-font-family:'Times New Roman';mso-font-kerning:18.0pt;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;&lt;/B&gt;
&lt;H1&gt;&lt;A class="" title=_Toc174166439 name=_Toc174166439&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;3.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class=style1 style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;Create Visual Studio Test Project&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H1&gt;
&lt;P class=MsoNormal&gt;Start Visual Studio 2005 and select File, then new Project.&amp;nbsp; In the New Project window select the programming language of choice (in this case C#) and the select the Test option.&amp;nbsp; Within this select Test Project and place the project in a location.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/17921/original.aspx"&gt;&lt;/P&gt;&lt;B&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE:14pt;FONT-FAMILY:'Arial','sans-serif';mso-fareast-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/B&gt;
&lt;H2&gt;&lt;A class="" title=_Toc174166440 name=_Toc174166440&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;3.1.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-STYLE:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;Configuring the Test Project&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;The following will be created for you by default.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/17922/original.aspx"&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;First rename the default class UnitTest1 to SimpleWorkflowTest by right clicking the filename in the Solution Explorer and selecting rename.&amp;nbsp; After renaming the file you will be prompted to rename all references; select yes. &lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Next add a reference to the K2ROM by right clicking the References node in the Solution Explorer and selecting Add Reference.&amp;nbsp; In the Add Reference window select the Browse tab and go to &amp;lt;replace with drive&amp;gt;\Program Files\K2.net 2003\Bin and select the K2ROM.dll.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;IMG style="WIDTH:467px;HEIGHT:382px;" height=382 src="http://k2underground.com/photos/articles/images/17923/original.aspx" width=467&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;&lt;SPAN style="FONT-SIZE:12pt;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;
&lt;P class=MsoNormal&gt;The resulting project should look like the following.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/17924/original.aspx"&gt;&lt;/P&gt;&lt;B&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE:14pt;FONT-FAMILY:'Arial','sans-serif';mso-fareast-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/B&gt;
&lt;H2&gt;&lt;A class="" title=_Toc174166441 name=_Toc174166441&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;3.2.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-STYLE:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;Create Test Methods&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;To simulate this workflow we need to create two test methods.&amp;nbsp; Note the methods must be decorated with the &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;[&lt;SPAN style="COLOR:teal;"&gt;TestMethod&lt;/SPAN&gt;]&lt;/SPAN&gt; attribute and the class with &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;[&lt;SPAN style="COLOR:teal;"&gt;TestClass&lt;/SPAN&gt;]&lt;/SPAN&gt;.&amp;nbsp;&amp;nbsp; If these are not present neither the class nor its methods will be used when the unit test is executed.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;First rename &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;TestMethod1()&lt;/SPAN&gt; to &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;SimpleApprovalTest()&lt;/SPAN&gt;.&amp;nbsp; Next add two method stubs one called &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;StartSimpleWorkflow()&lt;/SPAN&gt; and the other called &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;ManagerApproval()&lt;/SPAN&gt;.&amp;nbsp; Notice that both of these methods have not been decorated with &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;[&lt;SPAN style="COLOR:teal;"&gt;TestMethod&lt;/SPAN&gt;]&lt;/SPAN&gt; attribute.&amp;nbsp; They will be executed by Visual Studio because &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;SimpleApprovalTest()&lt;/SPAN&gt; is the entry point and has the &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;[&lt;SPAN style="COLOR:teal;"&gt;TestMethod&lt;/SPAN&gt;]&lt;/SPAN&gt; attribute.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/17925/original.aspx"&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;&lt;B&gt;&lt;I&gt;&lt;SPAN style="FONT-SIZE:14pt;FONT-FAMILY:'Arial','sans-serif';mso-fareast-font-family:'Times New Roman';mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;&lt;/I&gt;&lt;/B&gt;
&lt;H2&gt;&lt;A class="" title=_Toc174166442 name=_Toc174166442&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;3.3.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-STYLE:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;SimpleApprovalTest Method&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;Once we have our stub set up, a unique identifier needs to be generated for the unit test instance which will be used to correlate to the K2.net process instance.&amp;nbsp; Modify &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;SimpleApprovalTest()&lt;/SPAN&gt; to generate a GUID and pass that value down into both &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;StartSimpleWorkflow()&lt;/SPAN&gt; and &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;ManagerApproval()&lt;/SPAN&gt;.&amp;nbsp; &lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [&lt;SPAN style="COLOR:teal;"&gt;TestMethod&lt;/SPAN&gt;]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;public&lt;/SPAN&gt; &lt;SPAN style="COLOR:blue;"&gt;void&lt;/SPAN&gt; SimpleApprovalTest() {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="COLOR:green;"&gt;//Create Test Instance GUID&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt; testInstance = &lt;SPAN style="COLOR:blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt;();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Start the process&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartSimpleWorkflow(testInstance);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Give K2 server time to create process instance&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.Threading.&lt;SPAN style="COLOR:teal;"&gt;Thread&lt;/SPAN&gt;.Sleep(2000);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Approve the process&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ManagerApproval(testInstance);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Both of these methods will need to have their signatures modified to accept the GUID.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;private&lt;/SPAN&gt; &lt;SPAN style="COLOR:blue;"&gt;void&lt;/SPAN&gt; StartSimpleWorkflow(&lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt; testInstance) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;private&lt;/SPAN&gt; &lt;SPAN style="COLOR:blue;"&gt;void&lt;/SPAN&gt; ManagerApproval(&lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt; testInstance) { &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Note the &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;System.Threading.&lt;SPAN style="COLOR:teal;"&gt;Thread&lt;/SPAN&gt;.Sleep(2000)&lt;/SPAN&gt; was added to give K2.net server a little time between activities.&amp;nbsp; Depending on your testing server performance, this value may need to be modified or this line could be completely removed. &lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;&lt;A class="" title=_Toc174166443 name=_Toc174166443&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;3.4.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-STYLE:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;StartSimpleWorkflow Test Method&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;Add the following statement &lt;SPAN style="FONT-SIZE:10pt;COLOR:blue;FONT-FAMILY:'Courier New';"&gt;using&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt; SourceCode.K2ROM; &lt;/SPAN&gt;in the class.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Add the following code to the &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;StartSimpleWorkflow(&lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt; testInstance) &lt;/SPAN&gt;method which will create a new process instance using the K2ROM.&amp;nbsp; This method opens a connection to the K2.net server, sets the GUID to the process instance and folio name, and finally starts the process.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;private&lt;/SPAN&gt; &lt;SPAN style="COLOR:blue;"&gt;void&lt;/SPAN&gt; StartSimpleWorkflow(&lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt; testInstance) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;string&lt;/SPAN&gt; connectionString;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;string&lt;/SPAN&gt; k2Server;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN style="COLOR:blue;"&gt;string&lt;/SPAN&gt; processName;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:teal;"&gt;Connection&lt;/SPAN&gt; conn = &lt;SPAN style="COLOR:blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR:teal;"&gt;Connection&lt;/SPAN&gt;();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Recommend moving thses values to app.config file&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectionString = &lt;SPAN style="COLOR:maroon;"&gt;"CONNECTION STRING"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; k2Server = &lt;SPAN style="COLOR:maroon;"&gt;"SERVER NAME"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; processName = &lt;SPAN style="COLOR:maroon;"&gt;"SimpleApproval\\SimpleApproval"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Open K2 Connection&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn.Open(k2Server, connectionString);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Create Process Instance&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:teal;"&gt;ProcessInstance&lt;/SPAN&gt; process = conn.CreateProcessInstance(processName);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Set the test instance id&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; process.DataFields[&lt;SPAN style="COLOR:maroon;"&gt;"AutomatedTestID"&lt;/SPAN&gt;].Value = testInstance.ToString();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Set K2 Folio Name&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; process.Folio = &lt;SPAN style="COLOR:maroon;"&gt;"Test Simple Approval "&lt;/SPAN&gt; + testInstance.ToString();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Start the process&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn.StartProcessInstance(process);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;catch&lt;/SPAN&gt; (&lt;SPAN style="COLOR:teal;"&gt;Exception&lt;/SPAN&gt; ex) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;// failed validation&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:teal;"&gt;Assert&lt;/SPAN&gt;.Fail(&lt;SPAN style="COLOR:maroon;"&gt;"The process failed: "&lt;/SPAN&gt; + ex.Message);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;finally&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn.Close();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;&lt;A class="" title=_Toc174166444 name=_Toc174166444&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;3.5.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-STYLE:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;ManagerApproval Test Method&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;In this method a connection is made to the K2.net server and the Worklist for the Manager is opened.&amp;nbsp; This is done by using the &lt;SPAN style="FONT-SIZE:10pt;COLOR:teal;FONT-FAMILY:'Courier New';"&gt;WorklistCriteria&lt;/SPAN&gt; object to query for the &lt;SPAN style="FONT-SIZE:10pt;COLOR:teal;FONT-FAMILY:'Courier New';"&gt;WorklistItem&lt;/SPAN&gt; that has test instance GUID set in its process data field.&amp;nbsp; This is done by using a &lt;SPAN style="FONT-SIZE:10pt;COLOR:teal;FONT-FAMILY:'Courier New';"&gt;WorklistCriteria&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt; &lt;/SPAN&gt;with a filter. &amp;nbsp;When the &lt;SPAN style="FONT-SIZE:10pt;COLOR:teal;FONT-FAMILY:'Courier New';"&gt;WorklistItem&lt;/SPAN&gt; is returned the activity instance data field is set to “approve” and the &lt;SPAN style="FONT-SIZE:10pt;COLOR:teal;FONT-FAMILY:'Courier New';"&gt;WorklistItem&lt;/SPAN&gt; is subsequently finished.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:blue;FONT-FAMILY:'Courier New';"&gt;private&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt; &lt;SPAN style="COLOR:blue;"&gt;void&lt;/SPAN&gt; ManagerApproval(&lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt; testInstance) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;string&lt;/SPAN&gt; connectionString;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;string&lt;/SPAN&gt; k2Server;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:teal;"&gt;Connection&lt;/SPAN&gt; conn = &lt;SPAN style="COLOR:blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR:teal;"&gt;Connection&lt;/SPAN&gt;();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:teal;"&gt;Worklist&lt;/SPAN&gt; workList;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:teal;"&gt;WorklistCriteria&lt;/SPAN&gt; workListCriteria = &lt;SPAN style="COLOR:blue;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="COLOR:teal;"&gt;WorklistCriteria&lt;/SPAN&gt;();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;try&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Recommend moving thses values to app.config file&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; connectionString = &lt;SPAN style="COLOR:maroon;"&gt;"CONNECTION STRING"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; k2Server = &lt;SPAN style="COLOR:maroon;"&gt;"SERVER NAME"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Open K2 Connection&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;conn.Open(k2Server, connectionString);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Retrieve the test manager's worklist items&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; workListCriteria.AddFilterField(&lt;SPAN style="COLOR:teal;"&gt;WCLogical&lt;/SPAN&gt;.And, &lt;SPAN style="COLOR:teal;"&gt;WCField&lt;/SPAN&gt;.ProcessData, &lt;SPAN style="COLOR:maroon;"&gt;"AutomatedTestID"&lt;/SPAN&gt;, &lt;SPAN style="COLOR:teal;"&gt;WCCompare&lt;/SPAN&gt;.Equal, testInstance.ToString());&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; workList = conn.OpenWorklist(workListCriteria);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Find the worklist item with the test identifier in it&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;foreach&lt;/SPAN&gt; (&lt;SPAN style="COLOR:teal;"&gt;WorklistItem&lt;/SPAN&gt; workListItem &lt;SPAN style="COLOR:blue;"&gt;in&lt;/SPAN&gt; workList) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Set the process for approval&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;workListItem.ActivityInstanceDestination.DataFields[&lt;SPAN style="COLOR:maroon;"&gt;"Approve"&lt;/SPAN&gt;].Value = &lt;SPAN style="COLOR:maroon;"&gt;"Approve"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;//Finish the worklist item&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; workListItem.Finish();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;catch&lt;/SPAN&gt; (&lt;SPAN style="COLOR:teal;"&gt;Exception&lt;/SPAN&gt; ex) {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:green;"&gt;// failed validation&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:teal;"&gt;Assert&lt;/SPAN&gt;.Fail(&lt;SPAN style="COLOR:maroon;"&gt;"The process failed: "&lt;/SPAN&gt; + ex.Message);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="COLOR:blue;"&gt;finally&lt;/SPAN&gt; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; conn.Close();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;3.6.&lt;/SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-STYLE:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-STYLE:normal;mso-fareast-font-family:'Times New Roman';"&gt;More Test Methods&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H2&gt;
&lt;P class=MsoNormal&gt;More test methods could be created in a similar fashion. &amp;nbsp;For instance a similar test method could be created for the denial path.&amp;nbsp; As well if the workflow had multiple steps every step in the process could have a method created and chained to one another to fully test the entire workflow and every possible path it could take.&lt;/P&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:16pt;FONT-FAMILY:'Arial','sans-serif';mso-fareast-font-family:'Times New Roman';mso-font-kerning:18.0pt;mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA;"&gt;&lt;BR style="PAGE-BREAK-BEFORE:always;"&gt;&lt;/SPAN&gt;&lt;/B&gt;
&lt;H1&gt;&lt;A class="" title=_Toc174166445 name=_Toc174166445&gt;&lt;/A&gt;&lt;SPAN class=style1 style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;4.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN class=style1 style="FONT-WEIGHT:normal;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class=style1 style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;Deployment&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H1&gt;
&lt;P class=MsoNormal&gt;It is &lt;B&gt;highly recommended&lt;/B&gt; that this not be done on a production K2.net server.&amp;nbsp; A K2.net testing server should be used to run the unit tests on.&amp;nbsp; The reason is that these test process instances will be intermingled with production instances.&amp;nbsp; Having these instances in there will subsequently throw off or dilute reports provided in the K2.net Workspace.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Deployment of the SimpleWorkflow would be the same as any other K2.net process using the Export functionality in K2.net Studio.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;&lt;A class="" title=_Toc174166446 name=_Toc174166446&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;5.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class=style1 style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;InfoPath Testing&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H1&gt;
&lt;P class=MsoNormal&gt;It is possible to test InfoPath process in K2.net visual studio as well.&amp;nbsp; In the Visual Studio Test Project, add a reference to the InfoPathService web service.&amp;nbsp; &lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Change the &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;StartSimpleWorkflow(&lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt; testInstance) &lt;/SPAN&gt;method and remove all of the code associated to the K2ROM.&amp;nbsp; Instead call the SubmitInfoPathData method of the InfoPathService web service.&amp;nbsp; Generate the XML for the InfoPath form and pass that into SubmitInfoPathData webmethod.&amp;nbsp; To get a sample of this XML, open an InfoPath that has been K2.net enabled and save it locally.&amp;nbsp; Then open the .Xml file in a text editor and copy the Xml into the Visual Studio.&amp;nbsp; That Xml string can be passed into SubmitInfoPathData.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Next in &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;ManagerApproval(&lt;SPAN style="COLOR:teal;"&gt;Guid&lt;/SPAN&gt; testInstance) &lt;/SPAN&gt;remove the following line of code.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;workListItem.ActivityInstanceDestination.DataFields[&lt;SPAN style="COLOR:maroon;"&gt;"Approve"&lt;/SPAN&gt;].Value = &lt;SPAN style="COLOR:maroon;"&gt;"Approve"&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Instead use this line of code to retrieve the XML for the InfoPath Form.&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-SIZE:10pt;COLOR:blue;FONT-FAMILY:'Courier New';"&gt;string&lt;/SPAN&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt; infoPathXml = workListItem.ActivityInstanceDestination.XmlFields[&lt;SPAN style="COLOR:maroon;"&gt;"K2InfoPathSchema"&lt;/SPAN&gt;].Value;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;Once the Xml has been retrieved, modify it (setting it to Approved) and call SubmitInfoPathData webmethod again passing in the Xml.&amp;nbsp; Do not set the Xml back into &lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Courier New';"&gt;workListItem.ActivityInstanceDestination.XmlFields[&lt;SPAN style="COLOR:maroon;"&gt;"K2InfoPathSchema"&lt;/SPAN&gt;]&lt;/SPAN&gt; because this would not accurately test the process as InfoPath will always call the web service.&lt;/P&gt;
&lt;H1&gt;&lt;A class="" title=_Toc174166447 name=_Toc174166447&gt;&lt;/A&gt;&lt;SPAN style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;6.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN style="FONT-WEIGHT:normal;FONT-SIZE:7pt;FONT-FAMILY:'Times New Roman','serif';mso-fareast-font-family:'Times New Roman';"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class=style1 style="FONT-WEIGHT:normal;mso-fareast-font-family:'Times New Roman';"&gt;Conclusions&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="mso-fareast-font-family:'Times New Roman';"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/H1&gt;
&lt;P class=MsoNormal&gt;Very sophisticated testing processes can be done in this manner testing multiple steps and every permutations of the workflow.&amp;nbsp; Load testing can be done as well by creating multiple unit test instances to identify bottlenecks in the workflow process.&amp;nbsp; Bottlenecks could be sometimes be hardware specific, a connection to an external system may be too slow, tables in a database require indexes, etc.&amp;nbsp; Using this methodology it is possible to completely test your K2.net processes without writing any ASP.net or InfoPath front-ends.&amp;nbsp; This will create a highly decoupled solution and is considered a best practice. &lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal&gt;This article was written by Jason Apergis from RDA Corporation.&amp;nbsp; You can find out more information about them below:&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;RDA Corporation&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;RDA provides business and technology solutions through custom application and software development for all types of companies. Our experienced staff employs a proven process to help our clients reduce costs, improve results, increase profitability, reduce time to market, develop new business opportunities, mitigate risks, and increase efficiency.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;RDA specializes in .NET and Java solutions in the areas of business intelligence; communication and collaboration; enterprise application integration; mobility; operational efficiency and productivity; portals; and security.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;RDA is a&amp;nbsp;Microsoft Gold Certified Partner in Business Process and Integration, Custom Development (Web and Application Infrastructure), Data Management (Business Intelligence), Information Worker, and Mobility solutions. In addition, RDA has been named Microsoft Partner of the Year four times: for Microsoft's East Region in 2007, for Microsoft's Southeast District in 2007 and 2005, and for Microsoft's Mid-Atlantic District in 2004.&amp;nbsp;This award is presented to the partner having the greatest impact on Microsoft’s business with metrics based on partner services revenue, engagement volume, and customer satisfaction. A winner of Microsoft’s Integration Solution of the Year award, RDA is also a part of Microsoft’s Virtual Technology Specialist Program as well as a go-to partner for Microsoft’s Enterprise Service Bus offerings.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;SPAN style="FONT-SIZE:10pt;FONT-FAMILY:'Arial','sans-serif';"&gt;RDA has developed innovative technology solutions for a broad and diverse client base since its founding in 1988. Detailed case studies organized by industry, solution and technology type reside on our corporate website at &lt;A href="http://www.rdacorp.com/"&gt;www.rdacorp.com&lt;/A&gt;. Headquartered in Baltimore, RDA also has offices in Atlanta, Charlotte, Philadelphia, Seattle, and Washington, DC.&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://k2underground.com/aggbug.aspx?PostID=17926" width="1" height="1"&gt;</content><author><name>chrisg</name><uri>http://k2underground.com/members/chrisg/default.aspx</uri></author></entry><entry><title>Moss and Workflow Security</title><link rel="alternate" type="text/html" href="/blogs/articles/archive/2007/07/11/moss-and-workflow-security.aspx" /><id>/blogs/articles/archive/2007/07/11/moss-and-workflow-security.aspx</id><published>2007-07-12T04:01:00Z</published><updated>2007-07-12T04:01:00Z</updated><content type="html">


&lt;FONT face=Calibri size=3&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;There are numerous ways of setting up and securing your MOSS environment from server hardening to IPSEC and SSL.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Going through all of these&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;are not the focus of this article.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However &lt;A class="" title=_Toc152931260 name=_Toc152931260&gt;&lt;/A&gt;this article will go through an overview of Moss.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Next I will go into the security model, give an overview of the permissions and how they operate, including touching on what’s new.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I will provide you with a matrix of the permissions, permission levels and groups to help you plan your security options.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Then I will give you details on how to customize permissions and break free from the default permission inheritance.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Then I will go into how all that we have gone over will affect workflow, including starting, participating and reporting.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Then I will provide some wrap up and summary to ensure a complete picture is had.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;So What is MOSS&lt;/B&gt;&lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;“Microsoft Office SharePoint Server 2007 is the successor to SharePoint Portal Server 2003 which provides&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;server capabilities such as comprehensive content management , enterprise search,&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;and collaboration.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;MOSS also provides professionals and developers with a solid platform to take advantage of and build MOSS based applications or extensions.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931261 name=_Toc152931261&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;What’s new in MOSS from a security perspective?&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Good&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Better 3 Tiered security Model&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; New more extensive permissions.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Better&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Central administrators no longer have full access to content.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;(however they can take ownership, but then would be audited and logged)&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Rights Masking.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Administrators can remove certain rights from even being available to site administrators to grant. Such as “Manage Alerts”&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Best&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Security Trimmed user interface.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;If you don’t have rights you don’t see it!&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;4.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;U&gt;ITEM LEVEL GRANULAR ACCESS&lt;o:p&gt;&lt;/o:p&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;To better understand security in MOSS let’s talk about the basic security Model that makes up MOSS.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;MOSS now has a true 3-tier administrative model.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is going to make things easier for organizations to separate portions of administration and roles.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;The 3 tiers are 1. Farm Administration 2. Shared Services administration and 3. Content administration.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;As shown in (figure 1)&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931262 name=_Toc152931262&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;Overview of MOSS security Model&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;IMG style="WIDTH:320px;HEIGHT:240px;" height=240 src="http://k2underground.com/photos/articles/images/16575/original.aspx" width=320&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Figure 1.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931263 name=_Toc152931263&gt;&lt;/A&gt;&lt;B&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;The Layers&lt;/B&gt;&lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931264 name=_Toc152931264&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Farm Administration&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931265 name=_Toc152931265&gt;&lt;/A&gt;&lt;SPAN style="mso-bidi-font-weight:bold;mso-bidi-font-style:italic;"&gt;Those who are in this role are responsible for the maintenance of all servers that make up a designated farm.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Members of this group have the rights to perform all tasks in the Central Administration website.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It is important to note that this group will not have access to the sites or the content inside them by default.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However it is possible for members of this group to obtain these rights through the administrative interface &lt;B&gt;&lt;I&gt;by adding themselves as a site collection administrator&lt;/I&gt;&lt;/B&gt;.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;However this action will be audited and logged and provide for a evidence trail if this access was inappropriately used.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;B&gt;&lt;I&gt;Another important note for farm administration is that &lt;/I&gt;&lt;/B&gt;by default the local administrators group can perform all administrative tasks and more including deploying new applications, or web parts, and, creating additional web applications. However as with Farm Administrators they have no access to content without explicitly taking action.&lt;/SPAN&gt;&lt;SPAN style="mso-bidi-font-weight:bold;mso-bidi-font-style:italic;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931266 name=_Toc152931266&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Shared Services and Shared Services Providers(SSP):&lt;/B&gt;&lt;/SPAN&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;First off what is SSP?&lt;/P&gt;
&lt;UL style="MARGIN-TOP:0in;"&gt;
&lt;LI class=MsoNormal style="MARGIN:0in 0in 10pt;mso-list:l0 level1 lfo1;tab-stops:list .5in;"&gt;&amp;nbsp;SSPs are for managing a set of services such as&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;searching and indexing, my site hosting, Usage Reporting, Excel Services, and Business Data Catalog Configuration &lt;/LI&gt;
&lt;LI class=MsoNormal style="MARGIN:0in 0in 10pt;mso-list:l0 level1 lfo1;tab-stops:list .5in;"&gt;The SSP administration interface is a Site &lt;/LI&gt;
&lt;LI class=MsoNormal style="MARGIN:0in 0in 10pt;mso-list:l0 level1 lfo1;tab-stops:list .5in;"&gt;An SSP by default is a separate web app from the other web apps extended with SharePoint Technology &lt;/LI&gt;
&lt;LI class=MsoNormal style="MARGIN:0in 0in 10pt;mso-list:l0 level1 lfo1;tab-stops:list .5in;"&gt;SSP administration is not available with WSS &lt;/LI&gt;&lt;/UL&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;SSP administrators&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;can control which services are included in a Shared Services Provider (SSP) and configure settings for those services. Example tasks can include&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configurable portal usage reporting&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuring permissions for specific services such as search, Excel services etc.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;
&lt;TABLE class=MsoNormalTable style="mso-cellspacing:0in;mso-yfti-tbllook:1184;mso-padding-alt:0in 0in 0in 0in;" cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;

&lt;TR style="mso-yfti-irow:0;mso-yfti-firstrow:yes;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#bbbbbb 1pt dashed;PADDING-RIGHT:0in;BORDER-TOP:#bbbbbb 1pt dashed;PADDING-LEFT:8.25pt;PADDING-BOTTOM:0in;BORDER-LEFT:#bbbbbb 1pt dashed;PADDING-TOP:0in;BORDER-BOTTOM:#bbbbbb 1pt dashed;BACKGROUND-COLOR:transparent;mso-border-alt:dashed #BBBBBB .75pt;"&gt;&lt;FONT size=3&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:1;mso-yfti-lastrow:yes;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#bbbbbb 1pt dashed;PADDING-RIGHT:0in;BORDER-TOP:#bbbbbb 1pt dashed;PADDING-LEFT:13.5pt;PADDING-BOTTOM:0in;BORDER-LEFT:#bbbbbb 1pt dashed;PADDING-TOP:0.75pt;BORDER-BOTTOM:#bbbbbb 1pt dashed;BACKGROUND-COLOR:transparent;mso-border-alt:dashed #BBBBBB .75pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&lt;FONT size=3&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#bbbbbb 1pt dashed;PADDING-RIGHT:0in;BORDER-TOP:#bbbbbb 1pt dashed;PADDING-LEFT:8.25pt;PADDING-BOTTOM:0in;BORDER-LEFT:#bbbbbb 1pt dashed;PADDING-TOP:0in;BORDER-BOTTOM:#bbbbbb 1pt dashed;BACKGROUND-COLOR:transparent;mso-border-alt:dashed #BBBBBB .75pt;"&gt;&lt;FONT size=3&gt;&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931267 name=_Toc152931267&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Content:&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;These are all your site collections, sites, lists, document libraries etc.&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Administration at this level is made up of Site collection administrator and Site Owners:&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Site collection administrators:&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Members of the site collection administrators group will have full Control permissions&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;on all web sites within a site collection. This means that they have access to content in all sites in that site collection, even if they do not have explicit permissions on that site. &lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Site owners:&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;By default, members of the Site owners group has the full Control permissions on that site. They can perform administration tasks for the site, and for any list or library within that site.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Keep in mind that every site collection is an island of security.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;What I do in my site collection will not affect your site collection.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;By default a child site will automatically inherit the permissions of its parent. Unless the permission inheritance is stopped and that site “breaks free” which I will speak to shortly.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;For general site content the site administrator should assign appropriate permissions within the site to various document libraries, lists, wiki’s etc.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;If the security model is such that there are people who maintain specific lists it would be their job to further restrict and maintain permissions for their various list items.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;By default all lists and libraries will inherit the site permissions, however the list owner can then further restrict or open up access based on need.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Another aspect of administration and rights is the Web Application.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;While the web application level does not have a dedicated “Web Application Administrators” group however Members of the “Farm Administrators” in addition to those local administrators do have the ability to define a “Web application policy” to grant people access at this level.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Be careful with granting this because adding in people in at this level does give them access to the content contained within that web application.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;I&gt;So how do permissions work in MOSS? Lets Identify some common security terms and concepts.&lt;/I&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;I&gt;&lt;U&gt;Permissions: &lt;/U&gt;&lt;/I&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;These&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;individual permissions (of which there are 33) will grant a certain ability to perform specific actions.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;As an example Edit Personal&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;User information, this right once granted will allow the granted user to modify their own user information such as updating their picture.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In addition the list or possible permissions that can be granted can be “masked” so that they are unable to be granted to any user.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;I style="mso-bidi-font-style:normal;"&gt;&lt;U&gt;Permission Levels:&lt;/U&gt;&lt;/I&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;These are essentially a defined set of permissions to perform related actions.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;For example the contribute level contains many rights such as Add items, Edit Items, Delete items and others.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;For a complete matrix see figure x.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Similar permissions can be included in numerous levels and the existing levels can be customized to meet the needs of the environment.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However I would recommend creating new levels rather than editing the default out of the box levels.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Each of these permissions levels are also inheritable to child sites.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;I style="mso-bidi-font-style:normal;"&gt;&lt;U&gt;User:&lt;/U&gt;&lt;/I&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is a person that can be authenticated through whatever authentication provider that is available, in MOSS you are no longer restricted to AD.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;These users can be assigned permissions levels by themselves or they can be part of a broader group that gets assigned certain permissions levels.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Going the group route is a far better choice.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;I style="mso-bidi-font-style:normal;"&gt;&lt;U&gt;Groups:&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/U&gt;&lt;/I&gt;This is a collection of users.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;A group in the SharePoint context can be a SharePoint group such as “Site Owners” or can be an Active Directory group such as “Accounting Department” &lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;I style="mso-bidi-font-style:normal;"&gt;&lt;U&gt;Securable Objects&lt;/U&gt;&lt;/I&gt; – The above mentioned users and groups are going to have certain permissions levels for a specific securable object: such as a document library, a task list or any SharePoint item.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;By default these permissions are automatically set to inherit from their parent site.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This can be changed however be very careful when doing this as it adds more administrative overhead.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;There are some new securable objects available to administrators in MOSS they are&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Website&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Lists&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Libraries&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Folders&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Documents or files&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Getting into the permissions themselves in detail, hopefully the permission matrices in the following sections help in planning your strategy.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;There some additional new permissions available to be used.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;New Permissions:&lt;o:p&gt;&lt;/o:p&gt;&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;
&lt;TABLE class=MsoNormalTable style="BORDER-RIGHT:medium none;BORDER-TOP:medium none;BORDER-LEFT:medium none;BORDER-BOTTOM:medium none;BORDER-COLLAPSE:collapse;mso-yfti-tbllook:1184;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-top-alt:solid #4F81BD 1.0pt;mso-border-bottom-alt:solid #4F81BD 1.0pt;" cellSpacing=0 cellPadding=0 class="MsoNormalTable"&gt;

&lt;TR style="mso-yfti-irow:0;mso-yfti-firstrow:yes;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;BACKGROUND-COLOR:transparent;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Permission&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Comments&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:1;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Approve Items&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:2;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Delete Versions&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:3;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;View Versions&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:4;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Open Items&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:5;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;View Forms Pages&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Turned off by default for publishing features in Office “12” Server.&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:6;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Create Alerts&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:7;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Use Remote API’s&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Turned off by default for publishing features in Office “12” Server.&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:8;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Manage Alerts &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;(was manage Subscriptions)&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:9;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Browse User Information&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:10;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Create Groups &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT class=style1 face=Calibri size=3&gt;(Was&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;create cross site groups)&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:11;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Manage Permissions &lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;(Was manage Website)&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="mso-yfti-irow:12;mso-yfti-lastrow:yes;"&gt;
&lt;TD class=style2 style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:260.7pt;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;BACKGROUND-COLOR:transparent;" class="style2"&gt;
&lt;P class=style2 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Open Container&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:218.1pt;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=style1 style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri&gt;Allows users or groups to open the parent site of a list/library or the parent list/library for a folder or item/document so that they can view the list/library or folder or item/document to which they have been granted access. Required for fine-grained permissions&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;&lt;U&gt;Permissions to Permissions Level Matrix &lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;
&lt;TABLE class=style1 style="BORDER-RIGHT:medium none;BORDER-TOP:medium none;MARGIN:2.75pt 6.75pt;BORDER-LEFT:medium none;BORDER-BOTTOM:medium none;BORDER-COLLAPSE:collapse;mso-yfti-tbllook:1184;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-top-alt:solid #4F81BD 1.0pt;mso-border-bottom-alt:solid #4F81BD 1.0pt;mso-table-lspace:9.0pt;mso-table-rspace:9.0pt;mso-table-anchor-vertical:paragraph;mso-table-anchor-horizontal:margin;mso-table-left:center;mso-table-top:18.65pt;mso-table-tspace:5.0pt;mso-table-bspace:5.0pt;" cellSpacing=0 cellPadding=0 align=left class="style1"&gt;

&lt;TR style="HEIGHT:18.75pt;mso-yfti-irow:0;mso-yfti-firstrow:yes;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Permission/Permission Level&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Full Control&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Design&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Contribute&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Read&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Limited Access&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Approve&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Manage Hierarchy&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:18.75pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Restricted Read&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:1;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;List Permissions&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:2;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Add Items&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:3;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Approve Items&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:4;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Create Alerts&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:5;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Delete Items&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:6;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Delete Versions&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:7;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Edit Items&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:8;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Manage Lists&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:9;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Open Items&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:10;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Override Check Out&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:11;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;View Application Pages&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:12;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;View Items&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:13;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;View Versions&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:14;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Site Permissions&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:15;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Add and Customize Pages&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:16;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Apply Style Sheets&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:17;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Apply Themes and Borders&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:18;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Browse Directories&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:19;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Browse User Information&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:20;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Create Groups&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:21;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Create Subsites&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:22;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Edit Personal User Information&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:23;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Enumerate Permissions&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:24;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Manage Alerts&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:25;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Manage Permissions&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:26;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Manage Web Site&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:27;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Open&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:28;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;A class="" title=_Hlk152556992 name=_Hlk152556992&gt;&lt;/A&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Use Client Integration Features&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&amp;nbsp; &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:29;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Use Remote Interfaces&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;SPAN&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:30;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Use Self-Service Site Creation&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:31;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;View Pages&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:32;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;View Usage Data&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:33;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Personal Permissions&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:34;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Add/Remove Private Web Parts&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:35;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Manage Personal Views&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:15pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:15pt;mso-yfti-irow:36;mso-yfti-lastrow:yes;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Update Personal Web Parts&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;mso-element:frame;mso-element-frame-hspace:9.0pt;mso-element-wrap:around;mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;mso-element-left:center;mso-element-top:18.65pt;mso-height-rule:exactly;mso-element-frame-vspace:5.0pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE class=style1 style="BORDER-RIGHT:medium none;BORDER-TOP:medium none;MARGIN:auto auto auto -38.3pt;BORDER-LEFT:medium none;BORDER-BOTTOM:medium none;BORDER-COLLAPSE:collapse;mso-yfti-tbllook:1184;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-top-alt:solid #4F81BD 1.0pt;mso-border-bottom-alt:solid #4F81BD 1.0pt;" cellSpacing=0 cellPadding=0 class="style1"&gt;

&lt;TR style="HEIGHT:33.5pt;mso-yfti-irow:0;mso-yfti-firstrow:yes;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Full Control&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Design&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;WIDTH:53.65pt;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Contribute&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Read&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Limited Access&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Approve&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Manage Hierarchy&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#4f81bd 1pt solid;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:33.5pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Restricted Read&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:1;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:17.15pt;mso-yfti-irow:2;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Regular website&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:3;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Approvers&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:4;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Designers&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:5;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Hierarchy Managers&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:6;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Quick Deploy Users&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:7;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Restricted Readers&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:8;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&amp;lt;Site&amp;gt; Members&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:9;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&amp;lt;Site&amp;gt; Owners&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:10;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&amp;lt;Site&amp;gt; Visitors&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:11;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;NT AUTHORITY\Authenticated Users&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:12;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:13;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:17.15pt;mso-yfti-irow:14;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Central Administration&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:15;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Farm Administrators&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:16;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;BUILTIN\Administrators&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:16.35pt;mso-yfti-irow:17;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:16.35pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:17.15pt;mso-yfti-irow:18;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;Shared Service Provider&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#ece9d8;HEIGHT:17.15pt;BACKGROUND-COLOR:transparent;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT:32.7pt;mso-yfti-irow:19;mso-yfti-lastrow:yes;"&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;FONT face=Calibri size=3&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;There are no SharePoint Groups in the SSP.&lt;BR&gt;&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Default just the (domain) administrator.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;FONT face=Calibri size=3&gt;X&lt;/FONT&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD class="" style="BORDER-RIGHT:#ece9d8;PADDING-RIGHT:5.4pt;BORDER-TOP:#ece9d8;PADDING-LEFT:5.4pt;BACKGROUND:#d3dfee;PADDING-BOTTOM:0in;BORDER-LEFT:#ece9d8;PADDING-TOP:0in;BORDER-BOTTOM:#4f81bd 1pt solid;HEIGHT:32.7pt;"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;One item to point out after reading these matrices is what “Limited Access” is. Limited Access is required for any user to use/view the common items that cross all we sites&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;such as the various navigation bars, themes etc.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is truly the base permission level, and is fairly meaningless unless you are granted other permissions. &lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;To summarize how permission work in MOSS You will have Individual permissions such as Manage Alerts.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Then you also have Groupings of permissions for common roles such as contributor which includes several individual permissions that are common to a role.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Then you can have Roles such as Member, Owner, Visitor that are assigned these permissions groups.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;You can modify and customize these in order to effectively grant and maintain effective permissions you must first understand the permissions and when each are assigned based on the default groups and permissions levels. When planning these permissions you can use the appropriate matrices you can use to better understand this.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Now that you have seen all of the permissions, and roles and have a general understanding of how these pieces work the next item to discuss is how to break away from the default permission inheritance to set your own permissions on a specific securable object.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Breaking Away&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;With the heavy inheritance model in MOSS administrators need to have a way of blocking this process.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Administrators can through the use of “Breaking away” prevent the inheritance from the parent and set a new set of permissions in their securable object.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;So If&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I have a sensitive list or library contained in a more open site I can restrict the access to my list or even child site by breaking away the permissions from my parent and not allowing it to inherit the base level of permissions, and only have the permissions I want.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In figure 2 I have clicked on edit permissions and am warned of the effects.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;IMG style="WIDTH:320px;HEIGHT:240px;" height=240 src="http://k2underground.com/photos/articles/images/16576/original.aspx" width=320&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;Figure 2&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;The fantastic part of breaking away is after I break away I can easily re-join by clicking on “inherit permissions” in the drop down menu.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;A great way of testing and rolling back.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;As shown in Figure 3&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;IMG style="WIDTH:320px;HEIGHT:240px;" height=240 src="http://k2underground.com/photos/articles/images/16577/original.aspx" width=320&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;Figure 3&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931269 name=_Toc152931269&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;How does all this affect workflow in brief?&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Since workflow in MOSS is primarily List, and document library based administrators need to plan appropriately and make sure that users who will be participating in workflow have enough permissions to effectively participate in the workflows but not too many rights that they can inappropriately take action and or effect workflow when they should not(Least Privilege principal).&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Administrators need to be aware of how security affects users ability to not only participate in workflow, but also initiate the workflow, create new workflows, view currently running workflow and view history reports on workflow.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;One item to keep in mind is that if you are going to be using SPD or the office client integration anywhere you will need to assign the following 2 permissions to anyone that will interface in that way.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use Client Integration Features&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use Remote Interfaces&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Let’s go into some of the details about each area of workflow and break each function down.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931270 name=_Toc152931270&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Security for workflow participants&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Simply participating in workflow can require different permissions based on the workflow type and what actions they may need to take.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However for most workflows involving the usual list or document library item.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Workflow participant should have at least the following rights&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Edit Items&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; View Items&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open Items&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; View Application Pages&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; View Pages&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; User Remote Interfaces &lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use Client Integration features –Required if doing workflow through office clients&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Open&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Fortunately the “Contribute” permission automatically provides all of these permissions which is part of the Site\Members group. However this permission level also adds a few more such as &lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Delete&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; View Versions&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Delete Versions&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Create alerts &lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Browse Directories&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use Self Service Site Creation&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;For this reason some organization may wish to create a specific permission level, based on a more restrictive need.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I highly recommend for at least for your confidential workflows to create your own History Lists and possibly even task lists.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;As an user that can “View” items in a list I will have the access to both view the tasks that everyone is working on as well as run reports on currently running or historical workflows, even if I was not part of that workflow.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;You will find it very difficult to modify the permissions on the default workflow history list. This is another great reason to have MOSS create a special list just for that workflow. See figure 4 below for a screenshot.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;IMG style="WIDTH:320px;HEIGHT:240px;" height=240 src="http://k2underground.com/photos/articles/images/16578/original.aspx" width=320&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;Figure 4&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931271 name=_Toc152931271&gt;&lt;/A&gt;&lt;B&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;SPAN&gt;Starting and Participating in workflow&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Essentially the same permissions that allow me to participate in a workflow will also allow me to kick one off that has already been associated. Weather this is from the SharePoint web interface or the office client interface&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;For some additional security requirements It is possible to require the “Manage Lists” permission to initiate workflow by selecting this option during association as shown in figure 5.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&lt;IMG style="WIDTH:703px;HEIGHT:223px;" height=240 src="http://k2underground.com/photos/articles/images/16579/original.aspx" width=320&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;Figure 5&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;If I have “design” or greater rights I have the ability to impact workflow even if items are not assigned to me.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;For example if I have these rights and browse to a workflow in process. I will be able to add additional people to the workflow, add comments, or even cancel it.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Simple contribute rights will not allow this to happen so give out design rights as sparingly as possible.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However even with full control permission I would not be able to “approve” an item if it were not assigned to me.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931274 name=_Toc152931274&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Reviewing&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;workflow items&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Members can see task items and look at their details even if they are not assigned to them.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Visitors can see the task item but cannot open unless they are assigned that work item.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Basically what this can mean is they can see what workflows are running, who they are assigned to the dates and descriptions.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In many cases this won’t mean much but in some it can, so it should be planned for.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931275 name=_Toc152931275&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Redirecting &lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Delegating or redirecting a workflow is part of the configuration options for each workflow as seen in figure 6.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;When planning also be aware that the person who is being re-directed to will need appropriate rights.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;So when planning the use of workflows you should plan these rights appropriately.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;IMG style="WIDTH:694px;HEIGHT:277px;" height=307 src="http://k2underground.com/photos/articles/images/16580/original.aspx" width=640&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;Figure 6&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931276 name=_Toc152931276&gt;&lt;/A&gt;&lt;B&gt;Completing Tasks&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Completing one’s own can be done even with visitor rights by default.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;There should be no additional rights necessary.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931277 name=_Toc152931277&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Creating and or Associating New Workflow&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Before one of the Out of the box workflows can be used in document library or list, that workflow must first be associated with that library or list.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However for those workflows created with SPD the association is done automatically.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;In order to associate workflows you need the designer level or if desired you can use contributor level and add the additional right of manage lists.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This will now expose and make functional the workflow settings item in the list or document library settings.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However some organizations may not want to give these rights to all those that may ask for them.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;It may be best in these cases to appoint a “workflow” role that can be assigned or delegated by the “Site Administrator”.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Another option is to create a custom permissions group that would include the necessary rights at not only the Library or list level but also for the site level.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is because even if you have full control over the list or library, you may not have the rights to associative workflow with that list as this is a site level right.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Those with the Full Control permission in a specific site or the Manage Website added to the design level can connect, and modify or create workflows via the SharePoint Designer interface.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Most organizations will place those with the need to use SPD to customize sites with the owner role.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;When this is the case, you can prevent them from modifying certain document libraries or lists by modifying the permissions “Breaking Free” and not inheriting from the site.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Once this is done if they don’t have rights they will not even be able to see it in SPD.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931281 name=_Toc152931281&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Workflow reporting&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;By default even visitors of a site can access the workflow history list and run reports which are done through excel.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;This is a great reason to create dedicated history lists and restrict rights to them. &lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;A class="" title=_Toc152931282 name=_Toc152931282&gt;&lt;/A&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Workflow Tasks&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Site visitors will still be able to see all tasks, however they would not be able to open any of them to see what their contents are.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Those with member rights will be able to look through each items.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Those with contribute rights will even be available to open the task items and action them even if they are not assigned to them.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Wrap Up&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Now that you have an idea of what is required and hopefully have some idea of the permissions needed.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Will the default levels, groups and permissions fit your organization and how your users work?&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;My guess is that they will work as is for a significant amount of customers out there.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;However their certainly are valid reasons why you would not only want to create additional permission levels but also additional groups.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;As an example if I have specific workflow needs that may be of a more sensitive nature I need to make sure that only those with a need to know have access to view ANYTHING about that workflow or the data within it.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I would need to make sure that no one even had read writes to the list itself. I would also want to create a dedicated task list and history list to ensure complete security/confidentiality.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Let’s take a look at how this would work.&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;if you were setting up a workflow for an HR group and the content of the document and or the comments etc should not be viewed by anyone other than a specific few.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;Restrict the rights on the library, create a new workflow associated with that doc library and have it create a new workflow history as well as a dedicated task list, as shown in figure 7.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;IMG style="WIDTH:708px;HEIGHT:458px;" height=629 src="http://k2underground.com/photos/articles/images/16581/original.aspx" width=1002&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B&gt;Figure 7&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;Next take the new history and task list, break it free from inheritance and apply new permissions to it restricting the permissions.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;Now you have a more secure workflow and can be assured a more advanced level of confidentiality in these workflows.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;B style="mso-bidi-font-weight:normal;"&gt;Conclusions&lt;o:p&gt;&lt;/o:p&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;So by now hopefully this makes some sense to you, there are a lot of little nuances based on different situations and you security and workflow needs.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;I feel that it is necessary to give a short wrap up/summary to ensure the core concept here is clear.&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; &lt;/SPAN&gt;What this can boil down to is a few points&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&lt;/SPAN&gt;If you have a site where you there is workflow being utilized through MOSS and there are no special security or confidentiality concerns special permissions will probably not be necessary.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If you have a site where there are possible confidentiality concerns where some members of a site should not be able to participate or see information contained in some specific workflows.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; There are new rights that can be assigned in MOSS administrators should take some extra time to determine if the default permissions and groups are appropriate for their needs.&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 10pt;"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://k2underground.com/aggbug.aspx?PostID=16582" width="1" height="1"&gt;</content><author><name>chrisg</name><uri>http://k2underground.com/members/chrisg/default.aspx</uri></author><category term="MOSS" scheme="http://k2underground.com/blogs/articles/archive/tags/MOSS/default.aspx" /></entry><entry><title>To Moss or Not To Moss</title><link rel="alternate" type="text/html" href="/blogs/articles/archive/2007/07/11/to-moss-or-not-to-moss.aspx" /><id>/blogs/articles/archive/2007/07/11/to-moss-or-not-to-moss.aspx</id><published>2007-07-11T18:04:00Z</published><updated>2007-07-11T18:04:00Z</updated><content type="html">&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651077 name=_Toc150651077&gt;&lt;/A&gt;Intro &lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651078 name=_Toc150651078&gt;&lt;/A&gt;&lt;B&gt;What is workflow&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;According to the workflow management coalition workflow is defined as: &lt;/P&gt;
&lt;P&gt;"&lt;I&gt;The automation of a business process, in whole or part, during which&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;documents, information or tasks are passed from one participant to&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;another for action, according to a set of procedural rules."&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&lt;/I&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the real world workflows are rarely "simple" and are usually made up of several individual and logical steps each of which are known as an activity. &amp;nbsp;These activities can have human involvement or might just be a piece of work a machine is responsible for. The workflows themselves will involve both human and system involvement and will also involve various branching, splitting and joining of the numerous paths taken in a process.&amp;nbsp; Don't be scared away, automating and managing a work process can provide huge returns in efficiencies, and will drive process improvement on a regular basis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651079 name=_Toc150651079&gt;&lt;/A&gt;&lt;B&gt;What is Microsoft doing in Workflow?&lt;/B&gt;&lt;B&gt; &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;/B&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651080 name=_Toc150651080&gt;&lt;/A&gt;&lt;I&gt;Workflow Foundation (WF)&lt;/I&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;For developers, and ISV's Microsoft has introduced Windows Workflow Foundation as part of the .Net framework version 3 Windows Workflow Foundation a programming model/ framework for building workflows into your applications.&amp;nbsp; The goal of WF is to provide a general framework that supports workflow, and make it a standard part of the Windows environment.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651081 name=_Toc150651081&gt;&lt;/A&gt;&lt;I&gt;Microsoft Office SharePoint Server (MOSS)&lt;/I&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;The office team has seen a significant advantage in leveraging WF and hosting it inside of the SharePoint process to facilitate new functionality.&amp;nbsp; For the 2007 release of SharePoint,(MOSS) &amp;nbsp;Microsoft had a goal of providing an infrastructure that would drive work processes around what SharePoint does best: share and collaborate on documents. With this in mind you will see that there was a focus on document-centric workflows, processes that a particular document needs to go through during its lifecycle, such as being reviewed and edited or being approved for publication. With SharePoint in 2007 you can attach and run a process directly on a SharePoint document or list item. Companies will begin to evaluate MOSS both for its tremendous out of the box web capabilities, as well as for some workflow capability newly introduced into the latest 2007 version.&amp;nbsp; Microsoft has heard the plea of its customer base and implemented workflow into the SharePoint platform.&amp;nbsp; Essentially what the office team has done is built on the work done by the Workflow Foundation team and extended it as well as provided a host process for it.&amp;nbsp; So not only do you have some out of the box workflow, if you have the development skills to do so, you also have the ability to code your own workflows utilizing WF and deploy them to the SharePoint server leveraging its host process.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651082 name=_Toc150651082&gt;&lt;/A&gt;&lt;I&gt;Moss Workflow Out of box&lt;/I&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Microsoft has built and is hosting some common workflows that will be shipping with MOSS, these workflows are easily configured and usable upon installation of Moss. We will touch more on these in a bit.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651083 name=_Toc150651083&gt;&lt;/A&gt;&lt;I&gt;SPD&lt;/I&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;SharePoint Designer(SPD), will be released as part of the Office suite of products replacing the long standing FrontPage as the web designer.&amp;nbsp; SPD can be used to create workflows that will be hosted in MOSS.&amp;nbsp; Again more on this functionality and what to expect later.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651084 name=_Toc150651084&gt;&lt;/A&gt;&lt;I&gt;Office Client&lt;/I&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;The office 2007 client supports and integrates with workflow right out of the box. Providing a somewhat seamless workflow interaction ability with the workflows that run in your MOSS deployment.&amp;nbsp; This is a fantastic ability that will greatly increase the use of and success of workflows being deployed in a Moss environment.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651085 name=_Toc150651085&gt;&lt;/A&gt;&lt;B&gt;Workflow Keys to success&lt;/B&gt;&lt;B&gt; &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before you start to make a decision on where workflow and MOSS fit into your organization you need to figure out what your true needs are, &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;How complex are your workflows?&lt;/LI&gt;
&lt;LI&gt;Who will be building these workflows?&lt;/LI&gt;
&lt;LI&gt;Where will your data live?&lt;/LI&gt;
&lt;LI&gt;How much detail do I need in auditing, and reporting?&lt;/LI&gt;
&lt;LI&gt;What interfaces do I need?&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Without knowing the answers to all of these you will be unable to make a valid decision and may spend valuable time and resources going down a path that will not end with the result you desire. It is worth the time to sit-down with the stake holders now and figure out what your real needs are longer term and choose the right tool for the right job.&lt;/P&gt;
&lt;P&gt;If you want a process based effort to succeed you must think about your users first.&amp;nbsp; &lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;How do your users work? &lt;/LI&gt;
&lt;LI&gt;What tools do my users use? (IE, MySites, SharePoint, Outlook, LOB App)&lt;/LI&gt;
&lt;LI&gt;How do my users get their information?&lt;/LI&gt;
&lt;LI&gt;How do my users do their processes now?&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Keeping these in mind while building a process or application will dramatically increase the adoption and success rate of your effort.&amp;nbsp; Try and force users to do it differently or throw a cultural curve ball at them and you are asking for users to find a way to bypass this new and more efficient way of doing things.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651086 name=_Toc150651086&gt;&lt;/A&gt;&lt;I&gt;Now What?&lt;/I&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;So the questions that get asked over and over again is what should I be looking to do in SharePoint either out of the box or though the SharePoint designer, and when am I going to either &lt;A class="" title=OLE_LINK2 name=OLE_LINK2&gt;&lt;/A&gt;&lt;A class="" title=OLE_LINK1 name=OLE_LINK1&gt;&lt;/A&gt;have to breakout Visual Studio and start writing custom code, or look to the ISV community for a more extensive workflow solution.&amp;nbsp; How do I evaluate what it can do for me and at what point am I going to start building and supporting the code.&lt;/P&gt;
&lt;P&gt;Let start by walking through some evaluation criteria.&lt;/P&gt;
&lt;P&gt;1. When I think about my workflow what interfaces and interactions am I looking to use.&lt;/P&gt;
&lt;P&gt;Basic WebPages?&lt;/P&gt;
&lt;P&gt;InfoPath forms or InfoPath forms rendered through the new Forms server?&lt;/P&gt;
&lt;P&gt;Do I need to solely use the interfaces provided through the Office clients?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;These amount to some serious decision criteria for several reasons.&amp;nbsp; From a probability of success stand point, think about which interfaces are best for your users.&amp;nbsp; From a technical standpoint if I am building workflow through SPD my only choice is to use the ASP.net forms that SPD generates for me when building out the workflow.&amp;nbsp; My ability to customize or re-host these forms is limited.&amp;nbsp; The OOB workflows however do use InfoPath forms , and can use the rich features provided through the office clients if I am using Office 2007, which provides a very attractive option if my workflow needs are simple.&amp;nbsp; However if I am like most organizations who sees deploying office 2007 as a more distant goal my options can be more limited.&amp;nbsp; Thus I am left looking to building the workflow using Workflow Foundation. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Where does your data live? &lt;/P&gt;
&lt;P&gt;This is perhaps the most important question in this decision process.&amp;nbsp; Quite honestly if the answer is not SharePoint &amp;nbsp;you are in most cases going to do some significant coding. Once you have determined this now you have to consider whether, you will &amp;nbsp;write your own host process &amp;nbsp;or will you be able to leverage the integrated functionally given in MOSS.&amp;nbsp; In this scenario the answer is the same.&amp;nbsp; If my data does not live in SharePoint you are going to be better served by building your own or buying one.&lt;/P&gt;
&lt;P&gt;3. When you think about your workflow needs what other systems are going to be involved. &lt;/P&gt;
&lt;P&gt;a. If you are integrating into other systems such as ERP, CRM or other back end applications, you are going to have to breakout Visual Studio and start writing custom code, or look to the ISV community for a more extensive workflow solution, as there is no ability either through the OOB workflows nor the SPD interface to interact with backend systems in a meaningful way. MS does allow some data to be surfaced through the use of the BDC which will provide me with a read only list type copy of back end data. You do have the ability to take this data if exposed in your site and leverage it in a workflow, however this data is read only. &lt;/P&gt;
&lt;P&gt;4. What type of business logic will you need to have to run or determine the flow of your processes?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;a. Complex if this then that.&lt;/P&gt;
&lt;P&gt;b. Simple and straight forward.&lt;/P&gt;
&lt;P&gt;c. How much conditional branching or parallel processing would be involved?&lt;/P&gt;
&lt;P&gt;With regards to the OOB workflows your ability to add any type of business logic, or branching and converging is non-existent. &amp;nbsp;This capability was not their focus when building them.&amp;nbsp; Also be aware that you take the out of the box workflows and add to them.&amp;nbsp; So you move on to SPD, and while SPD does support the base concept of If else type branching if you need to leverage complex business logic you are most likely going to be going back and developing these with custom code via the Visual Studio interface.&amp;nbsp; However if your workflows do not contain this requirement and the logic behind them is straight forward the OOB or SPD type workflows will be able to provide good value.&lt;/P&gt;
&lt;P&gt;In the same vein you need to think about how this business logic is determined&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Is it based on data that is a critical part of the workflow Such as meta data associated with a document or based on user input values.&amp;nbsp; Both of these really bode well for using MOSS and SPD etc.&amp;nbsp; However many organizations base most of their workflows on External Data and as stated previously this makes your effort more difficult.&lt;/P&gt;
&lt;P&gt;5. What other key items/features do you need to make your workflow efforts more successful?&lt;/P&gt;
&lt;P&gt;a. Escalations&lt;/P&gt;
&lt;P&gt;Escalating a workflow either at a individual step or as a whole is limited to sending email reminders at a given point in time.&amp;nbsp; This may work great for some groups whose workflows are not tied to an SLA, or other critical functions. However you may see a need to develop in more advanced escalations such as automatically redirecting the workflow to a different user or group of users, or taking some kind of custom action. If this is the case for your organization you will be back at a building or buying.&lt;/P&gt;
&lt;P&gt;b. Time zones&lt;/P&gt;
&lt;P&gt;Does your workflow require accommodation of people in different time zones?&amp;nbsp; This mainly takes on additional importance with time or business processes.&amp;nbsp; These should be less common in the SharePoint world but will probably still exist. I am currently not aware of any way to accommodate this so if this is an area of importance to you, creating your own workflows and possibly host is going to be a consideration.&lt;/P&gt;
&lt;P&gt;6. What level of auditing and reporting is necessary to effectively manage and improve processes?&lt;/P&gt;
&lt;P&gt;a. How much do you need to know about the process, who was involved and how do you need to track and store progress. Once you store it how long do you need to keep it? The level of reporting that is involved with both the OOB workflows as well as those created with SPD, are great for their purpose. It will tell me when a process started, who was involved and other basic information. Advanced levels of reporting are not available in the OOB workflows and do not provide a great deal beyond what you would find in SPD. Other methods should be considered if this is an area of great importance. &lt;/P&gt;
&lt;P&gt;b. Security&lt;/P&gt;
&lt;P&gt;Microsoft has done a great job in increasing the granularity and flexibility of the security model in SharePoint. This has obviously been extended to include workflows and the various applications you build on top of that platform.&amp;nbsp; However there is a part of workflow in its management of tasks that does have a shared aspect.&amp;nbsp; In high security environments this may be a concern.&lt;/P&gt;
&lt;P&gt;7. Does my SharePoint site design and architecture match a design necessary to meet my workflow needs?&lt;/P&gt;
&lt;P&gt;a. Since workflows are site bound are the workflows that you will be creating isolated enough to meet this requirement, or do I need to have workflow actions that cross site, application, and or portal boundaries. If this is the case, you will need to leverage the Visual Studio interface to make this happen. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lets look further into how we create and use MOSS workflow.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651087 name=_Toc150651087&gt;&lt;/A&gt;&lt;B&gt;SharePoint Designer and Workflow&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So what can you do with SPD?&amp;nbsp; Workflows are created by specifying conditions and actions through what can best be described as an outlook rules type design interface.&amp;nbsp; For workflow I can check for the presence of certain conditions and then take actions either based on those conditions or without condition.&amp;nbsp; SPD does have the ability to create multiple steps, with different conditions, and actions including support for such things as "If then else" &amp;nbsp;type logic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Benefits:&lt;/P&gt;
&lt;P&gt;1. Workflows can be created very quickly&lt;/P&gt;
&lt;P&gt;2. Deployments are not complex and can be executed quickly&lt;/P&gt;
&lt;P&gt;3. Can be created by non development focused people&lt;/P&gt;
&lt;P&gt;4. Risks from deployments are minimal because of the trusted list of conditions and actions.&lt;/P&gt;
&lt;P&gt;5. Created from a finite list of conditions and actions, trusted by the system and its administrators, making the creation of workflow easier.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Drawbacks and limitations&lt;/P&gt;
&lt;P&gt;1. Actions are site bound to the site they are run from.&lt;/P&gt;
&lt;P&gt;2. Still need to have IT skill sets, cannot be done by normal Business Users&lt;/P&gt;
&lt;P&gt;3. Limited support for advanced complexity and scope in building out workflow.&lt;/P&gt;
&lt;P&gt;4. No re-use capability, is authored against a specific list of document library cannot then be used again on another list.&lt;/P&gt;
&lt;P&gt;5. No ability to modify in flight.&lt;/P&gt;
&lt;P&gt;6. Must use ASPX pages. &lt;/P&gt;
&lt;P&gt;7. Limited customizability of these ASPX forms.&lt;/P&gt;
&lt;P&gt;8. Cannot be accessed directly from Office 2007 applications, must be accessed with a web browser other than through email notifications etc.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651088 name=_Toc150651088&gt;&lt;/A&gt;&lt;I&gt;SPD Conditions&lt;/I&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/16540/original.aspx"&gt;&lt;/P&gt;
&lt;P&gt;Figure 1&lt;/P&gt;
&lt;P&gt;Some conditions to check for are as follows:&lt;/P&gt;
&lt;P&gt;1. With Specifics words in the title or other fields&lt;/P&gt;
&lt;P&gt;2. Modified (either in a specific time window or by a person)&lt;/P&gt;
&lt;P&gt;3. Created by or in a specific time frame&lt;/P&gt;
&lt;P&gt;4. File type&lt;/P&gt;
&lt;P&gt;5. File size&lt;/P&gt;
&lt;P&gt;6. ADVANCED Condition(Custom condition)&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651089 name=_Toc150651089&gt;&lt;/A&gt;Actions&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/16542/original.aspx"&gt;&lt;/P&gt;
&lt;P&gt;Figure 2&lt;/P&gt;
&lt;P&gt;The action tasks for example are as follows: &lt;/P&gt;
&lt;P&gt;1. Create task&lt;/P&gt;
&lt;P&gt;2. Update task&lt;/P&gt;
&lt;P&gt;3. Delete task&lt;/P&gt;
&lt;P&gt;4. Send email&lt;/P&gt;
&lt;P&gt;5. Prompt for values&lt;/P&gt;
&lt;P&gt;6. Change Item Status&lt;/P&gt;
&lt;P&gt;As a developer you also have the ability to publish your own custom actions through the use of Visual Studio and the published SDK for workflow and MOSS.&amp;nbsp; &amp;nbsp;&amp;nbsp;So in practice what does this mean to you? Lets explore a popular workflow example I have seen.&amp;nbsp; A popular use of MOSS and the surrounding workflow will be primarily document-centric. With that in mind let's say I am a knowledge worker who is responsible for a specific set of document libraries in side of a SharePoint site.&amp;nbsp; I want to create a workflow attached to a document library that when initiated will perform certain actions such as copying that document to another library or sending an email to certain groups based on the type of document it is or values contained within the documents metadata.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;So what I can do is use SPD to attach to the document library and create a workflow similar to the following&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;U&gt;Conditions&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Condition Create by = HRGroup&lt;/P&gt;
&lt;P&gt;And&lt;/P&gt;
&lt;P&gt;Condition words in Title = Human Resources&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;U&gt;Action&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Send Email to HR Policy Group&lt;/P&gt;
&lt;P&gt;Assign Action to HR Policy Group&lt;/P&gt;
&lt;P&gt;Copy Document from current Document Library to Policy Review Library&lt;/P&gt;
&lt;P&gt;Else&lt;/P&gt;
&lt;P&gt;If created by administrator&lt;/P&gt;
&lt;P&gt;Email HR Group&lt;/P&gt;
&lt;P&gt;Collect more information.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/16544/original.aspx"&gt;&lt;/P&gt;
&lt;P&gt;Figure 3&lt;/P&gt;
&lt;P&gt;Some caveats on this workflow.&amp;nbsp; Both document libraries must reside on the same site, and the metadata the workflow is trying to evaluate must be guaranteed to be present. So some careful planning and configuration needs to take place.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651090 name=_Toc150651090&gt;&lt;/A&gt;&lt;B&gt;MOSS Out of the Box Workflows&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Microsoft is shipping several workflows that will be present "Out of the Box"&amp;nbsp; They are tentatively as follows:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Approval: Routes a document for approval. Approvers can approve or reject the document, reassign the approval task, or request changes to the document. &lt;/LI&gt;
&lt;LI&gt;Collect Feedback: Routes a document for review. Reviewers can provide feedback, which is compiled and sent to the document owner when the workflow has completed. &lt;/LI&gt;
&lt;LI&gt;Collect Signatures: Gathers signatures needed to complete an Office document. This workflow can be started only from within an Office client. &lt;/LI&gt;
&lt;LI&gt;Disposition Approval: Manages document expiration and retention by allowing participants to decide whether to retain or delete expired documents. &lt;/LI&gt;
&lt;LI&gt;Group Approval: Similar to the Approval workflow, but uses a designated document library and offers a personalized view of the approval process(es) in which a user is participating. This workflow provides a hierarchical organization chart from which to select the approvers and allows the approvers to use a stamp control instead of a signature. This solution was designed specifically for East Asian Markets. &lt;/LI&gt;
&lt;LI&gt;Translation Management: Manages document translation by creating copies of the document to be translated and assigning translation tasks to translators. &lt;/LI&gt;
&lt;LI&gt;Issue Tracking: Manages the issue tracking process by creating tasks for Active issues assigned to users who own to a given issue. When the task related to an issue is complete hence resolving the issue, the creator of the issue is assigned a review task so that the issue can be closed.&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Benefits:&lt;/P&gt;
&lt;P&gt;1. Pre-made workflows you can just configure and go.&lt;/P&gt;
&lt;P&gt;2. Based solely in the office environment, no custom gui to learn or deploy.&lt;/P&gt;
&lt;P&gt;3. Ability to change parameters during execution, such as add more approvers, redirect to a different approver, and request changes from the originator.&lt;/P&gt;
&lt;P&gt;Drawbacks and limitations:&lt;/P&gt;
&lt;P&gt;1. Each workflow is site bound, so no actions such as creating task or copying document can take place outside of the site that it is running on&lt;/P&gt;
&lt;P&gt;2. These workflows cannot be extended or significantly modified since they are compiled DLLS on the SharePoint server.&lt;/P&gt;
&lt;P&gt;I believe that organizations using SharePoint 2003 today will really like the collect feedback, issue tracking and Collect signatures workflow, they provide a simple yet effective workflow that automates some very common tasks found in corporate America.&amp;nbsp; However with these workflows and how they assign manage and display tasks, even with the roll-up tasking, the task management of the workflow may be difficult to be truly applicable in larger more diverse deployments or in matrix organizations..&lt;/P&gt;
&lt;P&gt;Many organizations with a more mature SharePoint deployment that is in high use will find adapting these OOB workflows as well as SPD workflows especially as the Work Flows themselves begin to cross organizational boundaries or groups.&amp;nbsp; However organizations who are not afraid of development work and maintenance will be able to overcome this hurdle.&amp;nbsp; Those with a Build mentality will find this a fresh approach to building applications on a good platform.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651091 name=_Toc150651091&gt;&lt;/A&gt;&lt;B&gt;Workflow integration and Office client 2007&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This really is the best feature area for how and when you want to leverage MOSS and workflow.&amp;nbsp; Being able to store a office document in a document library and start and interact with that workflow right from the office application itself is a powerful tool in the workflow users and builders arsenal. &amp;nbsp;&amp;nbsp;Figure 4 represents the option from the new office menu for starting workflow.&amp;nbsp; Figure 5 is a screenshot of how tasks will appear in the office application itself where there is one for that document.&amp;nbsp; Figure 6 is how you are able to choose which workflow to start from within the office application.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/16545/original.aspx"&gt;&lt;/P&gt;
&lt;P&gt;Figure 4&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/16546/original.aspx"&gt;&lt;/P&gt;
&lt;P&gt;Figure 5&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://k2underground.com/photos/articles/images/16547/original.aspx"&gt;&lt;/P&gt;
&lt;P&gt;Figure 6&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651092 name=_Toc150651092&gt;&lt;/A&gt;&lt;B&gt;Who will build it and will they come?&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Who will build, deploy, and manage your workflow?&amp;nbsp; Organizations planning on implementing not only MOSS with WF or any workflow applications need to seriously consider this among other questions.&amp;nbsp;&amp;nbsp; There are some serious design considerations with determining these roles.&amp;nbsp; With SharePoint designer&amp;nbsp; organizations must place the creation and deployment of workflow in the same role.&amp;nbsp; There is no way that I am aware of to have one person go through and create the workflow then send that application to another for the actual deployment.&amp;nbsp; With this being said there are some obvious security implications but more so than that there are some trust and cultural issues in many organizations that need to be overcome.&amp;nbsp; However from a security perspective the IT risk should be minimal as was discussed, since the impact is constrained to a specific list and the actions being taken are restricted to a minimal set.&amp;nbsp; Obviously this can be changed with IT creating and exposing additional actions to be surfaced in the designer. However from a default perspective this is not the case.&lt;/P&gt;
&lt;P&gt;Many organizations today, are beginning to see the value in involving the business community in a more proactive role for application/process/workflow design.&amp;nbsp; There is a tremendous amount of value in making a significant effort to do so.&amp;nbsp; The values of which go beyond the scope of this article .&amp;nbsp; However, if organizations are going to attempt &amp;nbsp;to tap into this value they will need to seriously consider the basic technology skill set present in the users they are looking to involve.&amp;nbsp; While SPD is not a developer experience where one needs knowledge of API sets and similar terminology it does however need in most cases more skill sets than the average end user possess. This is because it introduces workflows and the like in a manner that these types of users are not used to thinking of.&amp;nbsp; There is terminology, ways of thinking and planning that make this effort slightly prohibitive.&amp;nbsp; However as stated this can be overcome with some training. If this does not seem appealing to you, there are alternatives in the ISV community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A class="" title=_Toc150651093 name=_Toc150651093&gt;&lt;/A&gt;&lt;B&gt;Wrap up.&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;What does all this boil down to?&amp;nbsp; Microsoft has made great leaps forward in adding value to those organizations that choose to invest in MOSS and already have investments in SharePoint 2003.&amp;nbsp; Even if you take workflow out of the picture MOSS provides a huge amount of value.&amp;nbsp; Organizations that choose to leverage the abilities of MOSS for workflow or choose to use it as a platform to develop their own applications will be pleasantly surprised at the plumbing provided.&amp;nbsp;&amp;nbsp; Before going down the path of workflow every organization will need to look carefully at their needs and what amount of effort they are ready to put forward into meeting those needs before moving forward into a workflow project.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;If you have looked at MOSS, SPD, and WF and these do not meet your needs, please take a look at K2 which leverages these technologies but makes for a collbaborative environment for your business users and IT developers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://k2underground.com/aggbug.aspx?PostID=16549" width="1" height="1"&gt;</content><author><name>chrisg</name><uri>http://k2underground.com/members/chrisg/default.aspx</uri></author></entry><entry><title>Workflow Design - Spider Workflow </title><link rel="alternate" type="text/html" href="/blogs/articles/archive/2007/07/10/workflow-design-spider-workflow.aspx" /><id>/blogs/articles/archive/2007/07/10/workflow-design-spider-workflow.aspx</id><published>2007-07-11T01:09:00Z</published><updated>2007-07-11T01:09:00Z</updated><content type="html">&lt;H4 class=BlogPostHeader&gt;&amp;nbsp;&lt;/H4&gt;
&lt;TABLE class="" cellSpacing=0 cellPadding=0&gt;

&lt;TR&gt;
&lt;TD class=""&gt;
&lt;DIV class=BlogPostContent&gt;
&lt;P&gt;A number of people have asked me to explain the 'Spider Workflow' approach to workflow design, so I thought it would be best to blog about it. So here goes...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;&lt;BR&gt;&lt;B&gt;1. Introduction&lt;BR&gt;&lt;/B&gt;There are a number of design cases in workflow solutions, where the 'order of steps' is now known or cannot be determined at design time. An example of this is where certain steps might occur more than once (eg: a specific manager needs to keep reviewing a document until conditions have been met), or where the user is involved in determining the next step of flow of events (eg: A user might wish to route a document directly to the regional manager (instead of the departmental manager).&lt;BR&gt;&lt;BR&gt;Frequently during these types of solutions, the workflow designer attempts to solve this by linking each workflow step to each of the possible next steps in the process. This, however, can result in a very complex spaghetti workflow process with lines linking everywhere. There, in order to clean up this 'ad hoc' style workflow, one of the possible solutions is the 'Spider Workflow' approach.&lt;BR&gt;&lt;BR&gt;&lt;B&gt;2. Spider Workflow Approach&lt;/B&gt;&lt;BR&gt;Spider Workflow is a workflow design approach in which the workflow gets handled by a central 'router' hub step, and a number of single 'spoke' steps. Using this approach, the workflow design is centered around an 'intelligent' central hub step, that determines which step (or steps) the workflow should route to next. (The spider workflow design could also (probably more accurately) be described as a 'hub-and-spoke' design). During the workflow runtime, the process will get routed from one spoke to another, until a specific condition (flag) is met such that the workflow is complete. In this manner, any spoke can follow a previous one (even the same spoke more than once if required).&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;3. How is it Built (Refer to the attached diagram below)&lt;/B&gt;&lt;BR&gt;Referring to the diagram, the spider workflow is implementing using the &lt;B&gt;Routing Step&lt;/B&gt; as the central hub. This is an activity that contains a single Server Event that evaluates data in order to set an 'Outcome' data field. Each line that emerges from the Routing Step contains a simple line rule that checks the value of 'Outcome' to establish whether it needs to be followed or not. (Example: the line that runs from &lt;B&gt;Routing Step&lt;/B&gt; to &lt;B&gt;Manager Approval&lt;/B&gt; could have a line rule that checks whether "&lt;I&gt;Outcome==Manager Approval&lt;/I&gt;", and if yes, the &lt;B&gt;Manager Approval&lt;/B&gt; would be the next step.&lt;BR&gt;&lt;BR&gt;This can continue indefinitely until an 'exit condition' is met (depending on the solution). An example of this would be (referring to the diagram) the process might need to continue, once all of the 4 parties (Manager, Finance, Regional Manager and the CEO) have approved a specific doc. In this case the &lt;B&gt;Routing Step&lt;/B&gt; would evaluate the Approval data fields, and if all 4 of them are set to 'Approved', then it would simply set the Outcome to 'Continue' (and potentially this would make the process continue to the &lt;B&gt;Process Continues&lt;/B&gt; step)&lt;BR&gt;&lt;BR&gt;&lt;B&gt;4. Spider in Action (An Example)&lt;/B&gt;&lt;BR&gt;Lets take a look at this in action. The originator might submit a new 'Policy Doc' and the process starts. By default the process has been built that if the user doesn't specify who this should be routed to next, it follows a default order (Manager -&amp;gt; Regional -&amp;gt; Finance -&amp;gt; CEO). Therefore, the doc gets routed to the 'Manager Approval' step.&lt;BR&gt;&lt;BR&gt;The Manager takes a look but feels that the policy is too expensive, so he/she specify on their UI that the task must get routed to 'Finance Review' next. The Routing Step evaluates the data fields set by the Manager, and routes the task to the 'Finance Review' step.&lt;BR&gt;&lt;BR&gt;The Finance team are happy with the doc, so they approve it, but do not specify a specific next step. The 'Routing Step' checks the default order, notices that the Manager has already approved, and the next default person is the Regional Manager, so then it gets routed to the Regional Manager.&lt;BR&gt;&lt;BR&gt;The Regional Manager is happy with the doc, but he/she sees from the process history that the Manager routed it directly to Finance with some concerns. Therefore, the Regional Manager adds some additional comments, and routes it back to the Manager to review the doc.&lt;BR&gt;&lt;BR&gt;The Manager gets the doc (for the 2nd time), sees the approval history and comments, and is now happy with the doc, and approves it again. The Routing Step now determines that the only person that has now seen the document is the CEO, so it gets routed to CEO Approval.&lt;BR&gt;&lt;BR&gt;The CEO has a look, sees everyone else is happy with the doc, and approves it.&lt;BR&gt;&lt;BR&gt;At this point, the process reaches a specific condition where the 'Routing Step' evaluates all the requirements and establishes that everyone that needs to approve the doc has already done so, so the workflow is routed to 'Process Continues' (where the doc might be uploaded to SharePoint, and the originator notified etc etc).&lt;BR&gt;&lt;BR&gt;This is just a simple run-through of a single instance, however, it should be apparent that this process can be approved in any order, and number of times, all dependant on the conditions coded into the 'Routing Step' server event.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;B&gt;5. Extending the Design&lt;/B&gt;&lt;BR&gt;This design can be taken a lot further than the simple scenario painted above.&lt;BR&gt;&lt;BR&gt;&lt;I&gt;5.1 Multiple Concurrent States&lt;/I&gt;&lt;BR&gt;It is relatively easy to extend this solution to allow multiple concurrent steps in the workflow. There is no reason why this document cannot be reviewed by the Regional Manager and by Finance at the same time. One simple needs to add additional code/flags so that the Routing Step knows what to do in these circumstances. Fundamentally the process can get as complex as required, and the exit condition will always be 'if all confitions have been met, the process can continue'&lt;BR&gt;&lt;BR&gt;&lt;I&gt;5.2 IPC&lt;/I&gt;&lt;BR&gt;Extending the design further, the spoke steps could be IPC (Inter Process Calls) to sub-processes. The only downside is access to the data, where the 'call-by-value' data passing to the child process means that child processes can only get/set their local copy of data fields that only get bubbled up to the parent upon completion of the child process. One can work around this problem by using SmartObjects that can be accessed from anywhere.&lt;BR&gt;&lt;BR&gt;&lt;I&gt;5.3 Mixed Model&lt;/I&gt;&lt;BR&gt;The spider workflow is not an absolute workflow design. Any workflow process could at any stage include a 'spider-style' section, and it can therefore be used in a mixed model with classic (sequential) workflows, or even with other spider workflows (eg: where a spoke is effectively a hub for a sub-region). It all depends on the scenario.&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;B&gt;6. Conclusion&lt;/B&gt;&lt;BR&gt;To some degree, the 'Spider Workflow' approach has been over-hyped as the silver bullet for ad-hoc workflow. Basically this just a logical approach for flexible workflow design, that is very hard to report on (due to the vast number of activity (specifically routing step) instances) which makes it more difficult to measure the metrics of the solution.&lt;/P&gt;
&lt;P&gt;Authored by Olaf Wagner&lt;BR&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://k2underground.com/aggbug.aspx?PostID=16458" width="1" height="1"&gt;</content><author><name>chrisg</name><uri>http://k2underground.com/members/chrisg/default.aspx</uri></author></entry></feed>