I've only developed relatively small applications, but they are getting larger and larger.
What do enterprise systems do with a lookup table, for instance:
Lookup_Status
Status_Code Status_Value
B BUY
S SELL
W WAIT
and these values bind to a combobox that a user can select BUY WAIT or SELL.
But now, they want ot change it so the values are
BN BUY NOW
BL BUY LATER
SN SELL NOW
SL SELL LATER
WL WAIT LONG
WS WAIT SHORT
So, a user can go in and delete and add al lthe new rows, but that means and rows stored with the old codes, will now show blank because there isnt a value for them. Is the solution to add an ACTIVE column, and dont allow editing of the code?
Sorry if i'm being too vauge...I'll provide more info if needed.
What do enterprise systems do with a lookup table, for instance:
Lookup_Status
Status_Code Status_Value
B BUY
S SELL
W WAIT
and these values bind to a combobox that a user can select BUY WAIT or SELL.
But now, they want ot change it so the values are
BN BUY NOW
BL BUY LATER
SN SELL NOW
SL SELL LATER
WL WAIT LONG
WS WAIT SHORT
So, a user can go in and delete and add al lthe new rows, but that means and rows stored with the old codes, will now show blank because there isnt a value for them. Is the solution to add an ACTIVE column, and dont allow editing of the code?
Sorry if i'm being too vauge...I'll provide more info if needed.