       /*********************************************
        METHODS FOR ${child_bo_name}
	*********************************************/

	/**
	 * lookup YYYY
	 *@param key Key
	 *@return ${child_bo_name}
	*/
	public ${child_bo_name} lookup${child_bo_name}(String key) throws BOException {
		${child_bo_name} object = createCheck${child_bo_name}();
		try {
			// map the row to the bo implementation
			Row     row = dataFacade.getRow(key);
			((RowBO)object).setRow(row);
		} catch (PersistenceException e) {
			throw new BOException("Failed looking-up ${child_bo_name}: " + e.toString());
		}
		return  object;
	}