Hi, bit of a long shot here.
I need to be able to create/delete tasks on users exchange mailboxes from SQL2005 when certain triggers are fired.
I have a table containing a list of tasks allocated to different employees. Columns are as follows:
TaskID - Unique Task ID (PK)
TaskEmployeeID - Employee ID (identical to domain user name)
TaskStartDate - Start Date of Task
TaskDueDate - Due Date of Task
TaskEndDate - End Date of Task
TaskDetail - Detail of Task
TaskCategory - Task Category
Basically, whenever a task is assigned to an employee, I need a trigger to raise a task in that employee's Outlook task list. Also, when a task is re-assigned to a different user, I need it to be deleted from the original employee's task list.
I can handle updating SQL when a task is completed using an Outlook Macro, just stuck on connecting to the mailboxes from SQL. Any ideas?
I need to be able to create/delete tasks on users exchange mailboxes from SQL2005 when certain triggers are fired.
I have a table containing a list of tasks allocated to different employees. Columns are as follows:
TaskID - Unique Task ID (PK)
TaskEmployeeID - Employee ID (identical to domain user name)
TaskStartDate - Start Date of Task
TaskDueDate - Due Date of Task
TaskEndDate - End Date of Task
TaskDetail - Detail of Task
TaskCategory - Task Category
Basically, whenever a task is assigned to an employee, I need a trigger to raise a task in that employee's Outlook task list. Also, when a task is re-assigned to a different user, I need it to be deleted from the original employee's task list.
I can handle updating SQL when a task is completed using an Outlook Macro, just stuck on connecting to the mailboxes from SQL. Any ideas?