I have following code...
public void RenameProcess(Int32 wfID, String val)
{
OpenText.Livelink.Service.WorkflowService.WorkflowService ws = new WorkflowService();
ws.Authentication = GetAdminAuthentication();
ProcessInstance procInst = ws.GetProcessStatus(wfID, wfID);
procInst.Title = val;
}
I get no errors and I check the Title property of ProcessInstance in the last line with debugger and I can see it gets changed but when I check in livelink it is still the same old value.
So do I need to call any additional "update" method or something else on processinstance objekt?
Please help, it's urgent.
Thx,
Danijel