Skip to main content

Kevin DeRudder

Go Search
Kevin DeRudder
U2U Website
  

Silverlight, WPF, XAML and .NET

Kevin DeRudder > Posts > Create a custom workflow using SharePoint Designer
Create a custom workflow using SharePoint Designer

From time to time I hear from SharePoint users that they always have to wait for their developers if they want to have a workflow that is not available 'Out Of The Box'.

As a respond I ask them which workflow they want to use or have and apparently most of the workflows can be created in SharePoint Designer without writing one line of code.

In this article I'm going to create a 'Content Approval' lookalike workflow, named the 'Holiday Request Approval' workflow (Human Resource managers can thank me later :-)).

Before we open up SharePoint designer, we need a 'Task' list and a 'Holiday Requests' list, which is based on the 'Custom List' template. So the easiest way is to create a site based on a 'Team Site' and add a custom list.

1. screen_ListsinQuickLaunch

In the 'Holiday Request' list we create some holiday related columns, such as 'start date' and 'end date'.

2. screen_ColumnsInList

Now it's time to open up SharePoint designer and load the site where we can find these holiday requests:

3. screen_OpenSiteInDesigner

Once the site is open and loaded, we are going to add a new Workflow by clicking on File --> New --> Workflow button:

4. screen_NewWorkFlow

The cool thing about creating Workflows in SharePoint Designer is, that it's nothing more than running through a wizard and that you can create pretty nice Workflows without writing a line of code.

Wizard Step 1:

In this step we need to provide a title for the Workflow, in our case it is 'Holiday Request Approval'. Next you need to specify on which list or library you want to use it and when you want to start the workflow.

We are going to start it automatically when a new item is created in the 'Holiday Requests' list:

5. wizardscreen_step1

Wizard Step 2:

When an employee adds a request for a holiday, we need to create a task for the Human Resource manager who needs to approve or reject the request.

So we need to create a kind of special form where the manager can select his choice. Because I don't want to write one line of code I'm going to let SharePoint Designer create the form.

At the end, the form will look like this:

36. Whooow

So the action that we are going to use is the 'Collect Data From User' action:

6. wizardscreen_step2_CollectDataFromUser

7. wizardscreen_step2_CollectDataFromUserLine

As you can see on the screen above, you need to provide three things:

  1. The data that needs to be collected
  2. The user that needs to provide the data, the human resource manager
  3. A variable to collect, I'm coming back on this later ...

 

data

First click on the data link and a new wizard will pop up:

8. wizardscreen_step2_datawizard1

8. wizardscreen_step2_datawizard2

We need to collect 2 things from the human resource manager:

  • Can the employee go on holiday or not?
  • Some extra comments

Click on the add button to add these two questions on the page.

10. wizardscreen_step2_datawizard3

First question is the status where we are going to use a choice field so that the manager can choose between Approve or Reject:

11. wizardscreen_step2_datawizard3_1

12. wizardscreen_step2_datawizard3_11

Click Finish and add another field to make it possible for the manager to add some comments:

13. wizardscreen_step2_datawizard3_2

14. wizardscreen_step2_datawizard3_22

15. wizardscreen_step2_datawizard4

Once you've added these two fields click on the Finish button to complete the data part of the action.

 

User

The next step we need to tell who the human resource manager is so a task can be assigned on his name

(because I always wanted to approve a holiday, I will play the manager for now):

 16. wizardscreen_step2_thisuser

17. wizardscreen_step2_thisuser_1

 

Variable to collect:

What we've actually done is, we've created a task for the human resource manager (me) to approve or reject the holiday.

Because we want to use the outcome of this task we need to save the ID of the task that we've created. This is is the variable that we want to collect.

We are going to store the ID of the task in a new variable which we call HolidayRequestTaskID:

18. wizardscreen_step2_newvariable

19. wizardscreen_step2_newvariable_1

Once we've completed the first action we need to save the respond of the human resource manager. With respond I mean, what is the status and what is the comment that the manager gave.

To save these responds we need to create 2 variables and store the responds in these variables.

Find the Action 'Set Workflow variable'. If you don't find it click on 'More Actions...'.

20. wizardscreen_step2_NewAction

21. wizardscreen_step2_SetWorkflowVariable

22. wizardscreen_step2_SetWorkflowVariableOverview

We have to do this 2 times, once for the approval status and once for the comments status

Variable 1

First we are going to save the answer of the first question, which is the approval status, in a new variable:

23. wizardscreen_step2_SetWorkflowVariable_1

Fill in the Name of the variable and the type of content you are going to store in the variable:

24. wizardscreen_step2_SetWorkflowVariable_2

Click on OK, you should be having something like this:

25. wizardscreen_step2_SetWorkflowVariable_3

We've created the variable now, but we didn't tell the variable what he should keep. Click in the 'fx' button which will open up a new dialog:

26. wizardscreen_step2_SetWorkflowVariable_4

What do we want to collect? Well we want to collect the things that the human resource manager provided in the task that we've created earlier.

How do we know which Task that was, because there could be more than 1 task? Remember that we've saved the ID of the task in a variable, see 'Variable to collect'.

So in the Source drop down box pick 'Tasks' as the selected source. Once you've selected the task list, you have to look for the 'Holiday Request Approve Status' field which we've created earlier. In this field you find the answer of the first question.

Because there could be multiple tasks in that list you need to tell which task you would like to use. Get the task with the ID that you saved before.

27. wizardscreen_step2_SetWorkflowVariable_5

this ID is saved in the 'HolidayRequestTaskID' variable which you can load by using the 'fx' button and choose for Workflow Data.

afterwardsadded

Once you've setup all the fields click OK and do the same for the comments question.

28. wizardscreen_step2_SetWorkflowVariable_6

Wizard step 3

Next we are going to create a new Workflow step. You can do this by clicking on the 'Add workflow step' link on the right side of your screen.

29. wizardscreen_step2_AddWorkflowStep

In this step we are going to check what the manager filled in. To do so we are going to compare the answer. The condition that you need to use is the 'Compare any data source':

30. wizardscreen_step3_CompareDataSource

In the first option you are going to select the variable where you stored the answer of the first question in, which is HolidayApproved:

31. wizardscreen_step3_CompareDataSource2

and in the value part you type 'Approve':

32. wizardscreen_step3_CompareDataSource3

If this condition is true, you can do a lot of things:

  • update a field
  • add the holiday to a calendar
  • ...

We are going to keep it simple and send a mail to the requester of the holiday. So use the actions button to select 'Send an Email':

33. wizardscreen_step3_SendEmail

You want to send an email to the person who created the item. So next to the 'To' textbox, click the addressbook button. One of the users that you van pick is the 'User who created current item':

34. wizardscreen_step3_SendEmail1

Complete the other fields in the send mail dialog box:

35. wizardscreen_step3_SendEmail2

Once this is done, click OK.

Normally you will do an action if it is not approved.

Last step

Finish the creation of the Workflow and add a new item in your list, if everything went right you should have a new task created for the human resource manager that you've selected.

36. Whooow

So, I've hope that I could show how you can create some more advanced workflows in SharePoint Designer.

K.

Comments

If we only knew??

We've created such a workflow with Visual Studio, the good thing about SD is that you only have to save it and it works.

Keep up the good work
at 14/12/2007 13:30

Possible to incorporate variables in message body?

Would it be possible to include the variables content in the message body?

For example, could the comments variable be dumped into the body of the email that is sent out?
at 3/01/2008 18:38

Bulk Processing of Tasks

Is it possible to get a SD workflow to allow bulk Processing of Tasks. I know how to do this with Visual Studio workflow, but I have not managed to find a way to do this with an SD workflow.

Thx Peter
at 28/02/2008 22:20

Very helpful article

this article is very helpful and having great information about workflows.

Thanks
at 3/04/2008 14:37

RE: Possible to incorporate variables in message body?

Yes, it is possible to incorporate variables in the body of the email. When you send the notification via email, on the bottom bar of the "define email message" you can see a button "Add lookup to body". By selecting current item, you can include in the body of the email attributes of the list item of your custom list , which is the newly created item that started the workflow. By selecting "workflow data" you can send information related to the workflow.
Same way to incorporate variables in the subject of the email.
at 9/04/2008 5:12

hierarchical approval

Can i have multiple approval steps? If step 1 is approved, i need to collect data from another user (let's say step 1 was the HR manager, step 2 will be the HR director, step 3 will be VP of HR)
I tried to add a new step in which I want to collect data from HRdirector , I created 2 new fields (Approved/Rejected as choice, comments as text), but those fields wont be listed in the workflow tasks.
at 9/04/2008 5:19

Approvers can approve tasks assigned to others?

Thanks for the great post. It works fine for me. But I see that approvers can approve everthing even tasked not assigned to them.

Is there any idea?

Thanks,

Vuthy
at 15/04/2008 5:43

Approve button in e-mail?

Thnx it helped very good but I think you have to do too much steps and i can show my data in my e-mail but i was wondering if it's possible to put your approve/reject button in your e-mail so they don't have to go to the site?
at 16/04/2008 14:49

Great Post - Any way to Collect data from a "dynamic" user

Kevin this is a really useful post...

Do you, or does anyone, know if there is a way within SD to set the workflow to collect data from the individual user's Line Manager?

We have multiple teams, each with their own Line Manager who approves/rejects their team's Holiday requests..

Thanks
at 17/04/2008 15:19

Any way to Collect data from a "dynamic" user

Hey,
I have to make the same workflow :)
Each team has his own approver.
So I make a choise menu with the team and then if i make my workflow, my first step is if team equals .... then send to that user and so on.

But it's not exactly what I want, I want an approve button in my e-mail so they don't have to go to the website.
at 18/04/2008 10:09

hierarchical approval

We use a 2 stage approval process where the manager can override HR.  HR checks for acrued time-off, whereas the department manager checks to see if the vacation doesn't overlap another employee.

Any response is greatly appreciated.
at 22/04/2008 19:21

Nice Article.I have one doubt

Hi,

A vary intrested article.Thx for posting.I had one question.By using Collect Data from User ,How a group is selected from a user?.

Basically i used Coolect data from user with Information Type as User and Field as Department.But when i try to get the selected department from workflow varible i am unable to get.

Can you help me pls.
at 25/04/2008 18:03

Great Article, Where to get some help...

I have managed to build a decent workflow from this, thanks very much. The procedures you wrote up were very easy to understand and build upon.

I am having some trouble however with the second part of this, which is after the approval is given (or rejected) I cannot get the workflow to carry into step 2 and complete.

Any ideas on some resources I could look to for troubleshooting?
at 30/04/2008 23:53

How can I get HolidayApprovalComments in Add Lookup to Body

How can I get HolidayApprovalComments in Add Lookup to Body

Rejected sometime is not working
at 9/05/2008 3:32

Re: Where to get some help...

