Skip to main content
10-Marble
July 27, 2024
Solved

Dynamic Document/ DITA subtypes

  • July 27, 2024
  • 1 reply
  • 926 views

I created two subtypes through my bursting configuration: DITAtopic and DITAmap.

<dmsobjtype>
<typerule sourcetype="text"
targettype="wt.epm.EPMDocument|com.mycompany.DynamicDocument|com.mycompany.BurstConfiguration|com.mycompany.DITAMap"
/>
</dmsobjtype>

When I tried to create templates for these subtypes they did not appear as a valid choice under "Dynamic Documents". 

When I go to the Organization Utilies, DITAtopic and DITAmap appear as subtypes of Bursting (Bursting is a subtype of Dynamic Docs).

If I re-create these 2 subtypes under Dynamic Documents, how should I be declaring them in my bursting configuration?

Would the following be the proper way?

<typerule sourcetype="text"
targettype="wt.epm.EPMDocument|com.mycompany.DynamicDocument|com.mycompany.DITAMap"
/>

Best answer by

@DG_9924912 wrote:

I created two subtypes through my bursting configuration: DITAtopic and DITAmap.

<dmsobjtype>
<typerule sourcetype="text"
targettype="wt.epm.EPMDocument|com.mycompany.DynamicDocument|com.mycompany.BurstConfiguration|com.mycompany.DITAMap"
/>
</dmsobjtype>

When I tried to create templates for these subtypes they did not appear as a valid choice under "Dynamic Documents". 

When I go to the Organization Utilies, DITAtopic and DITAmap appear as subtypes of Bursting (Bursting is a subtype of Dynamic Docs).

If I re-create these 2 subtypes under Dynamic Documents, how should I be declaring them in my bursting configuration?

Would the following be the proper way?

<typerule sourcetype="text"
targettype="wt.epm.EPMDocument|com.mycompany.DynamicDocument|com.mycompany.DITAMap"
/>


Hello,

To address this issue, you can re-create the subtypes “DITAtopic” and “DITAmap” under “Dynamic Documents.” When declaring them in your bursting configuration, use the following format:

XML

 

<typerule sourcetype="text"
 targettype="wt.epm.EPMDocument|com.mycompany.DynamicDocument|com.mycompany.DITAMap"
/>

 

This configuration ensures that these subtypes are recognized correctly within your bursting setup.

 

Hope this will help you.

Best regards,

florence023

1 reply

Answer
July 29, 2024

@DG_9924912 wrote:

I created two subtypes through my bursting configuration: DITAtopic and DITAmap.

<dmsobjtype>
<typerule sourcetype="text"
targettype="wt.epm.EPMDocument|com.mycompany.DynamicDocument|com.mycompany.BurstConfiguration|com.mycompany.DITAMap"
/>
</dmsobjtype>

When I tried to create templates for these subtypes they did not appear as a valid choice under "Dynamic Documents". 

When I go to the Organization Utilies, DITAtopic and DITAmap appear as subtypes of Bursting (Bursting is a subtype of Dynamic Docs).

If I re-create these 2 subtypes under Dynamic Documents, how should I be declaring them in my bursting configuration?

Would the following be the proper way?

<typerule sourcetype="text"
targettype="wt.epm.EPMDocument|com.mycompany.DynamicDocument|com.mycompany.DITAMap"
/>


Hello,

To address this issue, you can re-create the subtypes “DITAtopic” and “DITAmap” under “Dynamic Documents.” When declaring them in your bursting configuration, use the following format:

XML

 

<typerule sourcetype="text"
 targettype="wt.epm.EPMDocument|com.mycompany.DynamicDocument|com.mycompany.DITAMap"
/>

 

This configuration ensures that these subtypes are recognized correctly within your bursting setup.

 

Hope this will help you.

Best regards,

florence023

10-Marble
July 29, 2024
Thanks for confirming.