Is it possible to have a table that has a relationship with itself or is it better to create a second table?
I have a table:
tblProductInfo
- ItemNumber (PK)
- Description
- Material
The way our production works, every step in the production process creates a completely new product. This is not something I have control over, just something I have to work with. So from Raw material to finished product, I may have anywhere from 3-7 step products in between that each represent another phaze in the production. Each step needs to have its own record.
Step one would be considered the Raw matieral. The last step is a finished good, and everything in between is considered wip (work in progres). So essentially I need to create records for each step and indicate on each record which product we are using to build the next product. Ideally I'd like for the field [material] to simply refer to other records on the same table to determine which previous product we are building off of.
This sounds a lot more convoluted when I type it out, I'm sorry for that, Hopefully it got the point across though
Thank you for any assistance you can offer.
Bruce
I have a table:
tblProductInfo
- ItemNumber (PK)
- Description
- Material
The way our production works, every step in the production process creates a completely new product. This is not something I have control over, just something I have to work with. So from Raw material to finished product, I may have anywhere from 3-7 step products in between that each represent another phaze in the production. Each step needs to have its own record.
Step one would be considered the Raw matieral. The last step is a finished good, and everything in between is considered wip (work in progres). So essentially I need to create records for each step and indicate on each record which product we are using to build the next product. Ideally I'd like for the field [material] to simply refer to other records on the same table to determine which previous product we are building off of.
This sounds a lot more convoluted when I type it out, I'm sorry for that, Hopefully it got the point across though
Bruce