I have had the same problem with this, and basically it is not using the correct form.  You go to the "task" and it gives you the full task instead of the custom form.  The task doesn't have a "complete task" button, but somewhere where you can mark it 100% complete... however, doing this doesn't close the task out and go to the next step of the workflow.  What I have had to do is wipe out the workflow and start over again.  Doing this I had to wipe out the task list and create a new task list.  I'm not sure, but I think working off of the site default task list causes this issue.  A good question that I have come up with is this: If there are multiple task lists, how do you control which task list on the site is being used?  As I go through the process to create the form, SharePoint designer automatically chooses a task list, and I'm not understanding conditions it uses to assign the task list to the workflow.
at 9/05/2008 16:31

Create customized workflow for delete item

Hello


I am using a document library with infopath forms and like to create workflow whenever item is deleted. I want that users cannot delete records once the records are submitted. However, the user can send record deletion requests to the Supervisor. My logic is

 

User requests deletion of the record. The user must provide a comment that describes the reason for wanting the record deleted.
An email notification is sent to the Supervisor.
An supervisor will review the deletion and either approve or deny the request. I want that supervisor must provide a comment if the request is denied.

I think it can be resolved in C# code-behind and therefore beyond my capabilities, becuase of this reason I am using Sharepoint designer.

Please advise, how can I do it in sharepoint designer? I am new SPD, if possible can you show me how to create a seprate form for delete request form ?

Ani
at 15/05/2008 18:16

Brilliant article!!

Hi Kevin. This is a great article. Just shows the capability of the out of box workflow features in sharepoint
at 10/06/2008 6:00

Excellent!!!! but need help

I have created InfoPath form for holiday request. I have just followed the instructions provided in this article. It has created task but i cant see this approval form (Lists) in the task at all???

I am just getting started with Sharepoint workflows.... so any help would be much appreciated.

Many Thanks
at 12/06/2008 22:46

Worklow Permission

The workflow works fine, I found an Issue, Once a new request is created, the user has the ability to view or Edit the Item, on viewing the Item from the list, the user is shown all the details with 3 links at the top, New Item, Edit Item & Workflows, The user is able to click on Workflows & approved the item himself! which should not happen, I've checked all the permissions, which looks fine, but not sure why the workflows link is shown.
Did anyone notice this?
at 16/06/2008 10:45

how to choose the Task list that will hold the approval form

its was very usefull to know how to get back the id of the task item belongs to the approval form, but i still wonder sharepoint desinger choose the task list to save the form result in it, especially if we have more than one task list with "Allow management of content types"  property put "yes", so which one of them will used to hold the approval form result.
at 28/06/2008 18:13

how to choose Task list that will hold workflow task

Hi, this is a great article.  But I have a problem.  I have multiple lists on my site, and SD choose one (by random way) and put there workflow task.  How can I configure the task list on SD that I want to store workflow tasks???

Pls help! tks!
at 3/07/2008 22:06

How can we assign task to users from a specific group

Hi, Its really a nice article. I have one quick question. In my case, I need to assign task to user, but to a specific "Approval" group. I dont want to allow user to assign task any other group except "Approval" Group.
at 10/07/2008 21:52

Several items with same task name

Hi

First of all, GREAT post. This was very helpfull. I used it myself and found a problem I've not been able to address.

I have a similar WF for a different biz purpose. We create an item in a custom list, for which we have the WF attached. The first steps requires  someone entering some data, so I used the "collect Data From User" option in SPD.

My problems start when I create multiple entries in the custom list. All of the associated tasks appear in the task list after the WF runs, however I cannot find a way to show in the task list, what the original custom item was (for example, if there are multiple requests for vacations, how does the HR manager know who is the requestor for each task, as the description of the task only says "Collect approve status"?).

Any help will be GREATLY appreciated.

Regards, Ariel
at 28/07/2008 16:12

access denied

hi
i have full control on the site and am trying to administer the workflow.  Recently, i tried to modify an existing workflow and i get an error -- server access denied.

in addition when i try to kick of a workflow manually -- i get access denied --

Any ideas
at 7/08/2008 22:31

custom workflow

nice article.

you gave me a good reason why custom workflows should be done in visual studio by workflow designers skilled in c#, WF and custom forms creation and not i SPD by business analysts ;)
at 13/08/2008 16:03

Email Notification in a SharePoint Custom list: New Workflow or other solution?

Nice article...

I need some expert comments/advice on:
Our Requirement is to send an email to the value in the "Assigned To" column of the custom list (to a member of the project team) . We are using SharePoint 2007 and had this custom list created by importing the spreadsheet data. The custom list does not appear to have the e-mail notification capability as available with the SharePoint Lists like "Issue Tracking".

Is there a solution to this issue except creating a workflow?
I am new to SharePoint/Workflows - so is creating a workflow an overkill or is the only alternative around.
Any helpful comments will be highly appreciated.
Thanks, Gagneesh
at 21/08/2008 23:04

Permissions for Approvers

The users who have been assigned the task, get the Access Denied error when they try to Edit it to Approve/Reject it.
All users have contribute permission, but that does not allows them to complete the tasks assigned to them.
What permissions should I assign them?
Thanks, Bhanu.
at 3/09/2008 16:56

List data being submitted into a workflow email.

I have a custom list that i have created to capture data from customers. I am trying to create a work flow that when status equals closed, the content of a few fields in this custom list are populated and sent to the originator.

Can you list the steps to make this happen. I am so close i have a feeling but just cant get it to work. This is how i have it
Conditions, if priority equals closed
Actiosn, set comments to Variable: Resolution
then email service requests:Created by

with the body of the email equals to the resolution variable.


Thanks.
at 16/09/2008 0:12

Customization Issued

How can I customize the email format which is by default a times font.  I need to brand these emails and I can't locate where to do this.

I have already updated my alerts using the alerttemplates.xml file.

Please add a note to your captcha below when you refresh the page you will lose form data...
at 22/10/2008 22:48

Great post, however....

Adding a task this way creates a new link on the Task List's "New" menu titled "Collect Approval Status".

Is there a way to remove that from the menu? 
In the list settings, under Content Types, the item is marked as "Visible on New Button".

I can't seem to find a way to remove that.
at 24/11/2008 16:44

Just what I was looking for

Quick Quesiton though....

Adding additional steps using your example causes an odd behavior.  After a user marks the task as complete in the tasks list, the task is presented a second time (each step repeats once).  Is there an action between steps that could prevent or fix this?

I'm still fairly new to SP Workflows, and can't seem to find any real definitive documentation on SPD's features.
at 25/11/2008 17:26

Infopath Cancel Button

Hi,

I want to know one thing. I have created a SharePoint designer workflow. I have used an infopath form and provided two buttons on it, submit and cancel. Once the user clicks on submit, the document is submitted and the workflow starts. Now i want that if the user click on Cancel button then the workflow should stop or should get cancelled.

Can anyone tell me, how to achieve this in SharePoint Designer???
at 2/12/2008 7:10

Additional steps no longer work

If you've applied the infrastructure update, you'll notice that this post is no longer valid.

Prior to deploying the IU, this was working.  Any attempts to re-create ths workflow using multiple steps with the same actions will fail.

It seems as though this blogger or article is not moderated, and answers are not answered.  My suggestion would be NOT to follow this site, but to use the documentation on office.microsoft.com.

Good luck
at 5/12/2008 22:16

Workflow not start with user don't have approval permission

Hi Kevin.

Thanks for the great post. But.

It works fine if user who is create new item in list 'Holiday Request' have approval permission.

If user don't have approval permission, workflow not start.

Thanks,
at 13/12/2008 16:29

Workflow doesn't work

Hi,

I created the work flow (SPD) successfully it works fine now if I take the list template and put it into production (only list) it wont work  only sharepoint workflow even if I triggered manually also doesn't work.

Please guide me.

Thanks a lot
at 23/12/2008 13:25

Task Workflow

Cool Stuff

All the steps are clearly mentioned.

Thanks

at 25/12/2008 9:36

Columns from existing site rather than defining a new one.

I want to add two columns from an existing form library into "Collect data from user" action rather than adding a new column so that when the approver opens the "Collect data from user" content type, he should be able to see those two column values from existing form library in to that "Collect data from user" content type only. Is that possible?
at 26/12/2008 7:45

Great tutorial, however...

The tutorial is great, however there is this little gem from Microsoft that stops it working the way most of us would hope and expect:

"After a task is assigned to a participant by the workflow, that task cannot be transferred to any other participant (by delegation, forwarding, etc.). However, anyone with the default Contribute permission level to the Tasks list can edit the task item and thus allow the workflow to continue."
(http://office.microsoft.com/en-us/sharepointdesigner/HA102098081033.aspx)

The owner of the task is NOT the person it's assigned to, but the person that created it!  So permissions can't even be tied down to owner.  So anybody with contribute permissions on the task list can edit everybody's tasks!  And according to the Microsoft quote above this is expected/acceptable behaviour!  Doesn't seem logical to me!  Looks like the only way that I'm going to get it to do what I want is by writing my workflow in Visual Studio.  Thankfully Chris O'Brien has posted how we can do this with some code:
http://www.sharepointnutsandbolts.com/2008/01/workflow-tasks-which-can-only-be.html

Hope that helps some of you!  My wish list for the next version of SharePoint definitely includes making the owner of the task the person that its assigned to!
at 8/01/2009 10:27

fgjh

ghjfghj
at 12/01/2009 10:11

Everything makes sense, but still doesn't work for me...

Unfortunately I cannot get this to work.  If I use "Automatically start this workflow when a new menu item is created," it won't save without errors.  The collect data from user step creates a whole new task and apparently this is not allowed.  Anyone have any ideas?
at 12/01/2009 16:27

Nevermind...

Nevermind, I figured out my issue.  I was automatically starting the workflow from a task list.  I changed it to an issues list and now it works fine.  I sure wish Microsoft would make things more intuitive.  Either that, or I'm just dumb.
at 12/01/2009 16:52

Problem in workflow

The workflow is not triggered when the new item is added to the list.But i m able to see the workflow in the workflow settings.When i add the item in the list then when i see the item i am not able to see  the workflow i n the workflow tab.
Can any one please help me to figure out the problem..


Thankx:)
at 28/01/2009 9:50

Oh yeah !!!

Thank you so much for this detailed example. This is just exactly what I wanted to do. You made me save hours of work.
at 21/02/2009 11:40

Nice post and hard work in SPD :-)

Really nice post but rather fighting with SPD I am suggesting to check more user-friendly solutions like Nintex, Datapolis Workbox (which has a FREE version) or Kaldeera.
at 25/03/2009 17:32

Activate Workflow

When the option is selected as start manually, thw workflow works properly, but when i select the option "automatically start when new item is added" workflow does not start.

Any idea?
at 20/04/2009 10:43

For those who claimed workflow does not start automaticaly.

In server there is a time set to set every few seconds or minutes to process workflows.
Mine is every 4 minutes, therfore the workflow will wait till that 4 minutes is up!
at 30/04/2009 20:45

Some Problem Happen, When create Collect Data Workflow@SPD..

Hi Everyone..

I have a problem here, maybe someone or somebody can help me...

The problem comes when i have create the collect data to a user, and there a error occured when i finish the workflow wizard....

Can anybody ar anyone help me to figured this out...

Thanks & Regards,
YougyZ
at 7/05/2009 6:22

excellent post

