Hi,
I'm trying to use Web Services to add a Task List into livelink from an excel page. I handle the Excel Page and extract the data off of into a DataTable object. I read thorugh all the rows in the data table as follows:
foreach (DataRow row in excelReadout.Rows)
{
Collaboration.TaskInfo into = new Collaboration.TaskInfo();
//need help here
fCollaborativeService.CreateTask(fCollabAtuh, info);
}
The spread sheet has values for the Name, AssignedTo, StartDate, DueDate, Instruction and Comments field. If i cycle through, assigned these properties in the for loop before creating the task, will it work? Namely, will a proper ID value be generated, and if not, how do I get a unique ID to assign the new task? I'm assuming the parentID is the name of the tasklist you want to assign the new task to correct? and the parentID of the tasklist is the folder it's located under? Sorry I'm jsut not entirely clear on the task list structure.
Thanks in advance!