cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

We are happy to announce the new Windchill Customization board! Learn more.

How to automatically generate pdf and dxf file from drw ?

MattPat
12-Amethyst

How to automatically generate pdf and dxf file from drw ?

Hi, I want to automatically generate pdf and dxf file from drw file while publishing it on Windchill. Is there any way to solve this because for now, I do it manually. 

1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
TomU
23-Emerald IV
(To:MattPat)
MattPat
12-Amethyst
(To:TomU)

Is that enough? I can't check it right now if it works. 

 

<?xml version="1.0" encoding="UTF-8"?>

<rules xmlns="http://www.ptc.com"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.ptc.com PublishRulesSchema.xsd"
       evaluate-rules-on-republish="true">
	<authoring-application name="PROE">
		<additional-files name="standard_files">
			<file output-prefix="pdf" default="true" type="pdf" display-label="PDF"/>
			<file output-prefix="dxf" default="true" type="dxf" display-label="DXF"  />
		</additional-files>
		<condition name="ibawith value">
			<and>
				<attribute name="epmdoc_docType" value="Drawing"/>
				<attribute name="epmdoc_lifeCycleState" value="In Work"/>
			</and>
		</condition>
    </authoring-application>
</rules>

 

 

Top Tags