After reading countless books, blogs and forums. I now finally understand how to create custom workflows. This is an excellent post. Thanks very much, my life is now a lot easier.
at 21/05/2009 12:01

Some ans

Hi,
activate Workflow automatically: Even i faced the same problem, later i fgured out that i had logged in as System Account. After chaning my system account to a different user, the rpoblem got resolved.

For "Permissions for Approvers": Try giving the "Design Permison" and the same should work

at 27/05/2009 9:23

Not working for me..

while collecting data when i press Complete task.. it goes back to the list .. but nothing happened .. workflow is not running after that.. Source list that triggers the work flow is a infopath form library.

When i want to complete the same workflow with complete task button. it gives error and say that workflow is locked and cannot be eddited
at 29/05/2009 14:31

Thanks for the tutorial

This is what i need. And i found it. Thanks for the great article.
at 9/06/2009 21:20

Great article but permissions make workflow pointless in SharePoint

Fantastic article, thank you very much, I certainly learned a couple of things. That said, there is the fundamental problem of permissions; anyone with contribute access on the list will be able to view and amend any record. Maybe this is not a problem for holiday requests but consider expense or sickness claims which could contain sensitive information.
Does anyone know if there is a solution to this fundamental issue?
at 11/06/2009 12:28

Collect values show up in tasks but not in email

I created exactly like the example. Every thing works, when the task is complete you can see the values 'approved and comments" when you look at the completed task,  however when I send the email to the user if it approved it sends the else emai that it was rejected.  I captured the the value "approve or reject" in the email and it shows up as ????? but  the comments show up. 
at 24/07/2009 18:21

Not able to view "Task" in source dropdown

Not able to view "Task" in source dropdown
Can ne one help me out.
at 3/08/2009 14:32

Getting Commetns into a column

Thanks for the great article - very useful.  Using your example - lets say a person has his/her request reviewed and "rejected" and the reviewer enters comments in the block provided.  How do I get those comments to appear in a column titled "Reason for Rejection" in the custom list for viewing?
at 20/08/2009 14:46

Evaluate a Survey

Hi, I wanted to know if it is possible to create a workflow (with Sharepoint Designer) to accomplish the following:
We have Project Server 2007 SP1 (with WSS3) and we created a Survey in the Project Workspaces to measure Customer Satisfaction related to the project. However we want to show (maybe in another list) the value of the survey (each question has a value and according to the alternative chosen we can calculate an overall value or grade for the survey). But the problem is how can we take all the answers of the Survey, calculate the final value (or grade of the survey) and copy it to a field?.

Thank you very much

Best regards
at 10/09/2009 19:57

Kevin

Thanks for a great article.  I've been creating custom workflows in Designer for some time and enjoy it.  I know custom worflows are not designed to be easy to move.  I've built a complex one in a test environment and now want to recreate it on another server.  Short of hundreds of screenshots, do you know of a tool or approach for documenting my custom workflow so I can recreate every step and setting exactly?  I'd appreciate any pointers.
at 23/09/2009 19:56

Thanks

Thanks for great instructions.  I've been stuck on this all day.  I couldn't figure out how to utilize the workflow variables and this was very helpful.  Great demo.
at 30/09/2009 19:11

Developing custom workflow action is very easy, try this,

at 6/11/2009 20:27

Thanks

Thank you very much Kevin!
at 17/11/2009 18:21

Rejected Case

I have developed 3 steps workflow which moves from group 1,2,3 forward (if Approved) using SPD.

I have issue when Rejected!
Workflow stops after Rejected! Status. :(

anyone please let me know how to approach in SPD.
i tried Action > Assign a form to a group
but this is new form, can we provide earleir form name itself
at 26/11/2009 4:56

Re: Create a custom workflow using SharePoint Designer

I followed each and every step as described, but facing two issues:

1) When trying to set variable to value, somehow when I select tasks it doesn't show me the HolidayApproval in Tasks

What could be the reason?

2) I selected tasks and went ahead and created the same as mentioned in this article, but when trying to display the custom edit form it should be blank screen without radio button and comments.

What could be the reson?

Any help is appreciated. 949-351-3259(Cell)
at 4/12/2009 16:20

Approve from a manager?

What if we need to request approval from the manager of the user that started the workflow not from the same user?
at 16/12/2009 17:59

The Related List item field in the form

How did you create the Related List item that links to the original request (request1)? I take it you just added a field in the CTW labeled as Related List item, but how did you link to the specific Request that the initiator created and not just to the list? is it a ID number for the content type that you used?
at 6/01/2010 23:12

Manager determined by user.

Do you know how to create a workflow in Sharepoint based on the users input allowing them to nominate the person (manager) that th form would need to be sent to and hence the workflow would be based on?

e.g if filling out a Holiday Request type of form they would select their manager who the form needs to be sent to for approval and based on the field the workflow would commence and be sent out to their specific manager without needing to create a new workflow each time.
at 11/01/2010 6:11

re: Manager determined by user

If you have an infopath or other form that has the value of the manager's name/email in it...you can assign that to a variable field that populated a column in SP. Then you can create a second task that send the Holiday Request form to the workflow variable instead of a specific person's name.

For example, in task 1, you could obtain the employee's name, manager name, time desired, etc.

in task 2, you send the email to Workflow/Employer Name and then the email goes to the value in the variable.  Obviously, you'll need the email address captured.

Hope that helps.
at 25/01/2010 15:55

New Issue re: Tasks

We used InfoPath 2007 and SPD 2007 to create a combined Infopath/SPD workflow solution without using code for a Purchase Order application. This solution is deployed to production and works fine.

We needed to do an update to both the form and to workflows to introduce some refinements, streamlining, etc. The updates to the Infopath form went great; the updates to the SPD didn't. Because we're using SPD native workflows, and not features from VS, we knew we had to manually update the workflows in production.  All things tested perfectly. Here is our issue:

We use a series of workflows. In some workflows, we use an action to "Collect Data from a user" task assignments.  In the original version, we got the normal Task format with the narrative from the wizard, the fields needing answers, and a Related Task list item link...along with Submit Task or Cancel buttons. 

When we performed the updates, the Task form (format) itself seemed to change by itself to a new design.  This one had Content Type, Title, Priority, Status, % Complete, Assigned To, Description, sTart Date, Due Date, Workflow Name, and then the two fields we specified in the wizard.  We did nothing different between the two environments....does anyone know how or where the design of a Task changes? Or how this could have occurred?

We did make one modification to the aspx itself...and that surrounds the Related List Item link...which by default opens the client version of the Infopath form. We updated it to have the ?OpenIn=Browser command so that it would open the form services version instead. But this was also performed in test and did not make changes to the form design itself of the task.

Anyone w/ any info is welcome to reply...I really need to solve for this.
at 25/01/2010 16:17

Suppressing task has been changed alerts

Kevin,

Very helpful post. I created the workflow as per the mentioned step. But the approver receives three automated mail.

1) Notification to approve
2) After approval, task has been changed alert
3) Another task has been changed alert

Is there an option to suppress the last two task has been changed alert?
at 28/01/2010 20:47

Calculate number of holidays taken & remaining

Hi,

Is there a way to enter how many holidays a user is entitled to and then query against this for the number they have remaining after holidays are approved?

Thanks

Matt
at 2/02/2010 15:46

Workflow Custom

Simple!

Now, i want a workflow view list when tranfer Id run workflow that. How do you do?
at 8/02/2010 5:10

Creating a Mail with Attachment

This blog post has been really helpful in trying to understand designing Workflows through designer.
I've gotten your workflow to work perfectly but I now have a question regarding an extra functionality. I was wondering if you can send an attachment in a List as an Email attachment in the "Send an Email' Action in Designer. I know you can add a Link to the item in the Email, but i want to actually send the document as a Email attachment rather than the user coming into the sharepoint site and then opening the attachment. Is this possible using SP Designer? If not what are my alternatives.
Thanks
at 25/02/2010 22:54

To send Alert message before the Expiry Date

Hi,
I am using an Expory date column in my document library and I have attached Delete option to this column by using Information Management Policy Settings (meaans the document will be deleted automaticaly from the library on the selected date). Now what I want, to send a notification mail to some specified emailids before 14 days of the Expiry Date. Can anyone help me onthis please...

Thanks
at 24/03/2010 10:33

No Email on secondary workflow

Hi all.

Work flow is working ok up until the secondary task. Upon approval all is updated fine in my sharepoint site but no confirmation email is sent to the user who created the task. I've re created all steps again but can't find the issue.... Any ideas anyone as i'm nearly there with this?

Cheers,

J.
at 26/03/2010 17:13

step 2 wizard

is this correct for the comments in step 2?

wizard step 2 for comments

the set variable: holidayapprovedcomments to tasks:comments

holidayapprovedcomments to variable:holidayapprovedcomments

tasks:comments
source = tasks
field = comments
field = tasks:comments
value: holiday requests:approver comments
at 26/03/2010 19:52

Re: Create a custom workflow using SharePoint Designer

Just now I came to know that Microsoft Office SharePoint Server 2007 includes ready-to-use workflows that address some of your most common business processes, such as collecting feedback on a document or routing a document for approval.
<a href="http://www.giochi-del-casino.net/">giochi del casinò online</a>
at 27/03/2010 7:34

InfoPath form library doesn't send task notification emails

Hi Kevin / All,

Thanks for your great post, I am using this workflow to InfoPath form library, everything seems to be working fine, but it doesn't send any task notification emails.

Example: When I create a new form and choose approver, this doesn't send any emails.

Any help would be much appreciated.
at 29/03/2010 16:36

Wokflow in Designer using list.

Hi everyone,
actually wht i need to do is that i have a list from where i have to pic the data and update a particular row in another list corresponding to that data.
if anyone can help.
Thanks in advance.
at 1/04/2010 6:12

http://www.highwaytowatches.com

at 1/04/2010 10:58

fghf

at 9/04/2010 5:33

Create a custom workflow using SharePoint Designer

I know that this was created a long time ago.  Is there any way to make the Title dynamic.  I noticed that the name of the Custom Task Wizard can not be dynamic.  Which makes the title of the Task always the same.
at 13/04/2010 22:37

Mersi

Bonjour magnifique article. Je suis intéressé par les détails. Vous ne pouvez pas dire à la source <a href="http://www.jouercasino.eu/roulette/">roulette en ligne</a>?
at 28/04/2010 13:30

Mlio

at 8/05/2010 18:44

rrr

