LM_LRNR_PRG_VW(SQL View) |
Index Back |
---|---|
Learner ProgramsLists all programs (any status) associated with a learner. Joins to the program table with the program registration table to bring in all of the program information, selecting the correct effective dated program row based upon the learners registration date. |
SELECT A.LM_PERSON_ID ,A.LM_PRG_ID ,B.LM_PRG_LONG_NM ,B.LM_PRG_TYPE ,A.LM_TYPE ,A.LM_PRG_REG_ID ,A.LM_ENRL_DT ,A.LM_PRG_STTS ,A.LM_COMPL_DT ,A.LM_TARGET_CMPL_DT ,A.LM_DP_DT ,A.LM_CERT_EFFDT ,A.LM_ACT_REQ ,A.LM_INITIATED_DT ,A.LM_REQUESTOR_ID ,A.LM_STTS_CHANGE_DT FROM PS_LM_PRG_REG_VW A , PS_LM_PRG B WHERE A.LM_PRG_ID = B.LM_PRG_ID AND A.LM_ENRL_DT BETWEEN B.EFFDT AND B.LM_END_EFFDT |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | LM_PERSON_ID | Number(15,0) | DECIMAL(15) NOT NULL | ELM Person ID |
2 | LM_PRG_ID | Number(10,0) | DECIMAL(10) NOT NULL | Program ID is a unique identifier for curriculum and certification Programs. |
3 | LM_PRG_LONG_NM | Character(200) | VARCHAR2(200) NOT NULL | Program Long Name |
4 | LM_PRG_TYPE | Character(2) | VARCHAR2(2) NOT NULL |
Program Type
CE=Certification CU=Curriculum |
5 | LM_TYPE | Character(4) | VARCHAR2(4) NOT NULL |
Type of the Enrollment. This field for now will have only one value STDD
ADHC=Adhoc PLAN=Planned RSRV=Reserved STDD=Standard |
6 | LM_PRG_REG_ID | Number(10,0) | DECIMAL(10) NOT NULL | The Program Registration ID is a unique identifier for a learner's program enrollment. |
7 | LM_ENRL_DT | Date(10) | DATE | Enrollment/Registration Date |
8 | LM_PRG_STTS | Character(4) | VARCHAR2(4) NOT NULL |
Program Reg Status
CANC=Dropped COMP=Completed DECL=Decline ENRL=Registered EXPR=Expired INCO=Not Completed INPO=In-Progress PEAP=Pending Approval PEPA=Pending Payment PLAN=Planned PPYA=Payment Approval REIS=Reissue REVK=Revoked WAIV=Waived WARN=Warning |
9 | LM_COMPL_DT | Date(10) | DATE | The date on which this Enrollment was marked Completed / InComplete |
10 | LM_TARGET_CMPL_DT | Date(10) | DATE | The target date by which the student should complete the course. This field is only applicable for WBT activity and the Learning Period for the WBT activity is Enforced. If the Learning Period is not enforced, this field will hold no value. |
11 | LM_DP_DT | Date(10) | DATE | Drop Date |
12 | LM_CERT_EFFDT | Date(10) | DATE | Current Certification Date |
13 | LM_ACT_REQ | Character(1) | VARCHAR2(1) NOT NULL |
Activity Required
N=No Y=Yes Y/N Table Edit |
14 | LM_INITIATED_DT | Date(10) | DATE | The date on which the course was launched by the student. This applies only for WBT. |
15 | LM_REQUESTOR_ID | Number(15,0) | DECIMAL(15) NOT NULL | Requestor |
16 | LM_STTS_CHANGE_DT | Date(10) | DATE | Status Chage Date |