Data Dictionary
>
FPSINPUT Tables
> FPSINPUT.SCH_G_SCHED_STATES
Table FPSINPUT.SCH_G_SCHED_STATES"
List of FPS Scheduler Sched States, including RESERVE, TIMER, COMING, MISSING
-
Schema: FPSINPUT
-
Tablespace: FPSDATA
-
Primary key: SCHED_STATE
-
Foreign keys: SCH_G_SCHED_S_BG_COLOR_FK: BG_COLOR REFERENCES FPSADMIN.GEN_COLORS (COLOR)
|
Column |
Type |
Nullable |
Comment |
|---|---|---|---|
|
SCHED_STATE |
VARCHAR2(7) |
N |
|
|
BG_COLOR |
VARCHAR2(24) |
N |
Background color assigned. BG_COLOR is in English like red or blue or light green and we look up the HTML color like #FF0000 in the GEN_COLORS table. BG_COLOR must be set manually but the FPSADMIN view BLD_POPULATE_COLORS will generate queries to randomly set bg_color for all values in a table. (* from FPSINPUT.GEN_CUSTOMERS) |
|
BG_COLOR_HTML |
VARCHAR2(7) |
||
|
BRD_COLOR_HTML |
VARCHAR2(4000) |
||
|
DISPLAY_IN_LEGEND |
CHAR(1) |
||
|
OTHER_STYLES |
VARCHAR2(500) |
||
|
SCHED_STATE_DISPLAY |
VARCHAR2(18) |
N |
|
|
SORT_ORDER |
NUMBER(4) |
N |
This is used to sort within the grouping. SORT_ORDER always has a deferrable unique key to ensure uniqueness while allowing the user to make changes without erroring until the commit is attempted. Because of this you must be careful to not violate the unique key otherwise you will lose all of your edits. (* from FPSINPUT.GEN_FACILITIES) |