function finishAndRedirectToContext($obj, $message) {
		$scout = $this->getScout();
		$referrerId = $scout->getReferrerId($this->requestData);
		// normally the request is POSTed by a form that was already
		// in de edit details context, but theoretically it is possible
		// that the sender of the request want to move the action 'up'
		// so that it redirects back to itself
		$context = $this->getReqParam('pntScd') == 'u'
			? $scout->getFootprintHref($referrerId)
			: $this->getContextHref($referrerId);
		if ($context) {
			$newReq = $context;
		} else {
			// No context. forward to same type listpage
			$newReq = array('pntType' => $this->getType() );
		}			
		
		return $this->redirectRequest($newReq, $message);
	}