Thomas Stock
Thomas Stock

Reputation: 11256

Getting started with Workflows in SharePoint 2010

I'm a starting sharepoint developer asked to implement the following scenario in sharepoint 2010. We're a bit lost on the best approach to get started.. I'm really struggling to find the best practise solution.

This is the requested flow:

So the list has the following fields:

The user should see the following form:

The representative should see the following form:

The Board should see the following form:

My questions:

Thanks in advance for any advice.

Upvotes: 3

Views: 816

Answers (1)

John Ptacek
John Ptacek

Reputation: 1886

Regarding some of your questions.... I am not 100% sure, but in the 2007 version, InfoPath was an enterprise function. So the use of InfoPath may be a function of the version you have (Foundation vs 2010 Enterprise).

SPD may be a good start for you, especially since you can now export your SPD developed workflows and import them into VS 2010 to update the functionality.

Regarding the board editing... Based on your security implementation (FBA vs AD) you probably want to do some kind of role check on the load of the edit form. I would probably start by having a ASPX form (not Infopath) that you can determine the type of user you have. Based on the user, you can display or not display appropriate fields and fire up event handlers to buttons as need be.

I would most likely start with a sequential workflow since you do not have numerous steps that need to be worried about. State Workflows are for more complex implementations.

Upvotes: 1

Related Questions