Add Export Mapping for Teamcenter Integration

To ensure proper export of PLMXML files and associated datasets into Teamcenter, you must configure the <UDMFileTypesPLMXMLDataSetTypes> section in your configuration file.

This setup defines how UDM file types map to Teamcenter Dataset types, including their category (CAD or CAE), file format, and dataset role (relation).
Key Guidelines
  • Use UDMDSFileCAD in <UDMFileCategory> for CAD datasets.
  • Use UDMDSFileMesh in <UDMFileCategory> for CAE datasets.
  • Confirm the assigned IMAN relation (for example, IMAN_specification, IMAN_Rendering, and so on).
  • Ensure the specified Teamcenter Dataset Types (such as, A2_HyperMesh, A3_Inspire) exist in your Teamcenter business model.
  • The PLMXMLFileFormat must match the file extension or format string expected by the corresponding Teamcenter Dataset type.
XML Configuration Example
Below are two example mappings, one for CAE (HyperMesh) and one for CAD (Inspire).
<UDMFileTypePLMXMLDataSetType>
  <UDMFileCategory>UDMDSFileMesh</UDMFileCategory>
  <UDMFileType>HyperMesh</UDMFileType>
  <PLMXMLDataSetRole>IMAN_specification</PLMXMLDataSetRole>
  <PLMXMLDataSetType>A2_HyperMesh</PLMXMLDataSetType>
  <PLMXMLFileFormat>hm</PLMXMLFileFormat>
</UDMFileTypePLMXMLDataSetType>
<UDMFileTypePLMXMLDataSetType>
  <UDMFileCategory>UDMDSFileCAD</UDMFileCategory>
  <UDMFileType>Inspire</UDMFileType>
  <PLMXMLDataSetRole>IMAN_Rendering</PLMXMLDataSetRole>
  <PLMXMLDataSetType>A3_Inspire</PLMXMLDataSetType>
  <PLMXMLFileFormat>stmod</PLMXMLFileFormat>
</UDMFileTypePLMXMLDataSetType>
Note:
  • The UDMFileType value must be recognized by the UDM schema and supported by your HyperMesh instance.
  • The PLMXMLDataSetType value should exactly match the Dataset name defined in the Teamcenter schema.
  • Avoid typos in the PLMXMLDataSetRole — the most commonly used values are IMAN_Rendering and IMAN_specification. Refer to your Siemens IT team to confirm the correct relation types for your business model.