LM_CERT_SCN_VW(SQL View) |
Index Back |
---|---|
Learner Cert Status ViewLists the status of all completed certifications associated with a learner. |
SELECT A.LM_PRG_REG_ID , D.LM_SCN_ID , A.LM_PERSON_ID , A.LM_PRG_ID , D.LM_SCN , C.LM_PRG_TYPE , A.LM_ENRL_DT , A.LM_PRG_STTS , A.LM_COMPL_DT , A.LM_TARGET_CMPL_DT , A.LM_DP_DT , B.LM_SCN_CMPL_DT , B.LM_EXPR_DT , B.LM_GRACE_EXPR_DT , B.LM_RECERT_DT , B.LM_RECERT_WRN_DT , B.LM_EXPR_WRN_DT , C.LM_CERT_ID , A.LM_CERT_EFFDT , B.LM_SCN_STTS FROM PS_LM_PRG_REG_VW A , PS_LM_REG_SCN_CERT B , PS_LM_PRG_VW3 C , PS_LM_PRG_SCN D WHERE A.LM_PRG_ID = C.LM_PRG_ID AND C.LM_PRG_TYPE = 'CE' AND A.LM_CERT_EFFDT BETWEEN C.EFFDT AND C.LM_END_EFFDT AND B.LM_PRG_REG_ID = A.LM_PRG_REG_ID AND C.LM_PRG_ID=D.LM_PRG_ID AND D.EFFDT = C.EFFDT AND B.LM_SCN_ID = D.LM_SCN_ID |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | 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. |
2 | LM_SCN_ID | Number(10,0) | DECIMAL(10) NOT NULL | Section ID |
3 | LM_PERSON_ID | Number(15,0) | DECIMAL(15) NOT NULL | ELM Person ID |
4 | LM_PRG_ID | Number(10,0) | DECIMAL(10) NOT NULL | Program ID is a unique identifier for curriculum and certification Programs. |
5 | LM_SCN | Character(100) | VARCHAR2(100) NOT NULL | Section Name |
6 | LM_PRG_TYPE | Character(2) | VARCHAR2(2) NOT NULL |
Program Type
CE=Certification CU=Curriculum |
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_DT | Date(10) | DATE | Certification Date |
13 | LM_EXPR_DT | Date(10) | DATE | Certification Expiration Date is a fixed, preset date when the certification will expire. |
14 | LM_GRACE_EXPR_DT | Date(10) | DATE | Grace Period Expiration Date |
15 | LM_RECERT_DT | Date(10) | DATE | Recertification Date |
16 | LM_RECERT_WRN_DT | Date(10) | DATE | Recertification Warn Date |
17 | LM_EXPR_WRN_DT | Date(10) | DATE | Expiration Warning Date |
18 | LM_CERT_ID | Number(10,0) | DECIMAL(10) NOT NULL | Certification ID |
19 | LM_CERT_EFFDT | Date(10) | DATE | Current Certification Date |
20 | LM_SCN_STTS | Character(4) | VARCHAR2(4) NOT NULL |
Program Section Status
CANC=Dropped COMP=Completed ENRL=Registered EXPR=Expired INPO=In-Progress REVK=Revoked WARN=Warning |