For my database, various role names can change every now and then. In order to combat this, i'm thinking of creating a query for certain positions.
What I mean is:
Production Manager is a pivitol role, since it gets referenced to for approvals and placed in emails etc. If this title changed, I would have to re-write references to that position in code..
I was thinking about creating a query, qry_ProductionManager for example, that held just this one particular person, the person currently assigned to that role.
By doing this, my code can simply reference the query. In the event of the role name changing, or the person in that role, the contents of the query is all that needs to be modified, rather than have to dive into the code. This way a non VB programmer can make updates.
Before I went ahead with this though, I thought it might be wise to check if this is the best method to acheive my goal..
Cheers for your help
What I mean is:
Production Manager is a pivitol role, since it gets referenced to for approvals and placed in emails etc. If this title changed, I would have to re-write references to that position in code..
I was thinking about creating a query, qry_ProductionManager for example, that held just this one particular person, the person currently assigned to that role.
By doing this, my code can simply reference the query. In the event of the role name changing, or the person in that role, the contents of the query is all that needs to be modified, rather than have to dive into the code. This way a non VB programmer can make updates.
Before I went ahead with this though, I thought it might be wise to check if this is the best method to acheive my goal..
Cheers for your help