http://www.watchesview.com/rolex-watches.html
http://www.watchesview.com/breitling-watches.html
http://www.watchesview.com/tag_heuer-watches.html
http://www.watchesview.com/omega-watches.html
http://www.watchesview.com/cartier-watches.html
http://www.watchesview.com/a_lange_sohne-watches.html
http://www.watchesview.com/alain_silberstein-watches.html
http://www.watchesview.com/armani-watches.html
http://www.watchesview.com/audemars_piguet-watches.html
http://www.watchesview.com/baume_mercier-watches.html
http://www.watchesview.com/blancpain-watches.html
http://www.watchesview.com/breguet-watches.html
http://www.watchesview.com/burberry-watches.html
http://www.watchesview.com/bvlgari-watches.html
http://www.watchesview.com/calvin_klein-watches.html
http://www.watchesview.com/chopard-watches.html
http://www.watchesview.com/christian_dior-watches.html
http://www.watchesview.com/citizen-watches.html
http://www.watchesview.com/concord-watches.html
http://www.watchesview.com/corum-watches.html
http://www.watchesview.com/dunhill-watches.html
http://www.watchesview.com/ebel-watches.html
http://www.watchesview.com/fendi-watches.html
http://www.watchesview.com/ferrari-watches.html
http://www.watchesview.com/franck_muller-watches.html
http://www.watchesview.com/girard_perregaux-watches.html
http://www.watchesview.com/glashutte-watches.html
http://www.watchesview.com/graham-watches.html
http://www.watchesview.com/gucci-watches.html
http://www.watchesview.com/hermes-watches.html
http://www.watchesview.com/hublot-watches.html
http://www.watchesview.com/iwc-watches.html
http://www.watchesview.com/jaeger_lecoultre-watches.html
http://www.watchesview.com/longines-watches.html
http://www.watchesview.com/maurice_lacroix-watches.html
http://www.watchesview.com/montblanc-watches.html
http://www.watchesview.com/movado-watches.html
http://www.watchesview.com/oris-watches.html
http://www.watchesview.com/panerai-watches.html
http://www.watchesview.com/patek_philippe-watches.html
http://www.watchesview.com/piaget-watches.html
http://www.watchesview.com/rado-watches.html
http://www.watchesview.com/romain_jerome-watches.html
http://www.watchesview.com/seiko-watches.html
http://www.watchesview.com/swiss_rolex-watches.html
http://www.watchesview.com/tissot-watches.html
http://www.watchesview.com/titoni-watches.html
http://www.watchesview.com/tudor-watches.html
http://www.watchesview.com/ulysse_nardin-watches.html
http://www.watchesview.com/u_boat-watches.html
http://www.watchesview.com/vacheron_constantin-watches.html
http://www.watchesview.com/versace-watches.html
http://www.watchesview.com/parmigiani-watches.html
http://www.watchesview.com/zenith-watches.html
at 15/05/2010 15:54

rrr

http://www.watchesday.com
http://www.watchesday.com/rolex-watches.html
http://www.watchesday.com/breitling-watches.html
http://www.watchesday.com/tag_heuer-watches.html
http://www.watchesday.com/cartier-watches.html
http://www.watchesday.com/omega-watches.html
http://www.watchesday.com/panerai-watches.html
http://www.watchesday.com/armani-watches.html
http://www.watchesday.com/audemars_piguet-watches.html
http://www.watchesday.com/bvlgari-watches.html
http://www.watchesday.com/chanel-watches.html
http://www.watchesday.com/franck_muller-watches.html
http://www.watchesday.com/gucci-watches.html
http://www.watchesday.com/hublot-watches.html
http://www.watchesday.com/iwc-watches.html
http://www.watchesday.com/longines-watches.html
http://www.watchesday.com/lv-watches.html
http://www.watchesday.com/movado-watches.html
http://www.watchesday.com/montblanc-watches.html
http://www.watchesday.com/parmigiani-watches.html
http://www.watchesday.com/patek_philippe-watches.html
http://www.watchesday.com/rado-watches.html
http://www.watchesday.com/tissot-watches.html
http://www.watchesday.com/tudor-watches.html
http://www.watchesday.com/vacheron_constantin-watches.html
http://www.watchesday.com/zenith-watches.html
http://www.watchesday.com/tag-watches.html
http://www.watchesday.com/swiss_army-watches.html
http://www.watchesday.com/panerai-watches.html
http://www.watchesday.com/oris-watches.html
http://www.watchesday.com/kenneth_cole-watches.html
http://www.watchesday.com/invicta-watches.html
http://www.watchesday.com/hamilton-watches.html
http://www.watchesday.com/emporio_armani-watches.html
http://www.watchesday.com/dkny-watches.html
http://www.watchesday.com/citizen-watches.html
http://www.watchesday.com/miscellaneous-watches.html
at 15/05/2010 15:55

bar supplies shop

http://www.cafetopics.com Cafe
http://www.aluminumshakers.com Wine Shaker
http://www.b2cdropship.com Dropship
http://www.affiliatehorde.com Affiliate
http://www.shenzhenmarketing.com Shenzhen Marketing
http://www.sayrich.com Rich People
http://www.copylane.com Copy Life
http://www.staymine.com Gold Mine
http://www.barproductsfactory.com Bar Products
http://www.themefever.com Fever Theme
http://www.poshcraze.info Posh Craze
http://www.46zw.com Finance Guide
http://www.chenshuiyang.com Seo Technical
http://www.newyorkbarstore.co.uk Bar Products
http://extraordinarydancingbazaar.com Party Dancing Fun
http://orderfulfillmentjapan.com Ecommerce Fulfillment
http://www.98gz.com Bar in Guangzhou
http://www.89hk.com HK Bar
http://www.hq57.com High Quality
http://www.romanticrealm.com Romantic Gift
http://chinasupplierfinancing.com China Supplier Fiancing
http://www.modernbardesign.com Modern Bar Design
http://www.ynname.com China Sourcing
http://www.electrapour.com LED Pour
http://www.newyorkbarstool.com Bar Stool
http://www.merchantcashadvancesonline.com Merchant Cash Advance
http://www.dzd8.com Merchant Accounts
http://www.alljewishlinks.com Jewish Directory
http://www.hotfixfashion.com Hot Fix Motif
http://www.cateringcompany.biz Catering Service
http://www.hardcore-zen.com Home Gift
http://www.kcoat.com Coat Dress
http://www.98fs.com Bar Food
http://www.88ra.com Replica Armor
http://www.goldsecret.com Gold Jewelry
http://www.clearcafe.com Cafe
http://www.wellbug.com Well Bug
http://www.ortug.com Dream World
http://www.newyorkbarstore.com/shop bar supplies shop
http://www.newyorkbarstore.com/shop/bar-cocktail-shaker-set-p-269.html Cocktail Shakers
http://www.newyorkbarstore.com/shop/shakers-c-64.html Bar Cocktail Shakers
http://www.newyorkbarstore.com/shop/bottle-openers-c-10.html Bottle Openers
http://www.newyorkbarstore.com/shop/bar-mats-c-26_51.html Bar Mats
at 17/05/2010 10:14

sdfdsf

 <i><b><a href=http://www.chanelearrings.org/replica-Bvlgari_Fashion_Necklace-g1473.html>Bvlgari Fashion Necklace</a></b></i>
 <i><a href=http://www.chanelearrings.org/replica-Gucci_Steel_Ring_with_Dounle_Diamonds-g3627.html>Gucci Steel Ring with Dounle Diamonds</a></i>
 <i><a href=http://www.watches-designer.net/replica-Omega-182-b0.html>replica Omega</a></i>
 <b><a href=http://www.chanelearrings.org/replica-Chanel_Black_Bead_Double_C_Earrings-g3931.html>Chanel Black Bead Double C Earrings</a></b>
 <i><b><a href=http://www.chanelearrings.org/replica-Vivienne_Westwood_Gold_Tag_Earrings-g3145.html>Vivienne Westwood Gold Tag Earrings</a></b></i>
 <b><a href=http://www.chanelearrings.org/replica-Juicy_Couture_Golden_Crown_Earrings-g2837.html>Juicy Couture Golden Crown Earrings</a></b>
 <i><a href=http://www.chanelearrings.org/replica-Links_of_London_White_Jade_Bracelet_2-g5087.html>Links of London White Jade Bracelet 2</a></i>
 <a href=http://www.chanelearrings.org/replica-chanel_bracelet_21-g927.html>chanel bracelet 21</a>
 <b><a href=http://www.louisvuittonreplica.net/fake-Louis-Vuitton-Purse-5-b0.html>fake louis vuitton wallet</a></b>
 <i><b><a href=http://www.chanelearrings.org/replica-Links_of_London_Shoes_Pendans_Bracelet-g5000.html>Links of London Shoes Pendans Bracelet</a></b></i>
 <i><a href=http://www.chanelearrings.org/replica-Chanel_Black_Bead_Drop_Earrings-g3870.html>Chanel Black Bead Drop Earrings</a></i>
 <b><a href=http://www.chanelearrings.org/replica-chanel_neckla
at 19/05/2010 11:10

Create a custom workflow using SharePoint Designer

Nice Designer

<a href="http://www.wortheye.com/">Worth EYE</a>
at 21/05/2010 23:17

Nike shoes

Deeply impressed and inspired!<a href="www.nike-max-tn.com">Tn Requin</a><a href="http://www.nike-max-tn.com/alife-chaussures-homme-c-143.html">Alife chaussures homme</a><a href="http://www.nike-max-tn.com/nike-chaussures-enfant-c-124.html">nike chaussures enfant</a><a href="http://www.nike-max-tn.com/nike-chaussures-femme-c-72.html">nike chaussures femme</a><a href="http://www.nike-max-tn.com/nike-chaussures-homme-c-71.html">nike chaussures homme</a><a href="http://www.nike-max-tn.com/puma-chaussures-femme-c-39.html">puma chaussures femme</a><a href="http://www.nike-max-tn.com/puma-chaussures-homme-c-38.html">puma chaussures homme</a><a href="http://www.clothing-jeansus.com/af-jeans-c-77.html">AF jeans</a><a href="http://www.clothing-jeansus.com/aff-jeans-c-82.html" title="Aff jeans">Aff jeans</a> Deeply impressed and inspired!<a href="http://www.clothing-jeansus.com/armani-jeans-c-45.html" title="Armani Jeans">Armani Jeans</a><a href="http://www.clothing-jeansus.com/artful-dodger-jeans-c-46.html" title="Artful Dodger Jeans">Artful Dodger Jeans</a><a href="http://www.clothing-jeansus.com/bape-jeans-c-47.html" title="Bape Jeans">Bape Jeans</a><a href="http://www.clothing-jeansus.com/bbc-jeans-c-48.html" title="BBC Jeans">BBC Jeans</a><a href="http://www.clothing-jeansus.com/christian-audigier-jeans-c-51.html" title="Christian Audigier Jeans">Christian Audigier Jeans</a><a href="http://www.clothing-jeansus.com/dg-jeans-c-54.html" title="D&G Jeans">D&G Jeans</a><a href="http://www.clothing-jeansus.com/ed-hardy-jeans-c-56.html" title="Ed hardy Jeans">Ed hardy Jeans</a><a href="http://www.tnpascher.com/">Chaussures  pas cher</a><a href="http://www.tnpascher.com/jordan-femme-chaussure-c-143.html">Jordan Femme Chaussure</a><a href="http://www.tnpascher.com/mbt-chaussure-c-140.html">MBT Chaussure</a><a href="http://www.tnpascher.com/nike-chaussures-enfant-c-124.html">Nike Chaussures Enfant</a><a href="http://www.tnpascher.com/nike-chaussures-femme-c-72.html">Nike Chaussures Femme</a><a href="http://www.tnpascher.com/nike-chaussures-homme-c-71.html">Nike Chaussures Homme</a><a href="http://www.tnpascher.com/puma-chaussures-femme-c-39.html">Puma Chaussures Femme</a><a href="http://www.tnpascher.com/puma-chaussures-homme-c-38.html">Puma Chaussures Homme</a><a href="http://www.frenchtn.com/">Chaussures Sports</a><a href="http://www.frenchtn.com/ato-chaussures-c-126.html">ATO chaussures</a><a href="http://www.frenchtn.com/mbt-chaussures-c-125.html">MBT chaussures</a><a href="http://www.frenchtn.com/nike-chaussures-femme-c-90.html">Nike Chaussures femme</a><a href="http://www.frenchtn.com/air-max-2009-c-90_100.html">Air Max 2009 femme</a><a href="http://www.frenchtn.com/air-max-2010-c-90_127.html">AIR MAX 2010 femme</a><a href="http://www.frenchtn.com/air-max-95-c-90_128.html">AIR MAX 95 femme</a><a href="http://www.frenchtn.com/air-max-97-c-90_99.html">Air Max 97 femme</a><a href="http://www.frenchtn.com/air-max-ltd-c-90_98.html">Air Max LTD femme</a><a href="http://www.frenchtn.com/air-max-tn-c-90_91.html">Air Max TN femme</a><a href="http://www.air-max-plus.com/">AIR MAX</a><a href="http://www.air-max-plus.com/mbt-anti-chaussures-c-85.html">MBT ANTI-CHAUSSURES</a><a href="http://www.air-max-plus.com/alife-chaussures-c-86.html">ALIFE CHAUSSURES</a><a href="http://www.air-max-plus.com/ato-chaussures-c-87.html">ATO CHAUSSURES</a><a href="http://www.air-max-plus.com/vibram-fivefinger-chaussures-c-88.html">VIBRAM FIVEFINGER CHAUSSURES</a>
at 24/05/2010 15:31

