Overcoming Choice element in OTD created from DTD/XSD

Below is the field from DTD file which we are using it for the input xml OTD.

<!ELEMENT CompanyExtRef (AP3 | ASHMORE | ASHMORE1 | ASHMORE10 | ASHMORE11 | ASHMORE12 | ASHMORE13 | ASHMORE14 | ASHMORE15 | ASHMORE16 | ASHMORE17 | ASHMORE2 | ASHMORE3 | ASHMORE4 | ASHMORE5 | ASHMORE6 | ASHMORE7 | ASHMORE8 | ASHMORE9 | BRMG | BROKER_BIC | CMS | COLCHESTER | CTM | CUSIP | CUSTODIAN | CUST_BIC | CUTAS | DAVYIM | DUAL | EAGLE | EGL_PARTY_TYPE | FOLKSAM | FOLKSAM1 | FOLKSAM2 | FOLKSAM3 | FOLKSAM4 | FOLKSAM5 | FOLKSAM6 | FOLKSAM7 | FSBA | FUNDMASTER | GENIM | GIO | INSIGHT | INSIGHT1 | INSIGHT2 | INSIGHT3 | INSIGHT4 | INSIGHT5 | INSIGHT6 | INSIGHT7 | INSIGHT8 | INSIGHT9 | INVMGR_BIC | INV_MGR | ISIN | ISO | JBIL | JBIL1 | JBIL2 | JBIMNY | JBIMNY1 | JBIMNY10 | JBIMNY2 | JBIMNY3 | JBIMNY4 | JBIMNY5 | JBIMNY6 | JBIMNY7 | JBIMNY8 | KBC | KBCBELEUR | KBCBELNEUR | KBL | MF-DUB | MFACT | MO | NTGIC | NTGIE | NTGIE1 | NTGINY | NTGIQM | NTGIQM1 | NTGIQM2 | NTGIQM3 | NTGIQM4 | NTGIQM5 | NTGIT | NTGIT9 | OASYS | OASYS1 | OASYS10 | OASYS2 | OASYS3 | OASYS4 | OASYS5 | OASYS6 | OASYS7 | OASYS8 | OASYS9 | OASYSDOM | OSP | PSET | QPORT | SANDERSON | SEDOL | SILCHESTER)*>

While creating the OTD, its automatically creating few tags with the choice elements/replace elements.

We are interested to overcome those choice elements and to map the values directly.

Is there a possible way to achieve this?

We are using JCAPS 5.1.1 on Windows.

[1469 byte] By [achintaysagar] at [2007-11-26 11:17:45]
# 1
As per my understanding the * at the end SEDOL | SILCHESTER)*> making it to create choice or replace. If you remove star from you DTD it will generate OTD without choice.ThanksSanjeev
Sunju at 2007-7-7 3:32:57 > top of Java-index,Java Enterprise System,Java Composite Application Platform Suite -- General Discussion...
# 2
Sorry, The choice are being generated because of | sign, so you would have to remove both * and | should be replaced with , (comma).ThanksSanjeev
Sunju at 2007-7-7 3:32:57 > top of Java-index,Java Enterprise System,Java Composite Application Platform Suite -- General Discussion...