[Home] [Help]
[Dependency Information]
Object Name: | FA_EMPLOYEES |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A public view which may be useful for custom reporting or other data
requirements.
FA_EMPLOYEES is a view of PER_PEOPLE_X that stores information
about your employees and the termination date, if any. Oracle
Assets uses this information for responsibility reporting.
.
Oracle Assets contains a row in this view for each employee name.
You cannot update or insert rows in this view.
You can update and insert rows in PER_PEOPLE_F using the Enter
Employee form.
.
.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
EMPLOYEE_ID | NUMBER | (10) | Yes | System assigned unique identification number |
EMPLOYEE_NUMBER | VARCHAR2 | (30) | Employee number | |
NAME | VARCHAR2 | (240) | Name of the employee | |
ACTUAL_TERMINATION_DATE | DATE | Date the employee left the company |
Cut, paste (and edit) the following text to query this object:
SELECT EMPLOYEE_ID
, EMPLOYEE_NUMBER
, NAME
, ACTUAL_TERMINATION_DATE
FROM APPS.FA_EMPLOYEES;
|
|
|