Configure lifecycle definitions and file options to publish CAD files.
Create a user with access to Released files. See Assign Roles to Users for more information.
Configure lifecycle definitions.
Click Tools > Administration > Vault Settings.
On the Vault Settings dialog, select Behaviors > Lifecycles.
Select the definition to be modified > Edit.
On the Lifecycle Definition dialog, select the Transitions tab > Work in Progress to Released > Edit.
On the Transitions dialog, select the Actions tab.
From the drop-down,
From the Security tab, add the user created in Step 1, and allow Modify access under the Released state.
On the Lifecycle Definition dialog, select Design Representation Process > Edit.
On the Lifecycle Definition dialog, select the Released state.
Select the Security tab, add the user created in Step 1 and assign it Modify access. See Edit Lifecycle State Security for more information.
Sync state job fails if you do not have adequate permission for a particular state to be set on a file, for example, you do not have the modify access on the Released state.
To enable the job server, click Tools > Administration > Global Settings > Integrations tab > Enable Job Server.
Click Tools > Administration > Vault Settings
Publish a PDF, DXF or STEP file from a CAD file.
This generates a PDF, DXF, or STEP file as an attachment to the selected file. Also, a thumbnail for the file displays in the Preview tab.
You can affect the output file names by editing the Job Processor configuration file: JobProcessor.exe.config. The following are supported:
Navigate to the
Find the "<add key=>" section in the file.
Add a line using the format *<add key="DesignRepresentation.Naming" value=*.
There are three special keys in the naming:
<
_name_>
is replaced by the file name<
_ext_>
is replaced by the file extension<
_underscore_>
is replaced by character "_"See the examples for the file, Flower.idw, shown below.
Key | Result |
---|---|
<add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_>"/> | Flower.pdf |
<add key="DesignRepresentation.Naming" value="\.(idw)$/Prefix<_name_>"/> | PrefixFlower.pdf |
<add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_>Suffix"/> | FlowerSuffix.pdf |
<add key="DesignRepresentation.Naming" value="\.(idw)$/Prefix<_name_>Suffix"/> | PrefixFlowerSuffix.pdf |
<add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_>< _underscore_>Suffix"/> | Flower_Suffix.pdf |
<add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_>.<_ext_>"/> | Flower.idw.pdf |
<add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_><Revision>"/> | FlowerB.pdf where Revision=B |
<add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_ ><Provider>"/> | FlowerAutoCAD.pdf where Provider=AutoCAD |
<add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_ ><DateVersionCreated>"/> <add key="DesignRepresentation.Naming.DateFormat" value="dd-MM-yy"/> | Flower27-10-17.pdf where the Date Version Created is October 27, 2017 |
<
to <
and >
to >
. This may cause the Job Processor to fail. It is recommended that you use an editor that maintains <
and >
, such as Notepad. The line can contain only the "<" at the beginning and the ">" at the end.You can add only one line for Design.Represenation.Naming, so combine rules as needed, separating each with a slash (**/**
). For example:
<add key="DesignRepresentation.Naming" value="\.(dwg)$/<_name_><Provider> **/**\.(idw)$/<_name_><Revision>"/>