echo a specific custom taxonomy term on a different custom taxonomy archive

To get the terms applied to a post from a certain taxonomy, use wp_get_post_terms. Inside the loop add:

$abcterms = wp_get_post_terms( $post->ID, 'ABC');
foreach($abcterms as $abc) echo $abc->name;