// 2.) activate the scope of the unit
coordinator.getDialogState().activateScope(targetUnit);
// 3.) activate the unit itself
SystemEvent activationEvent = new SystemEvent(CommonQNames.ACTIVATION_ID);
activationEvent.setPayload(targetUnit);
coordinator.fireEvent(activationEvent);
}
});