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

Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X

Create Publish rules for PROE, to generate IGES, STEP

DKWc
13-Aquamarine

Create Publish rules for PROE, to generate IGES, STEP

Hi Team,

Anyone who can help with publish rule script for PROE worker to generate additional output files of IGES and STEP for EPM document

No condition's to be included

 

Thanks in advance.

 

Regards,

Durga

 

1 ACCEPTED SOLUTION

Accepted Solutions
DKWc
13-Aquamarine
(To:DKWc)

5 REPLIES 5
AndyHermanson
12-Amethyst
(To:DKWc)

The Windchill Help is pretty complete on this. Windchill Help

You can also fine example code in the <Windchill>/codebase/com/ptc/wvs/server/xml directory. 

 

I would share mine with you buy I am not allowed to do so. 

 

Hope this helps.

Andy

Here is a good resource also:

https://www.ptc.com/en/support/article/CS111916

 

DKWc
13-Aquamarine
(To:DKWc)

This one works

mmeadows-3
14-Alexandrite
(To:DKWc)

This may not be relevant to your business use case but is applicable to others considering this solution.

 

We had a configuration similar to this a few years ago where every check in of a part generated a STEP file.  STEP and IGES files are not small like the visualization content.  They are nearly the same size as the original CAD models.  In highly surfaced models, they can be larger than the CAD models.  Imagine every check in being approximately 2 to 3 times the size of the original CAD Document.  This configuration bloated the file vaults and it didn't include IGES of parts or STEP/IGES of assemblies and drawings.

 

IT was very anxious about the growth rate of their file vaults in their data center where they paid by the GB/month.

 

When we researched how frequently the STEP/IGES were being used, we discovered the shop and external suppliers only used a very small fraction of the generated files.

 

Ultimately, we manually purged all the STEP Representation Additional Files content from Windchill.  Then we adjusted our publish rules to only publish STEP of parts in prototype and release states.  We allowed users to manual publish STEP upon request to cover any non-released iterations they needed.

 

FYI: Descriptions of the Publish "on" values.

<!--  Publish on Check In  -->
<publish additional-files="standard_files" on="checkin"/>
<!--  Manually publish from details page  -->
<publish additional-files="standard_files" on="create-representation"/>
<!--  Publish via publish scheduler  -->
<publish additional-files="standard_files" on="schedule"/>
<!--  Publish via workflow, state change, etc.  -->
<publish additional-files="standard_files" on="unknown-source"/>
<!-- Enables UI pick to Post Publish from details page Representations listing  -->
<publish on="manual-post"/>

 

DKWc
13-Aquamarine
(To:mmeadows-3)

Hi,

Thanks for replying and wise insight.

This is a very good insight on the long term repercussions.

"Create-representation & unknown-source" seems to more wise option.

Generally customers request's for on check-in however, needs to be educated on this front.

Top Tags