Hi,
Please forgive me for this, I might be doing this all wrong.
I need to create a database to allow us to keep track of groups of products.
E.G.
My company sells nuts and bolts, so I create a table
with a group for nuts and a group for bolts as thats how we buy them so they are pure classes.
However we do sell them as a mixed pack, nuts and bolts, so I have 3 selling classes, 'nuts', 'bolts' and 'nuts and bolts' with the last one being a adhoc class, it is made up of more than one pure class.
Because I can sell any of the three products I want to create the three groups and know what they are made up of, the ID will be hidden so only I know what it is, all other systems will lookup the 'desc' to get the group name.
I will later want to know all groups that contain nuts, which should return two groups, how do I get started, I would like all the data to be entered into one form, so people can add delete and maintain these selling classes with ease.
My problem stems from the need for a pure class to contain its self and an adhoc class to have more than one pure class entry.
So far no data exists, we have an outdated product file that need regrouping from scratch and this is going be my starting point.
ID Desc Type Pure class
1 Nuts Pure 1 ('Nuts')
2 Bolts Pure 2 ('Bolts')
3 Nuts and bolts Adhoc 1 and 2 ('Nuts' and 'bolts')
Please give me some ideas, this is all new so anyting goes, if you need more detail please shout.
Thanks Harry
Please forgive me for this, I might be doing this all wrong.
I need to create a database to allow us to keep track of groups of products.
E.G.
My company sells nuts and bolts, so I create a table
with a group for nuts and a group for bolts as thats how we buy them so they are pure classes.
However we do sell them as a mixed pack, nuts and bolts, so I have 3 selling classes, 'nuts', 'bolts' and 'nuts and bolts' with the last one being a adhoc class, it is made up of more than one pure class.
Because I can sell any of the three products I want to create the three groups and know what they are made up of, the ID will be hidden so only I know what it is, all other systems will lookup the 'desc' to get the group name.
I will later want to know all groups that contain nuts, which should return two groups, how do I get started, I would like all the data to be entered into one form, so people can add delete and maintain these selling classes with ease.
My problem stems from the need for a pure class to contain its self and an adhoc class to have more than one pure class entry.
So far no data exists, we have an outdated product file that need regrouping from scratch and this is going be my starting point.
ID Desc Type Pure class
1 Nuts Pure 1 ('Nuts')
2 Bolts Pure 2 ('Bolts')
3 Nuts and bolts Adhoc 1 and 2 ('Nuts' and 'bolts')
Please give me some ideas, this is all new so anyting goes, if you need more detail please shout.
Thanks Harry
Comment