Skip to content

Export Inventor File

Description

The Export Inventor File node automates the process of exporting Autodesk Inventor documents into various output formats such as DXF, DWF, STEP, ADSK, PDF, or BOM (Bill of Materials).

This node is typically used in workflows that handle drawing automation, CAD file processing, or integration with document management systems such as Vault or SharePoint.

It connects to a locally installed Autodesk Inventor instance and uses the MinuteView Inventor Service to open the source document and perform the export according to the selected type.


How to Use

When added to a workflow, this node provides the following configuration fields:

FieldTypeDescriptionRequiredVisible When
Source File Full PathTextFull file path to the Inventor file to export (e.g., .ipt, .iam, .idw, .dwg).Always
Export TypePicklistThe desired export format.
Options: DXF, DWF, STEP, ADSK, PDF, BOM
Always
Output File PathTextOptional path for the exported file. If left blank, the output will be saved in the same folder as the source file.Always

Supported Export Types

Export TypeDescriptionOutput File ExtensionTypical Use
DXFExports sheet metal flat pattern or drawing views to DXF format..dxfCNC profile cutting or fabrication documentation
DWFPublishes the document as a DWF/DWFx file using the built-in Inventor Publisher..dwf or .dwfxViewing in Autodesk Design Review
STEPExports part or assembly geometry to neutral 3D exchange format..stp / .stepSharing 3D models with non-Inventor users
ADSKExports model to Autodesk Exchange Package format..adskInteroperability with Revit and other Autodesk products
PDFExports 2D drawings to PDF format..pdfDocument control, review, or release
BOMExports the Bill of Materials from an assembly or drawing to Excel format..xlsxMaterial reporting or downstream ERP integration

Default Behavior

If the Output File Path is not specified, the node automatically generates the output file in the same directory as the source Inventor file:

Export TypeExample Default Output
DXFC:\Projects\Part1.dxf
DWFC:\Projects\Part1.dwfx
STEPC:\Projects\Part1.step
ADSKC:\Projects\Part1.adsk
PDFC:\Projects\Drawing1.pdf
BOMC:\Projects\Assembly1.xlsx

Example Configuration

SettingExample Value
Source File Full PathC:\Vault\Designs\Bracket.iam
Export TypeSTEP
Output File PathC:\Exports\Bracket.step

Result:
The node opens the specified Inventor assembly and exports it as a STEP file to C:\Exports\Bracket.step.


Example – Bill of Materials Export

SettingExample Value
Source File Full PathC:\Vault\Assemblies\PumpAssembly.iam
Export TypeBOM
Output File Path(leave blank)

Result:
A structured Bill of Materials is exported to C:\Vault\Assemblies\PumpAssembly.xlsx, and BOM data (item count and details) is added to the workflow output.


Outputs

After execution, the node provides the following output variables:

Output VariableTypeDescription
ExportedFilePathTextFull path to the exported file.
BOMDataObject (optional)Collection of BOM items (only when Export Type = BOM).
BOMItemCountNumber (optional)Total number of BOM items exported.
statusReturnText"Completed" if export succeeded, "Fail" if it failed.
taskMessageTextStatus message (e.g., “Export operation completed successfully”).

Example Output (BOM Export)

json
{
  "ExportedFilePath": "C:\\Vault\\Assemblies\\PumpAssembly.xlsx",
  "BOMData": [
    { "PartNumber": "P-001", "Description": "Impeller", "Quantity": 1 },
    { "PartNumber": "P-002", "Description": "Casing", "Quantity": 1 },
    { "PartNumber": "P-003", "Description": "Fasteners", "Quantity": 8 }
  ],
  "BOMItemCount": 3,
  "taskMessage": "BOM export successful - 3 items exported",
  "statusReturn": "Completed"
}

Status Messages

StatusDescription
CompletedThe export operation was successful.
FailExport failed (file missing, format unsupported, or Inventor error).

Error Handling

If export fails, the node logs the detailed error in the workflow log and returns a Fail status. Common causes include:

  • Invalid or missing source file path
  • Unsupported export type
  • Inventor not available or not responding
  • Document could not be opened (e.g., permissions or dependencies missing)
  • BOM export attempted on a part file instead of an assembly

Notes

  • Requires Autodesk Inventor to be installed and licensed on the automation server.
  • The node uses the MinuteView Inventor Service (invService) to handle file operations.
  • All file paths can include dynamic placeholders (e.g., {workingFolder}, {FileName}).
  • The export will overwrite any existing file at the output path.
  • The BOM export option only applies to assembly (.iam) or drawing (.idw) files that contain a structured Bill of Materials.
  • Exported files can be uploaded, emailed, or attached to a record using downstream workflow nodes.

Example Workflow Usage

  1. Use a Vault Get File or File Copy node to retrieve an Inventor file to a local working folder.
  2. Add an Export Inventor File node to export the file to the required format (e.g., PDF or STEP).
  3. Chain a Data Operations or Upload File node to move the exported file to a designated location.
  4. Optionally, use Email Notification or Webhook Trigger nodes to notify users upon export completion.

Category: CAD → Autodesk Inventor Task Name: ExportInventorFile

Tentech 2024