Skip to main content

Hi there,


I have declared a process Data Field in "Process/Activity Data". Now I want to assign it values at run time from process activity boxes e.g. "value1" in Activity Box 1, "value2" in Activity Box 2, and so on. Is there a possible way of doing this?


Thanks


Abdul

I assume you've added a server event (code) in your activity? If you can can use:


K2.ProcessInstance.DataFields["YourDataField"].value = "Some Value" ;


(The syntax may be slightly different, this is off the top of my head)


Thanks Tentino. The task is achieved. :)


Reply