Click here to Skip to main content
16,021,209 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am making a sharepoint state machine workflow on a document library
in my library i have people picker field "reviewers" that may contain a values like this

reviewer1;reviewer2; reviewer3;

now in my workflow on createtask event i am writing something as below

createTaskForQD.TaskId = Guid.NewGuid();
createTaskForQD_TaskProperties1.Title = "Review Document";
createTaskForQD_TaskProperties1.AssignedTo = workflowProperties.Item["reviewers"].ToString();


after running when i check in the task list the "AssignedTo" field is empty?
what should i do?? help
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900