LM_RECERTPRG_VW(SQL View) |
Index Back |
---|---|
Learner Recertification ViewLists all recertifications available for the current certification. |
SELECT A.LM_PRG_ID , A.EFFDT , A.LM_PRG_CD , A.LM_PRG_LONG_NM , A.LM_PRG_TYPE , A.LM_CERT_ID , A.LM_EXPR_DT , A.LM_EXPR_DAYS FROM PS_LM_PRG A WHERE A.LM_PRG_TYPE = 'CE' AND %CurrentDateIn BETWEEN A.EFFDT AND A.LM_END_EFFDT AND A.LM_PRG_STATUS = '10' AND A.LM_CERT_ID <> 0 |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | LM_PRG_ID | Number(10,0) | DECIMAL(10) NOT NULL | Program ID is a unique identifier for curriculum and certification Programs. |
2 | EFFDT | Date(10) | DATE |
Effective Date
Default Value: %date |
3 | LM_PRG_CD | Character(30) | VARCHAR2(30) NOT NULL | Program Code is a user defined field. This field allows duplicates and is not part of the primary key structure. |
4 | LM_PRG_LONG_NM | Character(200) | VARCHAR2(200) NOT NULL | Program Long Name |
5 | LM_PRG_TYPE | Character(2) | VARCHAR2(2) NOT NULL |
Program Type
CE=Certification CU=Curriculum |
6 | LM_CERT_ID | Number(10,0) | DECIMAL(10) NOT NULL | Certification ID |
7 | LM_EXPR_DT | Date(10) | DATE | Certification Expiration Date is a fixed, preset date when the certification will expire. |
8 | LM_EXPR_DAYS | Number(5,0) | INTEGER NOT NULL | This is a validity period used for notifying the learner. This is what is shown to the learner as the number of days that the Certificate is valid for. |