R – SharePoint Approval

sharepointsharepoint-2007workflow

I need to add sharepoint approval to a list… and I was hoping to use the default approval process… but… I need to run some code once an item is approved. Do I have to then use VS to create a custom workflow?

I need to run some code that currently runs in an event reciever. I need to move the code to another function (as we are moving the processing out of event reciever code and now based on item approval). This code would execute after the item is approved and can be hosted as a service or .net code.

Best Answer

Full commented source to a state-machine based approval workflow comes with the MOSS SDK 1.5 in the samples directory.

http://www.microsoft.com/downloads/details.aspx?familyid=6D94E307-67D9-41AC-B2D6-0074D6286FA9

-Oisin

Related Topic