nice post

at 25/05/2010 21:45

wgfwe

Winpromote solutions creates and produces custom printed logo promotion items and <a href=http://www.winpromote.com/category/ >promotional products</a>, imprinted corporate gifts, tradeshow giveaways, promotion merchandise, advertising specialties, corporate gifts, and a wide variety of <a href=http://www.winpromote.com/hot-products/1.html >promotional novelty</a>.
at 3/06/2010 10:06

My discussion

This article gives the light in which we can observe the reality. This is very nice one and gives in depth information. Thanks for this nice article. Good post.....Valuable information for all.
http://naturalpeanutbutter.org
at 9/06/2010 10:42

http://www.4unfl.com

 it is interesting and informative article. This has been very helpful understanding a lot
of things. I’m sure a lot of other people will agree with me.
http://www.4unfl.com
at 10/06/2010 3:52

http://www.babyliss-hair-straightener.com

Hair is the ultimate accessory; it can add to (or detract from) your overall look instantly. Keeping it in healthy condition is the most important thing you can do to help it look and feel fabulous. And, while it seems easy, this isn't as simple as minimizing chemical treatments or slathering on a weekly deep conditioner. While these can make your strands softer and less split-end-prone, what really matters is the daily handling; this is what creates the most stress--and potential damage--to your tresses. To help your locks look their best, we asked top experts from around the country for their advice on how to baby your mane every single day. So whether your concern is dullness, damage, frizz or fragility, we have the answers to ease even the toughest hair-care woes. Read on for tips to achieve run-your-fingers-through-it hair.

<a href="http://www.55lh85.com/">55LH85</a>
<a href="http://www.bestlcdtvtobuy.com/">Best LCD TV To Buy</a>
<a href="http://www.buydiamondearringsonline.org/">Buy Diamond Earrings</a>
<a href="http://www.toydumptruck.net">Toy Dump Truck</a>
<a href="http://www.toydumptruck.net/tonka-toughest-mighty-dump-truck/">Tonka Toughest Mighty Truck</a>
<a href="http://www.roboticdinosaur.org">Robotic Dinosaur</a>
<a href="http://www.roboticdinosaur.org/wowwee-roboraptor-robotic-dinosaur/">wowwee roboraptor robotic dinosaur</a>
<a href="http://www.lionelpolarexpresstrainset.org">Polar Express Train Set</a>
<a href="http://www.lionelpolarexpresstrainset.org/lionel-polar-express-train-set-o-gauge-review/">Lionel Polar Express Train Set</a>
<a href="http://www.huffygreenmachinereview.org">Huffy Green Machine</a>
<a href="http://www.acaciawoodcarvings.com">African Art</a>
<a href="http://www.wheretobuychi.com/chi-flat-iron-website/">chi hair straightener official website</a>
<a href="http://www.wheretobuychi.com/chi-flat-iron-website/">chi hair products official website</a>
<a href="http://www.wheretobuychi.com/chi-flat-iron-website/">chi products official website</a>
<a href="http://www.wheretobuychi.com/chi-flat-iron-website/">chi official website flat iron</a>
<a href="http://www.wheretobuychi.com/chi-flat-iron-website/">official chi website</a>
<a href="http://www.wheretobuychi.com/">Chi Flat Iron</a>
<a href="http://www.buysolia.com/">solia flat iron</a>
<a href="http://www.buysolia.com/solia-vs-sedu-vs-chi/">solia vs sedu</a>
<a href="http://www.buysedu.com/">sedu flat iron</a>
<a href="http://www.buysedu.com/buy-sedu-flat-iron/">sedu pro ionic</a>
<a href="http://www.hai-flat-iron.com/">Hai Flat Iron</a>
<a href="http://www.hai-flat-iron.com/hai-vs-chi/">Hai vs Chi</a>
<a href="http://www.hai-flat-iron.com/hai-flat-iron-reviews/">Hai Flat Iron Reviews</a>
<a href="http://www.hai-flat-iron.com/hai-twig-ceramic-flat-iron/">Hai Twig Ceramic Flat Iron</a>
<a href="http://www.hai-flat-iron.com/hai-stik-ceramic-flat-iron/">Hai Stik Ceramic Flat Iron</a>
<a href="http://www.hai-flat-iron.com/hai-flat-iron-benefits/">Hai Flat Iron</a>
<a href="http://www.babyliss-hair-straightener.com/">Babyliss Hair Straightener</a>
<a href="http://www.babyliss-hair-straightener.com/babyliss-hair-straightener-reviews/">Babyliss Reviews</a>
<a href="http://www.babyliss-hair-straightener.com/babyliss-titanium/">Babyliss Titanium</a>
<a href="http://www.babyliss-hair-straightener.com/babyliss-flat-irons/">Babyliss Flat Irons</a>
<a href="http://www.babyliss-hair-straightener.com/the-babyliss-hair-straightener/">Babyliss Hair Straightener</a>
<a href="http://www.hottoolscurlingironreviews.com/">Hot Tools Curling Iron</a>
<a href="http://www.hottoolscurlingironreviews.com/hot-tools-curling-iron-reviews/">Hot Tools Curling Iron Reviews</a>
<a href="http://www.hottoolscurlingironreviews.com/hot-tools-hair-dryers/">Hot Tools Hair Dryers</a>
<a href="http://www.hottoolscurlingironreviews.com/hot-tools-flat-iron/">Hot Tools Flat Iron</a>
<a href="http://www.hottoolscurlingironreviews.com/why-choose-hot-tools-curling-iron/">Hot Tools Curling Iron</a>
<a href="http://www.wenshampoowarning.com/">Wen Shampoo</a>
<a href="http://www.wenshampoowarning.com/wen-shampoo-reviews/">Wen Shampoo Reviews</a>
<a href="http://www.wenshampoowarning.com/wen-tea-tree/">Wen Tea Tree</a>
<a href="http://www.wenshampoowarning.com/wen-sweet-almond/">Wen Sweet Almond</a>
<a href="http://www.wenshampoowarning.com/wen-shampoo/">Wen Shampoo</a>
at 15/06/2010 5:07

love that

at 16/06/2010 19:19

Re: Create a custom workflow using SharePoint Designer

Dual Standby + Two Speakers
http://www.chinazrh.com/wholesale-40-meter-range-mobile-phone-single-jammer-p-2356.html 40 Meter Range Mobile Phone Single Jammer
http://www.chinazrh.com/wholesale-broad-spectrum-mobile-phone-signal-jammer-p-579.html Broad Spectrum Mobile Phone Signal Jammer
http://www.chinazrh.com/wholesale-dual-band-26-inch-tft-flat-touch-screen-mobile-phone-32mb-memory-p-2295.html Dual Band 2.6 inch TFT Flat Touch Screen Mobile Phone + 32MB Memory
http://www.chinazrh.com/wholesale-dual-band-gsm-standard-mobile-phone-single-sim-p-1956.html Dual band GSM Standard Mobile Phone + Single SIM
http://www.chinazrh.com/wholesale-dual-band-mobile-phone-dual-sim-card-bluetooth-32mb-memory-p-2291.html Dual Band Mobile Phone + Dual SIM Card + Bluetooth + 32MB Memory
http://www.chinazrh.com/wholesale-dual-band-standard-mobile-phone-with-24-inch-screen-p-2026.html Dual band Standard Mobile Phone with 2.4 inch Screen
http://www.chinazrh.com/wholesale-high-capacity-mobile-phone-solar-charger-portable-green-power-p-532.html High Capacity Mobile Phone Solar Charger - Portable Green Power
http://www.chinazrh.com/wholesale-mini-slide-dual-card-dual-standby-dual-bluetooth-24-inch-qvga-mobile-phone-tv-java-wifi-p-2230.html Mini slide Dual card Dual standby Dual Bluetooth 2.4 inch QVGA Mobile Phone + TV+ JAVA + WIFI
http://www.chinazrh.com/wholesale-mobile-phone-recorder-2gb-p-2069.html Mobile phone Recorder + 2GB
http://www.chinazrh.com/wholesale-mobile-phone-signal-detector-40-meter-range-wireless-eavesdropping-as-well-as-videotaping-equipment-p-2179.html Mobile Phone Signal Detector- 40 Meter Range + wireless eavesdropping as well as videotaping equipment
http://www.chinazrh.com/wholesale-mobile-phone-signal-jammer-100-meter-range-p-2177.html Mobile Phone Signal Jammer - 100 Meter Range
http://www.chinazrh.com/wholesale-mobile-phone-signal-jammer-40-meter-range-p-2178.html Mobile Phone Signal Jammer - 40 Meter Range
http://www.chinazrh.com/wholesale-mobile-phone-solar-charger-portable-green-power-supply-p-531.html Mobile Phone Solar Charger - Portable Green Power Supply
http://www.chinazrh.com/wholesale-mobile-phone-solar-charger-portable-green-power-supply-p-533.html Mobile Phone Solar Charger - Portable Green Power Supply
http://www.chinazrh.com/wholesale-portable-gps-mobile-phone-signal-jammer-10-meter-range-p-580.html Portable GPS + Mobile Phone Signal Jammer - 10 Meter Range
http://www.chinazrh.com/wholesale-qaudband-standard-mobile-phonebluetoothdual-card-dual-standbyfm-p-2024.html Qaudband Standard Mobile Phone+Bluetooth+Dual Card Dual Standby+FM
http://www.chinazrh.com/wholesale-quad-band-32-inch-smart-mobile-phone-wifi-moving-tvbluetooth-20-p-2023.html Quad band 3.2 inch Smart Mobile Phone +WIFI + Moving TV+Bluetooth 2.0
http://www.chinazrh.com/wholesale-quad-band-dual-card-dual-standby-mobile-phone-p-1894.html Quad Band Dual Card Dual Standby Mobile Phone
http://www.chinazrh.com/wholesale-quad-band-dual-card-tv-function-mobile-phone-black-p-1397.html Quad band Dual Card TV Function Mobile Phone Black
http://www.chinazrh.com/wholesale-quad-band-mobile-phone-bluetooth-p-2293.html Quad Band Mobile Phone + Bluetooth
http://www.chinazrh.com/wholesale-quad-band-mobile-phone24-inch-screencamerabluetoothmoving-tv-p-2027.html Quad band Mobile Phone+2.4 inch Screen+Camera+Bluetooth+Moving TV
http://www.chinazrh.com/wholesale-quad-band-mobile-phonewificamerabluetooth-p-1985.html Quad band Mobile Phone+WIFI+Camera+Bluetooth
http://www.chinazrh.com/wholesale-quad-band-smart-mobile-phone-with-dual-camerajavatvbluetooth-p-1907.html Quad Band Smart Mobile Phone with Dual Camera+Java+TV+Bluetooth
at 19/06/2010 5:20

