Can the folio be renamed after the process has started? If so, please provide info to do so. Thanks.
Page 1 / 1
Hi Tammie,
The folio can be modified at any stage. The code would be as follows in a server event:
VB:
Sub Main(ByVal K2 As ServerEventContext)
K2.Synchronous = True
K2.ProcessInstance.Folio = "Your Folio"
End Sub
C#
public void Main(ServerEventContext K2)
{
K2.Synchronous = true;
K2.ProcessInstance.Folio = "Your Folio";
}
The folio can be modified at any stage. The code would be as follows in a server event:
VB:
Sub Main(ByVal K2 As ServerEventContext)
K2.Synchronous = True
K2.ProcessInstance.Folio = "Your Folio"
End Sub
C#
public void Main(ServerEventContext K2)
{
K2.Synchronous = true;
K2.ProcessInstance.Folio = "Your Folio";
}
Thanks Conrad :!:
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.