Showing posts with label Workflow. Show all posts
Showing posts with label Workflow. Show all posts
Wednesday, July 21, 2010
Implementing Multiple Documents Approval Workflow in SharePoint 2007
http://rajeshagadi.blogspot.com/2010/04/implementing-multiple-documents.html
Monday, July 12, 2010
Sharepoint Workflow Programming (User Profile)
http://www.sharepointdev.net/sharepoint--development-programming/get-user-profile-using-display-name-in-sharepoint-51923.shtml
http://msdn.microsoft.com/en-us/library/microsoft.office.server.servercontext.aspx
http://karinebosch.wordpress.com/sharepoint-controls/peopleeditor-control/
http://simplesharepointsolutions.blogspot.com/2009/06/how-to-populate-custom-contact-list.html
Providing the fact that your user column only accepts users (not groups) and only a single value :
using (SPSite Site = new SPSite("yoursite"))
{
using (SPWeb Web = Site.OpenWeb())
{
SPListItem Itm = Web.Lists["TheList"].GetItemById(1);
SPFieldUserValue UserValue = new SPFieldUserValue(Web,Itm["UserCol"].ToString());
Console.WriteLine(string.Format("Email : {0}\r\nLogin :{1}",
UserValue.User.Email,
UserValue.User.LoginName));
}
}
http://msdn.microsoft.com/en-us/library/microsoft.office.server.servercontext.aspx
http://karinebosch.wordpress.com/sharepoint-controls/peopleeditor-control/
http://simplesharepointsolutions.blogspot.com/2009/06/how-to-populate-custom-contact-list.html
Providing the fact that your user column only accepts users (not groups) and only a single value :
using (SPSite Site = new SPSite("yoursite"))
{
using (SPWeb Web = Site.OpenWeb())
{
SPListItem Itm = Web.Lists["TheList"].GetItemById(1);
SPFieldUserValue UserValue = new SPFieldUserValue(Web,Itm["UserCol"].ToString());
Console.WriteLine(string.Format("Email : {0}\r\nLogin :{1}",
UserValue.User.Email,
UserValue.User.LoginName));
}
}
Wednesday, August 12, 2009
Friday, June 26, 2009
Task Escalation using Workflows
http://sharepointsolutions.blogspot.com/2008/10/task-escalation-using-workflows.html
Subscribe to:
Posts (Atom)