Skip to main content
1-Visitor
May 25, 2016
Question

Best practice for dealing with opposite side parts numbering scheme

  • May 25, 2016
  • 7 replies
  • 2350 views

We are currently implementing PDMLink 10.2 and are having some big discussions on numbering schemes. Our current numbering scheme outside of a PDM system is a 7 digit numeric sequence followed by a -1 OR a -2 (if it is an opposite part). We know that you can add a suffix to the end of a part number, and possibly tie this to an optional attribute that will ask upon creation "is this part opposite" (if set as yes, it will append a -2 instead of a -1). Is there a better way of dealing with this?


Note the base number cannot be different, so it could look something like:


1234567-1

1234567-2


Whats the process of having your numbering scheme look for that attribute?


7 replies

1-Visitor
May 25, 2016

A few questions:

  1. I am assuming by "opposite parts" you mean that it is a part that is a mirror image of another part (like a right-hand / left-hand type of thing).  Is this correct?  If not, can you elaborate?
  2. Can you explain the original reason why the "samenumber-1 or 2" is being used?  Did this come from a best-practice in your industry?
  3. Is there anything "smart" about the 7-digit number?  Or does it essentially just count up as new objects are made?
  4. Do you intend to eventually integrate PDMLink to your other software outside of PDMLink (like ERP)?

As far as Windchill is concerned, yes you can add suffixes/prefixes in parts and get more complex with OIR autonumbering, but that may become more of an issue to maintain through additional configuration and through updates/upgrades through Windchill depending on how complex it is.

Options that you have include (but are not limited to):

  • Creating objects as normal with regular 7-digit number only, then renumber object manually as necessary.
  • If creating many objects at one time, there are server-side utilities to bulk import objects (depending on the object type) to pre-determine name, number, etc before the import.
  • An unorthodox approach but still possible: split -1 and -2 parts for creation via soft types or contexts (or both), and have the suffix be fixed accordingly.  This strategy has pros and cons associated with it depending on how and where you create the object.
  • Have an entirely systematic workflow kick off on objects where this needs to happen to automatically replace the name after creation (this is definitely custom code and has implications depending on the use cases)
  • Depending on your answer to #4 above, you can use another attribute to serve as the "ERP Number" of sorts where users can manually put this in, and then let Windchill's OOTB "number" field only be used to drive object uniqueness.  Views/attribute pages can be updated to make the "ERP Number" more visible.

Feel free to contact me directly at robert.sindelar@eccellent.com if you'd like to discuss in further detail.

dmayfield1-VisitorAuthor
1-Visitor
May 25, 2016

Thanks, there is a lot of good information here. To answer your questions:

  1. Yes that is correct (left hand/right hand) parts.
  2. This comes from a best practice in our industry/company. It is tied to a lot of our legacy data so we don't want to change the current scheme. It is important to note that a majority of our parts will have a -1 and a few will have the -2 suffix. So it isn't like a few of our parts have the need for this, all our parts will need some sort of ending suffix (mainly -1)
  3. Nothing smart about it, it just counts up sequentially
  4. Yes there are plans to integrate PDMlink with our ERP system

I liked all your options, we have actually discussed a few of them as solutions but am not sure if there was a best practice. I think we want to keep the enterprise parts matching up with our part numbers for simplicity reasons, although that is something we did consider. The workflow is an idea however we are in a rush to implement and want to stick as OOTB as possible. Can you clarify more on your 3rd point, we would like the -1/-2 to be created when the object is first created. We thought the best way to do this would be to create an option upon creation that you could "check" to indicate it as a -2 part and then the system would append the -2, although I'm not sure how this could be accomplished...

Thanks!

1-Visitor
May 25, 2016

Hi there,

Honestly...keep it simple. Your preference to the -1/-2 suffice based on part type that you were asking about involves making part "sub types" as separately instantiable objects (so when making a new part you would have the option of the Left or Right type)...the very critical problem to that is the numbering scheme. I'm familiar with what you're talking about (the specific details of how we do it via the numbering are different than you but that isn't important), and if you have two separate object types for the left and right variants...that's two separate pulls on the part Number pool. You need the left and right variants of the part to have the same base 7-digit part number to show everyone that they are mirror images of each other. If you use two different object subtypes to do the left and right variants, if you set them to different number sequence sources you're completely screwed; you'd have to renumber every single Right one you did. Even if set to the same number sequence you don't pull both simultaneously; you would pull the first one (let's say it's the Left one and you get number 1234567-1), and if you were then to instantly create the Right version you would get 1234568-2...it pulled the next number available in the base number sequence and you get a mismatch.

So the easiest, easiest, EASIEST option that you could implement right now with the most minimal amount of initial and future work, given that you said the majority are the "left" i.e. -1 parts (and for the sake of the argument, given what you mentioned I'm going to make the assumption that every single part number you pull has the suffix whether or not they will ever get a mirror version)...use a single part object type, leave its OIR on the existing 7-digit base number and hard code the -1 suffix to it, then for the uncommon times you have to make a mirror version just create the entry and manually renumber it based on which part it has to mirror. So basically option 1 as mentioned by Bob.

Daryl