Blog - Robert Bogue [MVP]
Rob's Notebook
SharePoint Calendar
Thor Projects LLC - Welcome

A few things you should know about CreateTaskWithContentType in SharePoint Workflow

Posted by Robert L. Bogue on Wednesday, 24 Jan 2007 01:58 | 1 Comments | Professional

Here are a few things that you should know when working with the CreateTaskWithContentType activity in a SharePoint workflow.

1)      If you don’t enable ContentTypes in the task list you’re get a null reference exception (from the activity itself, not your code.)

2)      The ContentType that you specify in the ContentType property isn’t automatically associated.  You’ll want to verify the content type exists in the _MethodInvoking() event.  You could call the code below to automatically enable content types and if necessary add the contentType:

        /// <summary>

        /// Verify -- and if necessary modify -- the task list to ensure that the required fields are available.

        /// </summary>

        /// <param name="taskList">The list to be verified</param>

        /// <param name="contentType">The content type id to add</param>

        public static void VerifyModifyTaskList(SPList taskList, string contentType)

        {

            try

            {

                SPContentTypeId contentTypeId = new SPContentTypeId(contentType);

 

                taskList.ContentTypesEnabled = true;

                SPContentTypeId matchContentTypeId = taskList.ContentTypes.BestMatch(contentTypeId);

 

                if (matchContentTypeId.Parent.CompareTo(contentTypeId) != 0)

                {

                    SPContentType ct = taskList.ParentWeb.AvailableContentTypes[contentTypeId];

                    taskList.ContentTypes.Add(ct);

                    taskList.Update();

 

                }

            }

            catch

            {

                throw;

            }

        }

3)      You can’t test for whether a content type is associated with a list or not by its “short” identifier directly.  You have to use the .BestMatch method as shown above to determine whether the content type is associated or not.

Comments

Sunday, 28 Dec 2008 11:22 by Paul Turner
You must call taskList.ParentWeb.Dispose(); or you will leak an SPWeb.

Leave your own comment

Name

Url

Email

Comments