	/**
	 * insert YYYY
	 *@param parent ${top_bo_name}
	 *@param object ${child_bo_name}
	*/
	public void insert${child_bo_name}(${top_bo_name} parent, ${child_bo_name} object) throws BOException {
	    try {
		Row row = ((RowBO)parent).getRow();
		SyncBo syncBo = row.getSyncBo();

		((WritableBO)object).write();
		Row childRow = ((RowBO)object).getRow();
		syncBo.insertRow(childRow);
	    } catch (Exception e) {
		throw new BOException("Failed inserting ${child_bo_name}: " + e.toString());
	    }
	}