Empty Folio

  • 14 April 2009
  • 4 replies
  • 1 view

Badge +4

All my workflow items have  an "Empty Folio", what am i missing on my process? How can i make sure that the folio gets populated?


 Thank you


4 replies

Badge +8
Are you setting the folio while integrating the infopath with the workflow
Badge +4
I am not using infopath, I am using aspx forms. Just not sure how to set it up. Thanks
Badge +9

In the ProcessInstance object, there should be a Folio field.  You can also set this in the process using a server event.  The K2 context object should also have a similar Folio field.


 There should be various samples in the SDK documentation included with the product install.

Badge +5

Hi,


When you create the Process Instance you need to set the folio before starting it as per the example below :


ProcessInstance pi = k2Conn.CreateProcessInstance("someprojsomeproc");


pi.Folio = "SomeFolio";


//Do Stuff


 


Kind Regards,


Gert

Reply