1. In the Workflow, define a global String variable. example: eeComment.
2. In the Assigned Activity task:
a) define a String variable. example: eeComment. "Copy into" and "Initialize From" the global variable defined in step 1. Only select "Resetable"
b) within the desired "Transitions" use this java code:
wt.workflow.work.WfAssignedActivity activity = (wt.workflow.work.WfAssignedActivity) self.getObject();
wt.workflow.engine.ProcessData actData = activity.getContext();
eeComments = actData.getTaskComments();
c) Click on "Check Syntax"
3. The global String variable, populated in step 2, shall be available in the "Notification Robot". Be sure to select the variable using the "Variable" comand button located on the "Message" tab in the Notification Robot.
I hope this make sense... 