sp316_custom_number_emp_value
This table holds numeric custom values associated with employees. Valid keywords for these values are held in sp315_custom_number_keyword. For example, if a keyword 'RATE' is defined in sp315, some or all of the employees in sp210_employees could have 'RATE' values stored in this table. Note that these values are never used in any way for scheduling.
Â
Table Definition
Field | Type | Default | Nullable |
---|---|---|---|
keyword | varchar2(12)Â | Â | Â |
employee_no | number(9)Â | Â | Â |
value | float(126) |  |   |
Keys
primary key (keyword, employee_no)Â
foreign key (keyword) references sp315_custom_number_keyword (keyword)Â
foreign key (employee_no) references sp210_employees (employee_no)
Column Descriptions
Field | Description |
---|---|
keyword | The keyword column of sp315_custom_number_keyword.   |
employee _no | An index into the table of the entity to which this keyword is being mapped. For operatives this is the index column of sp210_employees. |
value | The value this keyword is given for this employee.  |