Another possibility could be to use the getMainFields_preProcess Hook to preselect the category like:
public function getMainFields_preProcess($table, &$row, &$reference) {
if ($table == 'tx_artikel_domain_model_artikel' && !intval($row['uid])) {
$row['category'] = 1;
}
}
with best regards