| Table: dbo.User_Screen_Option | |||
| The table used to store UI control states on system screens. | |||
| Columns | |||
| Name | Type | Constraints | Description |
| user_screen_option_KEY | int (4) | NOT NULL | Primary key. |
| user_preference_KEY | int (4) | NOT NULL | Foreign key into the User_Preference table. |
| user_interface_screen_KEY | int (4) | NOT NULL | Foreign key into the User_Screen table. |
| show_inactive | bit (1) | NOT NULL | Stores whether or not the include inactive checkbox was marked. |
| Primary key | |||
| Name | Columns | Description | |
| PK_User_Screen_Option | user_screen_option_KEY | ||
| Unique constraints | |||
| Name | Columns | Description | |
| UK_User_Screen_Option$user_preference_KEY$user_interface_screen_KEY | user_preference_KEY, user_interface_screen_KEY | ||