Oracle has a query that selects the existing indexes of a table. For example:
SELECT * FROM user_indexes WHERE table_name = \'CM_WCEL\';
But
this should provide needed information:
select index_name, column_name from user_ind_columns where table_name = 'CM_WCEL';