for(int col = 0; col < columnCount; col++) {
FieldDesc fd = _tableQueryResult.getColumnDesc(col);
if (fd.hasLink()) {
_table.moveColumn(col, 0);
} else if ("format".equalsIgnoreCase(_tableQueryResult.getColumnName(col))
|| new UcdSupport(fd.getUCD()).isFormat()) {
_table.moveColumn(col, 1);
}
}
}
}