Re: Create a custom workflow using SharePoint Designer

http://www.chinazrh.com/wholesale-electronic-cigarette-c-133.html
http://www.chinazrh.com/wholesale-designer-electronic-cigarette-p-300.html Designer Electronic Cigarette
http://www.chinazrh.com/wholesale-electronic-cigarette-1025-l-x-92-diameter-mm-p-1132.html Electronic Cigarette - 102.5 (L) x 9.2 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-105-l-x-92-diameter-mm-p-1257.html Electronic Cigarette - 105 (L) x 9.2 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-108-l-x-92-diameter-mm-p-1258.html Electronic Cigarette - 108 (L) x 9.2 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-110-l-x-85-diametermm-p-296.html Electronic Cigarette - 110 (L) x 8.5 (Diameter)mm
http://www.chinazrh.com/wholesale-electronic-cigarette-1126-l-x-92-diameter-mm-p-1130.html Electronic Cigarette - 112.6 (L) x 9.2 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-1188-l-x-92-diameter-mm-p-1126.html Electronic Cigarette - 118.8 (L) x 9.2 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-148-l-x-141-diameter-mm-p-1128.html Electronic Cigarette - 148 (L) x 14.1 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-155-l-x-114-diameter-mm-p-1127.html Electronic Cigarette - 155 (L) x 11.4 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-93l-x-85-diameter-mm-p-299.html Electronic Cigarette - 93(L) x 8.5 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-97-l-x-8-diameter-mm-p-1125.html Electronic Cigarette - 97 (L) x 8 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-97l-x-85-diameter-mm-p-298.html Electronic Cigarette - 97(L) x 8.5 (Diameter) mm
http://www.chinazrh.com/wholesale-electronic-cigarette-battery-with-manual-switch-p-1148.html Electronic Cigarette - Battery with Manual Switch
http://www.chinazrh.com/wholesale-electronic-cigarette-realistic-flavor-p-1254.html Electronic Cigarette - Realistic Flavor
http://www.chinazrh.com/wholesale-electronic-cigarette-in-cigarillos-style-p-297.html Electronic Cigarette in Cigarillos Style
http://www.chinazrh.com/wholesale-testil-kjsdfkj-olsldfjksdf-p-645.html Electronic Cigarette in Traditional Pack
http://www.chinazrh.com/wholesale-electronic-cigarette-with-realistic-flavor-p-1129.html Electronic Cigarette with Realistic Flavor
http://www.chinazrh.com/wholesale-mini-electronic-cigarette-p-1124.html Mini Electronic Cigarette
at 19/06/2010 5:22

Re: Create a custom workflow using SharePoint Designer

As a respond I ask them which workflow they want to use or have and apparently most of the workflows can be created in SharePoint Designer without writing one line of code.<A HREF="http://peninggi-badan.com">tinggi badan</A>
at 19/06/2010 9:32

vibram five fingers

http://www.christianlouboutindior.com  Christian Louboutin
http://www.christianlouboutindior.com  Jimmy Choo
http://www.christianlouboutindior.com  Yves Saint Laurent
http://www.christianlouboutindior.com/christian-louboutin-pumps-c-66.html  Christian Louboutin Pumps
http://www.christianlouboutindior.com/christian-louboutin-pumps-c-66.html  Buy Christian Louboutin Pumps
http://www.vibram-fivefingers.info  vibram soles
http://www.vibram-fivefingers.info  cheap vibram five fingers
http://www.vibram-fivefingers.info  barefoot shoes
http://www.vibram-fivefingers.info/vibram-five-fingers-womens-kso-c-11.html  Vibram Five Fingers Women's Kso
http://www.vibram-fivefingers.info/vibram-five-fingers-womens-performa-c-12.html  Vibram Five Fingers Women's Performa
http://www.vibram-fivefingers.info/vibram-five-fingers-womens-sprint-c-13.html  Vibram Five Fingers Women's Sprint
http://www.cl-sale.com  yves saint laurent
http://www.cl-sale.com  ysl shoes
http://www.cl-sale.com/yves-saint-laurent-sandals-c-19.html  Yves Saint Laurent Sandals
http://www.cl-sale.com/manolo-blahnik-boots-c-20.html  Manolo Blahnik Boots
http://www.discountedhardy.com  wholesale ed hardy
http://www.discountedhardy.com  buy ed hardy
http://www.discountedhardy.com/ed-hardy-men-apparel-ed-hardy-men-board-shorts-c-43_59.html  ed hardy men board shorts
http://www.discountedhardy.com/ed-hardy-men-apparel-ed-hardy-men-demin-c-43_60.html  ed hardy men demin
http://www.vibramfivefinger.info    Discount Vibram Five Fingers       
http://www.vibramfivefinger.info    Cheap Vibram Five Fingers       
http://www.vibramfivefinger.info/vibram-five-fingers-womens-style-vibram-five-fingers-sprint-c-14_8.html    Vibram Five Fingers Sprint       
http://www.vibramfivefinger.info/vibram-five-fingers-womens-style-vibram-five-fingers-kso-c-14_10.html    Vibram Five Fingers KSO       


at 2/07/2010 10:19

AutoFill

Is it possible that when a user creates a new request the name field gets populated by the person who is logged on.

If So how is this acheived.

John
at 7/07/2010 16:55

wholesale nfl jerseys,hotsale nfl jerseys,cheap nfl jerseys

Hey guys,
I hope this allowed, I have never used this website before so I wasn't really sure what this was going to do. http://www.nfljerseyse.com  So this is just a test post. I really like this forum, it has some excellent discussions that take place.
at 15/07/2010 8:21

Re: Create a custom workflow using SharePoint Designer

at 22/07/2010 16:28

nike watches


http://www.nikelv.com  nike watches http://www.86folk.com miao silver jewelry http://www.abercrombiedeer.com/ abercrombie hoodie
at 24/07/2010 4:08

vibram five fingers

<a href="http://www.vibram-fivefingers.info">vibram five fingers</a>
<a href="http://www.vibram-fivefingers.info">vibram fivefingers</a>
<a href="http://www.vibram-fivefingers.info">vibram five fingers bikila</a>
<a href="http://www.vibram-fivefingers.info">vibram five fingers sale</a>
<a href="http://www.vibramfivefinger.info">Vibram Five Fingers</a>
<a href="http://www.vibramfivefinger.info">vibram bikila</a>



<a href="http://www.discountedhardy.com">ed hardy</a>
<a href="http://www.discountedhardy.com">ed hardy clothing</a>
<a href="http://www.discountedhardy.com">discount ed hardy</a>
<a href="http://www.discountedhardy.com">buy ed hardy</a>
<a href="http://www.discountedhardy.com">don ed hardy</a>

at 26/07/2010 5:53

Re: Create a custom workflow using SharePoint Designer

<a href="http://www.bonus-casino-en-ligne.info/casinos/SupremePlay/">casino supreme play</a>

<a href="http://www.bonus-casino-en-ligne.info/casinos/Euro-Palace/">casino euro palace</a>


<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-neteller.html/">casino neteller</a>


<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-visa.html">casino visa</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-mastercard.html">casino mastercard</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-moneybookers.html">casino moneybookers</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-click2pay.html">casino click 2 pay</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-ecocard.html">casino ecocard</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-virement-bancaire.html">casino virement bancaire</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-ecocard.html">casino ecocard</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-ukash.html">casino ukash</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-paysafecard.html">casino paysafecard</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-clickandbuy.html">casino click and buy</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-entropay.html">casino entropay</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-maestro.html">casino maestro</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-visaelectron.html">casino visa electron</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-cheque.html">casino cheque</a>

<a href="http://www.bonus-casino-en-ligne.info/options-de-paiement/casino-paypal.html">casino paypal</a>
at 27/07/2010 15:20

http://www.christianlouboutindior.com

at 3/08/2010 4:39

Cheap San Francisco Giants Tickets

Keeping it in healthy condition is the most important thing you can do to help it look and feel fabulous. And, while it seems easy, this isn't as simple as minimizing chemical treatments or slathering on a weekly deep conditioner. While these can make your strands softer and less split-end-prone, what really matters is the daily handling; this is what creates the most stress--and potential damage--to your tresses. To help your locks look their best, we asked top experts from around the country for their advice on how to baby your mane every single day.
at 11/08/2010 11:21

perfect bags

<a href=http://www.louis-vuitton-handbags.us/>louis vuitton</a>
<a href=http://www.louis-vuitton-handbags.us/>louis vuitton fake</a>
<a href=http://www.louis-vuitton-handbags.us/>louis vuitton authentic</a>
<a href=http://www.louis-vuitton-handbags.us/2009-cruise-c-80.html>2009 Cruise</a>
at 12/08/2010 10:58

fengye

at 16/08/2010 3:41

Re: Create a custom workflow using SharePoint Designer

You made some truly points there. I did a search on genuine topic and additionally found most people will agree with your weblog.cheap nfl jerseys http://www.gonnadeal.com
at 16/08/2010 5:57

cartier watch

