Hello Team, We are using Teamcenter - Solid works integration using the SWIM template (SWIM.xml). We are unable to map the creation date from Teamcenter
We are using the following mapping in the SWIM.xml
<attribute>
<cad_name value="REV DWN BY DATE"/>
<pdm_name value="Item.creation_date"/>
<missing_attribute_action value="create"/>
<default type="Date"/>
<direction value="both"/>
</attribute>
Dataset type in TC is SWDew
Did you find a solution?
The below works for us. my_created_date is a custom property on the SW file.
<attribute>
<cad_name value="my_created_date"/>
<pdm_name value="Item.creation_date"/>
<missing_attribute_action value="create"/>
<direction value="pdmtocad"/>
<constraint value="any"/>
</attribute>