W
Wojciech
With the following script:
for each currenttask in GECustomerService.Items
if currenttask.status = 0 then
notstarted = notstarted + 1
elseif currenttask.status = 1 then
inprogres = inprogres + 1
elseif currenttask.status = 2 then
completed = completed + 1
end if
next
I get an error message with some of the Public Folders (with some
not). The error 800A1000 message is:
"One or more Items in the folder you synchronized do not match. To
resolve the conflict, open the items, and try this operation again."
Does anybody know how to solve it? I made sure the tasks are not
worked on while perfoming my count, so open items shouldn't be the
issue.
Wojciech
PS I need it urgently, pls.
for each currenttask in GECustomerService.Items
if currenttask.status = 0 then
notstarted = notstarted + 1
elseif currenttask.status = 1 then
inprogres = inprogres + 1
elseif currenttask.status = 2 then
completed = completed + 1
end if
next
I get an error message with some of the Public Folders (with some
not). The error 800A1000 message is:
"One or more Items in the folder you synchronized do not match. To
resolve the conflict, open the items, and try this operation again."
Does anybody know how to solve it? I made sure the tasks are not
worked on while perfoming my count, so open items shouldn't be the
issue.
Wojciech
PS I need it urgently, pls.