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
UDMDSFileCADin<UDMFileCategory>for CAD datasets. - Use
UDMDSFileMeshin<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
PLMXMLFileFormatmust match the file extension or format string expected by the corresponding Teamcenter Dataset type.
- Use
- 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
UDMFileTypevalue must be recognized by the UDM schema and supported by your HyperMesh instance. - The
PLMXMLDataSetTypevalue should exactly match the Dataset name defined in the Teamcenter schema. - Avoid typos in the
PLMXMLDataSetRole— the most commonly used values areIMAN_RenderingandIMAN_specification. Refer to your Siemens IT team to confirm the correct relation types for your business model.