<a href="http://www.excelwatch.com/7-replica-rolex-watch">rolex submariner</a>
<a href="http://www.excelwatch.com/7-replica-rolex-watch">replica rolex submariner watches</a>
<a href="http://www.excelwatch.com">fake rolex watches</a>           
<a href="http://www.excelwatch.com">fake rolex</a>                   
<a href="http://www.excelwatch.com">replica rolex watches</a>        
<a href="http://www.excelwatch.com">fake rolex replica</a>        
<a href="http://www.excelwatch.com">rolex replicas</a>              
<a href="http://www.excelwatch.com">cheap rolex</a>           
<a href="http://www.excelwatch.com">rolex replica swiss</a>          
<a href="http://www.excelwatch.com">fake rolex watches for sale</a>  
<a href="http://www.excelwatch.com">replica rolex</a>              
<a href="http://www.excelwatch.com">rolex replica</a>
<a href="http://www.excelwatch.com">replica watches</a>              
<a href="http://www.excelwatch.com">rolex watches</a>      
<a href="http://www.excelwatch.com/7-replica-rolex-watch">cheap fake rolex </a>
<a href="http://www.excelwatch.com/7-replica-rolex-watch">rolex yacht master </a>
<a href="http://www.excelwatch.com/7-replica-rolex-watch">rolex GMT Master II </a>
<a href="http://www.excelwatch.com/9-replica-omega-watches">omega  replica watches</a>
<a href="http://www.excelwatch.com/13-replica-breitling-watches">breitling replica watches</a>   
<a href="http://www.excelwatch.com/11-replica-cartier-watches">cartier replica watches</a>       
<a href="http://www.excelwatch.com/28-replica-gucci-watches">gucci  replica watches</a>           
<a href="http://www.excelwatch.com/18-replica-patek-philippe-watches">patek phillipe watches</a>
<a href="http://www.excelwatch.com/9-replica-omega-watches">omega watches</a>
<a href="http://www.excelwatch.com/19-replica-movado-watches">movado replica watches</a>
<a href="http://www.excelwatch.com/10-replica-tag-heuer-watches">replica tag heuer watches</a>
<a href="http://www.excelwatch.com/28-replica-gucci-watches">fake gucci watches</a>
<a href="http://www.excelwatch.com/23-replica-watch-box">watch boxes</a>
<a href="http://www.excelwatch.com/9-replica-omega-watches">omega replica watches</a>
<a href="http://www.excelwatch.com/11-replica-cartier-watches">cartier replica watches</a>
at 16/08/2010 8:27

http://www.vibramfivefingersitaly.com

at 17/08/2010 6:00

http://www.vibramfivefingersitaly.com

at 17/08/2010 6:19

tiffany bracelets

at 17/08/2010 18:44

vibram five fingers

at 18/08/2010 9:50

beautiful hair

<a href=http://www.salehairstraightener.com/>straighteners ghd</a>
<a href=http://www.salehairstraightener.com/>new hair straighteners</a>
<a href=http://www.salehairstraightener.com/pink-is-back-for-2010-p-6.html>hair straighteners best</a>
<a href=http://www.salehairstraightener.com/black-danger-p-12.html>curly black</a>
<a href=http://www.salehairstraightener.com/blue-serenity-p-7.html>straighteners hair</a>
<a href=http://www.salehairstraightener.com/green-envy-p-8.html>hair mini straighteners</a>
<a href=http://www.salehairstraightener.com/ghd-iv-mini-styler-p-3.html>mini straighteners</a>
<a href=http://www.salehairstraightener.com/pink-elegance-p-13.html>pink straighteners</a>
<a href=http://www.salehairstraightener.com/purple-indulgence-p-10.html>hair straighteners mini</a>
<a href=http://www.salehairstraightener.com/red-lust-p-11.html>hair ceramic straighteners</a>
<a href=http://www.salehairstraightener.com/ghd-iv-salon-styler-p-4.html>wide straighteners</a>
<a href=http://www.salehairstraightener.com/ghd-iv-styler-p-5.html>straighteners cheap</a>
<a href=http://www.salehairstraightener.com/ghd-limited-edition-radiance-set-p-18.html>travel hair straighteners</a>
<a href=http://www.salehairstraightener.com/ghd-standard-styler-p-17.html>hair straighteners cordless</a>
<a href=http://www.salehairstraightener.com/black-and-silver-baroque-p-14.html>hair straighteners babyliss</a>
<a href=http://www.salehairstraightener.com/professional-1-original-styler-p-15.html>remington hair straighteners</a>
<a href=http://www.salehairstraightener.com/the-rare-styler-p-16.html>hair corioliss</a>
at 18/08/2010 10:02

http://www.vibramfivefingersitaly.com

at 18/08/2010 11:46

Stainless Steel Jewelry Made in China

Supply:

Stainless Steel Ring: http://www.made-in-china.com/products-search/hot-china-products/Stainless_Steel_Ring.html

Stainless Steel Earring: http://www.made-in-china.com/products-search/hot-china-products/Stainless_Steel_Earring.html 

Tungsten Ring: http://www.made-in-china.com/products-search/hot-china-products/Tungsten_Ring.html

Best prices and hiqh quality guaranteed!

Free shipping and product reviews on all stainless steel jewelry products made in China.
at 24/08/2010 9:03

Re: Create a custom workflow using SharePoint Designer

