TRN_EE_COST_SRC(SQL View) |
Index Back |
---|---|
EE Training Cost SearchUse TRAINING to record data about training courses, both internal and external, taken by a student. A student can be an employee, an applicant, or a non-employee. You can create multiple TRAINING records for a student. |
SELECT DISTINCT SEC.OPRID , SEC.ROWSECCLASS , SEC.EMPLID , SEC.EMPL_RCD ,A.COURSE_START_DT ,A.COURSE ,A.SESSION_NBR ,A.COURSE_TITLE ,A.COURSE_END_DT ,A.DEPTID ,A.ATTENDANCE FROM PS_TRAINING A ,PS_EMPLMT_SRCH_GBL SEC WHERE A.EMPLID=SEC.EMPLID AND A.EMPL_RCD = SEC.EMPL_RCD AND A.ATTENDANCE IN ('A' ,'C' ,'D' ,'E' ,'I' ,'L' ,'N') |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | OPRID | Character(30) | VARCHAR2(30) NOT NULL | A user's ID (see PSOPRDEFN). |
2 | ROWSECCLASS | Character(30) | VARCHAR2(30) NOT NULL | The class used to determine row level security |
3 | EMPLID | Character(11) | VARCHAR2(11) NOT NULL | Employee ID |
4 | EMPL_RCD | Number(3,0) | SMALLINT NOT NULL | Empl Record |
5 | COURSE_START_DT | Date(10) | DATE | Course Start Date |
6 | COURSE | Character(6) | VARCHAR2(6) NOT NULL |
Course Code
Prompt Table: COURSE_TBL |
7 | SESSION_NBR | Character(4) | VARCHAR2(4) NOT NULL |
Course Session Nbr
Prompt Table: CRSE_SESSN_TBL |
8 | COURSE_TITLE | Character(30) | VARCHAR2(30) NOT NULL | Course Title |
9 | COURSE_END_DT | Date(10) | DATE | Course End Date |
10 | DEPTID | Character(10) | VARCHAR2(10) NOT NULL | Department |
11 | ATTENDANCE | Character(1) | VARCHAR2(1) NOT NULL |
Enrollment/Attendance
A=Currently Attending C=Completed D=Dropped E=Enrolled I=Incomplete L=Cancelled N=No Show O=Training Request Approved P=Need for Career Plan R=Request S=Session Waitlist T=Need for Training Program U=Training Request Authorized W=Course Waitlist X=Cancel Request for Training |