Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Export DXF to Teamcenter

Status
Not open for further replies.

Techomick

Mechanical
Joined
Jun 21, 2011
Messages
46
Location
US
I have read all the threads on exporting a DXF with a journal and have been successful in implementing it. However, I would like for the DXF file after it has been created with the journal to be imported to Teamcenter as well. I thought I was going down the right road with this:


This is in main sub:

Dim TCno As String = "DB_PART_NO"
Dim TCrev As String = "DB_PART_REV"
Dim TCname As String = "DB_PART_NO" & "/" & "DB_PART_REV"
Dim TCrel As String = "specification"
Dim TCdir As String = strOutputFolder
ImportFiles(TCno, TCrev, TCname, TCdir, TCrel, TCdir)

Then this outside main sub:

Public Function ImportFiles ( _
itemIds As String, _
itemRevisionIds As String, _
datasetNames As String, _
datasetTypeNames As String, _
datasetRelationTypeNames As String, _
importDirectoryNames As String _
) As Integer()
End Function



I do not get any errors, but it is not uploading the .dxf to Teamcenter. Any help would be appreciated.

Thanks!






Design Engineer, NX 7.5
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top