Results 1 to 4 of 4
  1. #1
    kagoodwin13 is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Feb 2012
    Posts
    181

    Tracking Part Number Changes

    I am trying to think of a method to track changes in part numbers.



    I work with engineers, and when they make revisions to parts, they must change the part number as a result. For instance, the first revision of the part might be 12345-AAAAA. After review, they have decided to move a datum hole 2mm to the right, so the part number is now 12345-AAAAB.

    I would like my database to connect the information saved about 12345-AAAAA to 12345-AAAAB. Additionally, there might be more than one revision, so the database must support revision changes to the nth degree.

    Any ideas?

  2. #2
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    How about a PartTable and a PartRevisionTable

    PartTable
    PartId PK autonumber
    PartNo whatever you want to show/report
    PartDesc
    other info related to original part

    PartRevisionTable
    PartRevId PK autonumber
    PartID FK
    RevPartNo <--latest part number
    RevisionDate
    RevisionDesc
    other info specific to this revision of this part

    PartTable------>PartRevisionTable 1 to Many relationship

    NOTE:
    Because the PartNo as you refer to it is constantly changing, you CAN NOT use it as the PK of the table.
    Since PartNo has meaning to you and others you Display RevPartNo (the latest value) as the latest modified Part Number.

  3. #3
    kagoodwin13 is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Feb 2012
    Posts
    181
    Thanks for the idea! I'll have to adjust my PK to an autonumber. The PK is currently part number.

  4. #4
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,870
    Be cautious. If you already have data some things may be dropped.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Same Part number, two different vendors
    By MFS in forum Programming
    Replies: 2
    Last Post: 02-19-2013, 10:35 PM
  2. Replies: 1
    Last Post: 06-06-2011, 06:50 PM
  3. Replies: 2
    Last Post: 04-13-2011, 09:42 AM
  4. Part Number Lookup
    By jacobbiljo in forum Queries
    Replies: 1
    Last Post: 11-12-2009, 09:22 AM
  5. Multiple Part Number Look=up
    By nywi6100 in forum Reports
    Replies: 0
    Last Post: 09-27-2006, 11:38 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums