To set a message, use setFlash:
You need to use setflash method of session to set your message.
// In the controller.
$this->Session->setFlash('Your stuff has been saved.');
Use the following code in your .ctp file where you wnat to display the message.
echo $this->Session->flash();
This will display the message in your .ctp file