I have created an action to update the worklist item and we are updating the work item using the K2 API with the following code:
SourceCode.Workflow.Client.WorklistItem wi;
wi.ProcessInstance.DataFields["TestDF"].Value = "2";
wi.Actions["UpdateWorkItem"].Execute();
As shown in the following example:
http://help.k2.com/en/kb000307.aspx
My issue is that this doesn’t update the _ProcInstData table in the K2Log database for reporting? So after the process is complete where do I get the Process data for reporting?