Skip to main content
Nintex Community Menu Bar

Empty Folio

  • April 14, 2009
  • 4 replies
  • 15 views

Forum|alt.badge.img+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

Forum|alt.badge.img+8
  • April 15, 2009
Are you setting the folio while integrating the infopath with the workflow

Forum|alt.badge.img+4
  • Author
  • April 15, 2009
I am not using infopath, I am using aspx forms. Just not sure how to set it up. Thanks

Forum|alt.badge.img+9
  • Nintex Partner
  • April 15, 2009

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.


Forum|alt.badge.img+5
  • April 15, 2009

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