This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

APPLICATION - PRODUCT ENGINEERING - Propagating Changes for Items in Class Structure for Part

MMarcial - Friday, October 9, 2009 1:30 PM:

When I rename items in the "Class Structure for Parts" the changes are not reflected when a Part Type is viewed.  How do I get the changes propagate?



tstickel - Monday, October 12, 2009 1:26 PM:

I ran into this issue several months ago.  I resolved it by running a SQL command that finds all of the Parts that have their "classiification" property set to one of the old values and update them to the new values.

E.g. update innovator.part set classification = 'new name' where classification = 'old name'

I ran the SQL via SQL Server Management Studio, although you could write an Innovator SQL procedure and execute it from an Innovator Server method.