Scenario: I have 2 entities Employee and Asset
Employee table (EmployeeID -- PK) Asset table (EmployeeID --FK)
On the asset definition page, I have a dropdown of Active Employees, User will assign asset to Employee and later on, user goes to Employee definition page and Inactive to that employee. Now user goes to asset page and want to edit that particular asset record, there will be problem in asset definition page when dropdown selected value does not exist, since in asset definition page dropdown have only Active Employee list.
Please note this employee dropdown and similar kind of situation have too much used in my application, given solution have to implement in lot of places in my application, so I need best solution with minimum changes in my application :)
Advance Thanks