Kindly please read the latest post on my kids toy show blog( http://www.kids-toy-online.com/) - Frisby: iPhone Remote Control Toy Helicopter, welcome to view it and leave your comments freely. Thanks
at 24/08/2010 9:09

Re: Create a custom workflow using SharePoint Designer

I'd like to recommend following blogs i visited often:

http://china-gift-art-products.blogspot.com/ - China Fine Crafts & Gifts

http://www.best-home-furnishings.com/ - best home furnishings;

http://www.wholesale-jewelry-online.com/ - wholesale fashion jewelry;

http://www.chinagift-art.com/ - novelty gifts & creative gadgets;

http://www.usefulgardentools.com/ - useful gardening tips</a>
at 24/08/2010 9:14

http://www.babyliss-hair-straightener.com

<a href="http://ezinearticles.com/?No-More-Harsh-Chemicals-With-Wen-Shampoo&id=4877972">Wen Shampoo</a>
<a href="http://www.articlesnatch.com/Article/Wen-Shampoo-Contains-All-Natural-Ingredients/1471834">Wen Shampoo Products</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3264023">Wen Shampoo</a>
<a href="http://ezinearticles.com/?Wen-Cleansing-Conditioner-Creates-Healthy-Looking-Hair&id=4878080">Wen Cleansing Conditioner</a>
<a href="http://www.articlesnatch.com/Article/Wen-Cleansing-Conditioner/1471846">Wen Conditioner</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3264042">Wen Cleansing Conditioner</a>
<a href="http://ezinearticles.com/?Wen-Tea-Tree-Cleansing-Conditioner&id=4878173">Wen Tea Tree</a>
<a href="http://www.articlesnatch.com/Article/Wen-Tea-Tree-Cleansing-Conditioner/1471867">Wen Tea Tree Conditioner</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3264056">Wen Tea Tree Cleansing Conditioner</a>
<a href="http://ezinearticles.com/?Wen-Sweet-Almond-Mint-Cleansing-Conditioner&id=4878334">Wen Sweet Almond</a>
<a href="http://www.articlesnatch.com/Article/Wen-Sweet-Almond/1471877">Wen Sweet Almond Mint</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3264069">Wen Sweet Almond Mint Cleansing Conditioner</a>
<a href="http://ezinearticles.com/?Wen-Fig-Cleansing-Conditioner-is-Hot&id=4878389">Wen Fig Cleansing Conditioner</a>
<a href="http://www.articlesnatch.com/Article/Wen-Fig-Cleansing-Conditioner/1471895">Wen Fig Conditioner</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3264077">Wen Fig Conditioner</a>
<a href="http://ezinearticles.com/?The-Hai-Flat-Iron-Makes-Hairstyling-Affordable&id=4734685">Hai Flat Iron</a>
<a href="http://www.buzzle.com/articles/hai-flat-iron.html">Hai Flat Iron</a>
<a href="http://www.squidoo.com/the-hai-flat-iron">Hai Hair Flat Iron</a>
<a href="http://www.articlesnatch.com/Article/The-Hai-Flat-Iron-Works-Great-For-Me/1447414">Hai Flat Iron</a>
<a href="http://www.articledashboard.com/Article/The-Hai-Flat-Iron-Gets-The-Job-Done/1789123">Hai Flat Iron</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3228049">Hai Flat Iron</a>
<a href="http://www.amazines.com/article_detail.cfm/1929381?articleid=1929381">Hai Flat Iron</a>
<a href="http://www.articlesnatch.com/Article/The-Hai-Convertible-Ceramic-Flat-Iron/1447441">Hai Convertable Flat Iron</a>
<a href="http://ezinearticles.com/?The-Hai-Convertable-Ceramic-Flat-Iron&id=4734711">Hai Convertible Ceramic Flat Iron</a>
<a href="http://www.buzzle.com/articles/the-hai-convertable-ceramic-flat-iron-creates-professional-styles.html">Hai Convertable Ceramic Flat Iron</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3228060">Hai Convertible Flat Iron</a>
<a href="http://ezinearticles.com/?The-Hai-2-Ceramic-Flat-Iron-is-New-and-Improved&id=4734748">Hai 2 Flat Iron</a>
<a href="http://www.buzzle.com/articles/hai2-ceramic-flat-iron.html">Hai 2</a>
<a href="http://www.squidoo.com/the-hai-flat-iron/">Hai 2 Flat Iron</a>
<a href="http://www.articledashboard.com/Article/The-New-Hai-2-Ceramic-Flat-Iron/1789172">Hai 2 Ceramic Flat Iron</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3228073">Hai 2 Flat Iron</a>
<a href="http://ezinearticles.com/?Even-Difficult-Hair-Can-Be-Tamed-With-the-HAI-Twig-Ceramic-Flat-Iron&id=4734794">Hai Twig Ceramic Flat Iron</a>
<a href="http://www.squidoo.com/the-hai-flat-iron/">Hai Twig Ceramic Flat Iron</a>
<a href="http://ezinearticles.com/?Hai-Stik-Ceramic-Flat-Iron&id=4734922">Hai Stik Ceramic Flat Iron</a>
<a href="http://www.squidoo.com/the-hai-flat-iron/">Hai Stik Flat Iron</a>
<a href="http://www.articlesnatch.com/Article/Hai-Stik-Ceramic-Flat-iron/1447473">Hai Stik Ceramic Flat Iron</a>
<a href="http://ezinearticles.com/?Solia-Flat-Iron&id=4231237">Solia Flat Iron</a>
<a href="http://www.buzzle.com/articles/the-solia-flat-iron-is-hot.html">Solia Flat Iron</a>
<a href="http://www.articlesnatch.com/Article/The-Benefits-Of-The-Solia-Flat-Iron/1136763">Solia Flat Iron</a>
<a href="http://productreviews7.blogspot.com/2010/05/why-buy-solia-flat-iron.html">Buy Solia</a>
<a href="http://productreviews7.vox.com/library/post/why-customers-are-raving-about-the-solia-flat-iron.html">Solia Flat Iron</a>
<a href="http://ezinearticles.com/?Solia-Flat-Iron-Or-Sedu-Flat-Iron?&id=4171196">Solia vs Sedu</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=2868815">Solia Flat Iron</a>
<a href="http://www.articledashboard.com/Article/The-Solia-Flat-Iron-Creates-Beautiful-Hair-Styles/1575859">Solia Flat Iron</a>
<a href="http://productreviews7.tumblr.com/post/581663766/buy-the-solia-flat-iron-for-sexy-hair">Solia Flat Iron</a>
<a href="http://mgriff7.bravejournal.com/entry/50196">Solia Flat Iron</a>
<a href="http://ezinearticles.com/?Solia-Flat-Iron-Or-Sedu-Flat-Iron?&id=4171196">Sedu Flat Iron</a>
<a href="http://ezinearticles.com/?The-Sedu-Flat-Iron&id=4257269">Sedu Flat Iron</a>
<a href="http://www.buzzle.com/articles/sedu-flat-iron-new-technology.html">Sedu Flat Iron</a>
<a href="http://mgriff7.tripod.com/blog/index.blog/2020389/how-the-sedu-flat-iron-has-improved-styling/">Sedu Flat Iron</a>
<a href="http://mgriff7.xanga.com/727237371/the-sedu-flat-iron-gets-salon-quality-results/">Sedu Flat Irons</a>
<a href="http://productreviews.jimdo.com/2010/05/16/why-customers-are-raving-about-the-sedu-flat-iron/">Sedu Flat Iron</a>
<a href="http://productreviews7.blogspot.com/2010/05/why-sedu-flat-iron-is-so-popular.html">Sedu Flat Iron</a>
<a href="http://productreviews7.vox.com/library/post/buy-the-sedu-flat-iron.html">Buy Sedu</a>
<a href="http://productreviews7.wordpress.com/2010/05/16/what-you-should-know-about-the-sedu-flat-iron/">Sedu Flat Irons</a>
<a href="http://www.articlesnatch.com/Article/Is-The-Sedu-Flat-Iron-Any-Good-/1166401">Sedu Flat Iron</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=2897076">Sedu Flat Irons</a>
<a href="http://www.amazines.com/article_detail.cfm/1637708?articleid=1637708">Buy Sedu</a>
<a href="http://www.articledashboard.com/Article/What-You-Should-Know-About-The-Sedu-Flat-Iron/1576541">Sedu Flat Iron</a>
<a href="http://ezinearticles.com/?The-Chi-Flat-Iron-is-More-Affordable-Than-Ever&id=4486449">Chi Flat Irons</a>
<a href="http://www.buzzle.com/articles/the-chi-flat-iron-is-a-great-alternative-to-the-high-priced-hair-tools.html">Chi Ceramic Flat Iron</a>
<a href="http://www.articlesnatch.com/Article/The-Chi-Flat-Iron-Is-Still-A-Great-Hairstyling-Tool/1245565">Farouk Chi Flat Iron</a>
<a href="http://hotnewbeautyproducts.weebly.com/">Chi Flat Iron</a>
<a href="http://productreviews7.blogspot.com/2010/06/chi-flat-iron.html">Chi Flat Irons</a>
<a href="http://productreviews7.wordpress.com/2010/06/17/the-original-chi-flat-iron/">Chi Ceramic Flat Iron</a>
<a href="http://www.articledashboard.com/Article/Get-The-Chi-Flat-Iron-At-Half-Off/1666080">Farouk Chi Flat Iron</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=3012450">Chi Flat Iron</a>
<a href="http://www.amazines.com/article_detail.cfm/1748050?articleid=1748050">Chi Flat Irons</a>
<a href="http://mgriff7.tripod.com/blog/index.blog/2030364/chi-flat-iron/">Chi Ceramic Flat Iron</a>
<a href="http://productreviews.jimdo.com/2010/06/18/the-affordable-chi-flat-iron/">Farouk Chi Flat Iron</a>
<a href="http://productreviews7.vox.com/library/post/chi-ceramic-flat-iron.html">Chi Flat Iron</a>
<a href="http://productreviews7.multiply.com/journal/item/20/Chi_Flat_Irons_-_Affordable_Prices">Chi Flat Irons</a>
<a href="http://mgriff7.bravejournal.com/entry/51283">Chi Ceramic Flat Iron</a>
<a href="http://ezinearticles.com/?The-Lionel-Polar-Express-Train-Set-Will-Delight-For-Years-to-Come&id=3327727">Lionel Polar Express Train Set</a>
<a href="http://www.amazines.com/Recreation_and_Leisure/article_detail.cfm/1236947?articleid=1236947">Lionel Polar Express Train Set</a>
<a href="http://productreviews7.multiply.com/journal/item/4/The_Lionel_Polar_Express_Train_Set_Will_Enchant_For_Years_To_Come">Polar Express Train Set</a>
<a href="http://productreviews7.tumblr.com/post/261458554/lionel-polar-express-train-set-first-rate-or-inferior">Polar Express Train Set</a>
<a href="http://productreviews7.vox.com/library/post/the-lionel-polar-express-train-set-will-become-a-new-family-tradition.html">Polar Express Train Set</a>
<a href="http://www.squidoo.com/lionelpolarexpresstrainsetreview">Polar Express Train Set</a>
<a href="http://productreviews7.blogspot.com/2009/11/lionel-polar-express-train-set.html">Lionel Polar Express Train Set</a>
<a href="http://ezinearticles.com/?How-to-Find-the-Best-Chi-Flat-Iron-Website&id=3831060">Chi Flat Iron Website</a>
<a href="http://productreviews7.blogspot.com/2010/03/authentic-chi-products-at-best-chi-flat.html">Chi Flat Iron Official Website</a>
<a href="http://productreviews7.multiply.com/journal/item/15/Official_Chi_Website">Chi Flat Iron Website</a>
<a href="http://ezinearticles.com/?Discover-Where-to-Buy-Authentic-CHI-Products&id=3822306">Buy Chi</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=2620066">Chi Ceramic Turbo Flat Iron</a>
<a href="http://ezinearticles.com/?The-Chi-Ceramic-Turbo-Flat-Iron&id=3824159">Chi Ceramic Turbo Flat Iron</a>
<a href="http://ezinearticles.com/?5-Wonderful-Qualities-of-the-CHI-Brush&id=3831009">Chi Brush</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=2623982">Chi Brushes</a>
<a href="http://www.squidoo.com/ToyDumpTruck">Toy Dump Truck</a>
<a href="http://productreviews7.vox.com/library/post/toy-dump-truck-a-wonderful-toy.html">Toy Dump Truck</a>
<a href="http://productreviews7.blogspot.com/2009/11/opposite-of-video-game-toy-dump-truck.html">Toy Dump Truck</a>
<a href="http://www.buzzle.com/articles/what-ever-happened-to-the-good-old-toy-dump-truck.html">Toy Dump Truck</a>
<a href="http://ezinearticles.com/?The-Toy-Dump-Truck---What-a-Great-Toy&id=3296550">Toy Dump Truck</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=2435949">Buy Diamond Earrings</a>
<a href="|http://ezinearticles.com/?How-to-Buy-Diamond-Earrings-Online&id=3510513">Buy Diamond Earrings Online</a>
<a href="http://www.goarticles.com/cgi-bin/showa.cgi?C=2435936">Best LCD TV</a>
<a href="http://www.buzzle.com/articles/finding-the-best-lcd-tv-to-buy.html">Best LCD TV To Buy</a>
<a href="http://ezinearticles.com/?How-to-Find-the-Best-LCD-TV-to-Buy&id=3510461">Best LCD TV To Buy</a>
<a href="http://ezinearticles.com/?The-55LH85---A-Great-Wireless-Television&id=3510560">55lH85</a>
<a href="http://ezinearticles.com/?The-Huffy-Green-Machine---A-Thrill-of-a-Ride&id=3327120">Huffy Green Machine</a>
<a href="http://www.buzzle.com/articles/the-huffy-green-machine-a-very-durable-toy.html">Huffy Green Machine</a>
at 25/08/2010 0:44

Re: Create a custom workflow using SharePoint Designer

Cheers for the very helpful hints! You hsve made the whole process very easy for us to follow and i'll definitely be making a note of this the next time I need to reset my settings.
<a href="http://currentnewsbulletin.wordpress.com/">larissa riquelme paraguay/</a>
at 26/08/2010 3:37

UGG Classic Argyle Knit

<b><a href="http://www.socheapbag.com">wholesale cheap Chanel</a></b>
<b><a href="http://www.socheapbag.com/">cheap Chanel handbag</a></b>
<b><a href="http://www.socheapbag.com/">cheap louis vuitton handbags</a></b>
<b><a href="http://www.socheapbag.com/">cheap gucci handbags</a></b>
<b><a href="http://www.nfljerseysweb.com/mlb-jerseys/boston-redsox">Boston RedSox jerseys</a></b>
<b><a href="http://www.nfljerseysweb.com/mlb-jerseys/boston-redsox">Boston RedSox apparel</a></b>
<b><a href="http://www.nfljerseysweb.com/mlb-jerseys/boston-redsox">Boston RedSox shirts</a></b>
<b><a href="http://www.okbootsmall.com/cardy-ugg-boots">Ugg Boots</a></b>
<b><a href="http://www.okbootsmall.com/classic-crochet-uggs-5833">Cheap Classic Crochet Uggs 5833</a></b>
<b><a href="http://www.okbootsmall.com">ugg boots sale</a></b>
<b><a href="http://www.okbootsmall.com/classic-short-ugg-boots">Classic Short Ugg Boots</a></b>
<b><a href="http://www.ugg-boots-net.com/ugg-roxy-boots-c-795.html">UGG Roxy Boots</a></b>
<b><a href="http://www.ugg-boots-net.com">Cheap Classic UGG Boots</a></b>
<b><a href="http://www.ugg-boots-net.com/ugg-classic-short-camo-c-797.html">UGG Classic Short Camo</a></b>
<b><a href="http://www.ugg-boots-net.com/ugg-classic-argyle-knit-c-798.html">UGG Classic Argyle Knit</a></b>



at 27/08/2010 13:25

jordan retro shoes

The <a href="http://www.sneaker4less.com"><strong>Jordan Air Retro</strong></a> were equipped with a double stack Air jordan Sole unit in the heel combined with a full length zoom air and bag.The most comfortable <a href="http://www.rockbottomkicks.com"><strong>Air Jordan Retro</strong></a> ever released.Material used Air Jordan 19 never associated shoe wear design before.Industrial braided sleeving main ingredient design material used automotive industry.
at 1/09/2010 11:17

 north face  

Much deep description to your option <a href="http://www.onlinep90x.com/">p90x for sale</a>,you also can support <a href="http://www.onlinep90x.com/">discount p90x dvd</a>,also visit <a href="http://www.onlinep90x.com/">cheap p90x dvd</a>.

Great,It is very benefit for me,and you can find <a href="http://www.northfaceoutlet.net/">north face outlet</a>,they supply many style of <a href="http://www.northfaceoutlet.net/">north face jackets</a>,the brand of <a href="http://www.northfaceoutlet.net/">north face</a> is well known.

Thank you for your post,nice to see your blog here <a href="http://www.uggssalecheap.com/">cheap uggs</a>,and the <a href="http://www.uggssalecheap.com/">uggs sale online</a> become much popular,and a new trend to enlarge <a href="http://www.uggssalecheap.com/">uggs</a> business.
at 2/09/2010 10:03

Add Comment

Title


Body *


Your name


Attachments
Captcha

Enter the code shown above: *

(Note: If you cannot read the numbers in the above
image, reload the page to generate a new one.)