Getting list of activities for current workflow from workflow execution code

Hi,

During my workflow, I want to get a list of all activities that were completed as part of that workflow (along with result values of those activities). Is it possible to get this list?

Thanks in advance for help!

Sachin

The simplest is to store the activity and results in a variable inside the workflow. Then use query feature to return the results.

Thanks! I will try that.