Priority | Status | Error/Quality Check | Solution | Presumed Benefits | References/Comments | Proposed User | Resources |
---|
1 | | EJ03 - INVALID TOP CODE (Non-Instructional) | - Valid ASA codes required on NBAJOBS>CA Pension Tab for reportable employees without a teaching assignment
Mary Schaefer in Payroll graciously populated values for us before we realized that some BAM values are invalid. Note |
---|
Values must comply with DED and BAM. 6000 - 7900 |
Drawio |
---|
zoom | 1 |
---|
simple | 0 |
---|
inComment | 0 |
---|
pageId | 695402645 |
---|
custContentId | 1218052097 |
---|
lbox | 0 |
---|
diagramDisplayName | EJ03 Logic (ASA-TOP Codes) |
---|
hiResPreview | 1 |
---|
contentVer | 5 |
---|
revision | 5 |
---|
baseUrl | https://sequoias.atlassian.net/wiki |
---|
diagramName | Untitled Diagram.drawio |
---|
pCenter | 1 |
---|
width | 387.0000000000002 |
---|
links | |
---|
tbstyle | |
---|
height | 692.0000000000002 |
---|
|
HR Banner Consultant Meeting on 5/24/2022 recommended that Applications script populate ASA codes off the Program code. It does not appear that the Program code of every FOAP lines up with an allowed ASA code: Code Block |
---|
| SELECT a.NBRJLBD_PIDM,
F_GETSPRIDENID(a.NBRJLBD_PIDM) AS BANNER_ID,
a.NBRJLBD_POSN,
a.NBRJLBD_SUFF,
a.NBRJLBD_PROG_CODE,
a.NBRJLBD_EFFECTIVE_DATE,
NBRJOBS_DESC
FROM NBRJLBD a
JOIN NBRJOBS ON NBRJLBD_PIDM = NBRJOBS_PIDM
AND NBRJLBD_POSN = NBRJOBS_POSN
AND NBRJLBD_SUFF = NBRJOBS_SUFF
JOIN PEBEMPL ON NBRJLBD_PIDM = PEBEMPL_PIDM
JOIN NBBPOSN ON NBBPOSN_POSN = NBRJLBD_POSN
INNER JOIN (
SELECT NBRJLBD_PIDM,
MAX(NBRJLBD_EFFECTIVE_DATE) AS NBRJLBD_EFFECTIVE_DATE
FROM NBRJLBD
GROUP BY NBRJLBD_PIDM
) b
ON a.NBRJLBD_PIDM = b.NBRJLBD_PIDM
AND a.NBRJLBD_EFFECTIVE_DATE = b.NBRJLBD_EFFECTIVE_DATE
WHERE NBRJOBS_STATUS = 'A'
AND PEBEMPL_EMPL_STATUS = 'A'
AND NBRJOBS_SGRP_CODE LIKE '2022%'
AND (NBRJLBD_PROG_CODE < '6000'
OR NBRJLBD_PROG_CODE > '8000')
AND NBBPOSN_STATUS = 'A'
AND PEBEMPL_EGRP_CODE NOT IN ('O','XB','XR','XS','XT')
GROUP BY a.NBRJLBD_PIDM, a.NBRJLBD_POSN, a.NBRJLBD_SUFF, a.NBRJLBD_PROG_CODE, a.NBRJLBD_EFFECTIVE_DATE, NBRJOBS_DESC
ORDER BY NBRJLBD_POSN ASC; |
Info |
---|
This code returned 749 records on 5/25/2022. |
Jira Legacy |
---|
server | System JIRA |
---|
columns | key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution |
---|
maximumIssues | 20 |
---|
jqlQuery | key = AP-272 |
---|
serverId | 8b861ae3-ff87-316b-a17e-97c61a7e2fb4 |
---|
|
- Fiscal will change Program on FOAP for non-Faculty. Per 7/20/2022 meeting.
| More accurate IPEDs/Datamart. Could run reports off assignment classifications. | | Keila Reynosa, Linda Reis | BAM, Argos MIS EJ03 Report |
2 | | EB07, EB08 - EEO6 AND EMPLOYMENT CLASS MUST AGREE | - NTRPCLS>NTRPCLS_ESKL_CODE needs an audit for the following employee types: Police Academy instructors, Fire Academy instructors, assistant coaches, counselors, librarians, curriculum coordinator
- HR will input Counselors and Librarians to SIAASGN (SIRNIST). Consultant needed to define Workload/FTE questions as they relate to faculty who also teach as part of their normal workload. -per 2/9/22 Meeting
- HR to change MISC employees to “P” instead of listing them as adjunct on PEAEMPL. -per 2/9/22 Meeting
Query that looks for paid faculty that do not have a SIRASGN record for specified term . If successful may need to convert to an Argos report. Code Block |
---|
|
|
SELECT DISTINCT BANINST1.COS_GENERAL.GET_BANNERID_FROM_PIDM(NBRJOBS_PIDM) AS BANNER_ID
,F_GET_ORDERBY_LAST_NAME(NBRJOBS_PIDM) AS LAST_NAME
,F_GET_ORDERBY_FIRST_NAME(NBRJOBS_PIDM) AS FIRST_NAME
,NBRJOBS_POSN
,NBRJOBS_SUFF
,NBRJOBS_DESC
,MAX(PHRHIST_EVENT_DATE)
FROM NBRJOBS
LEFT JOIN PHRHIST ON NBRJOBS_PIDM = PHRHIST_PIDM
WHERE NBRJOBS_PIDM NOT IN
(
SELECT SIRASGN_PIDM
FROM SIRASGN
WHERE SIRASGN_TERM_CODE = '202310' --FALL 2022
)
AND BANINST1.COS_EMPLOYEE.F_JOB_IS_ACTIVE(NBRJOBS_PIDM, NBRJOBS_POSN, NBRJOBS_SUFF) = 'A'
AND (NBRJOBS_ECLS_CODE LIKE 'J%' OR NBRJOBS_ECLS_CODE LIKE 'F%')
AND PHRHIST_EVENT_DATE=(SELECT MAX(PHRHIST_EVENT_DATE) FROM PHRHIST)
AND NBRJOBS_SUFF = '00'
GROUP BY NBRJOBS_PIDM
,NBRJOBS_POSN
,NBRJOBS_SUFF
,NBRJOBS_DESC
,PHRHIST_EVENT_DATE
ORDER BY BANNER_ID ASChas been added to the MIS EB/EJ Error Checking report.
Possible benefit of preventing adjunct from going overload. | If it’s decided that they should be non-teaching faculty, then EJ01 will have to be maintained for each of these employees on SIAASGN (SIRNIST). Recommendation is that Academic Services be responsible for that. Ellucian has recommended that we use non-Instructional records to accurately represent the entire responsibilities of an employee’s position. | Khantee See, Keila Reynosa, Linda Reis conversation can be assisted by: Antonio View file |
---|
name | Current vs. Proposed State Flowchart.pdf |
---|
|
| EB DED, EB-EJ Error Report Reference | 3 | | EJ01, EJ02 - ASSIGNMENT TYPE AND LEAVE TYPE MUST AGREE | - SIAASGN>Non Instructional Tab>SIRNIST_ASTY_CODE needs to be discussed. We need to decide of Banking Load, Using Bank Load, or Load Balancing should be reported and how. CLC (converted to Credit, Leave) is used in each scenario. Those then fail the referential to EJ02 where the employee assignment is typically “Y - Not Applicable” (not on Leave).
Relates to this project: SIAASGN Best Practices Implementation | Can create backup for Khantee. Make an offline Excel document more resilient. Could create reports for faculty to view. | EB-EJ Error Report Reference has specific examples with PII on Issue ID “EJ01_1” | Khantee See conversation can be assisted by: Antonio | EJ DED |
4 | | EB09 - Null Values | - PTRJCRE Job Change type crosswalk field has null values on about 70 codes.
- Assess validity of ‘L%’ Job Change types. Don’t think those crosswalk to valid EB09 values.
- HR will add crosswalk field or “X-” invalid values. - per 2/9/22 Meeting
| | | Keila Reynosa, Linda Reis | EB DED |
5 | | EJ04 - Quality Check | - Hours per Day seems to be given a blanket 1 or 8.
- HR to assess on a per case basis. May require update to forms and will require getting that information from the hiring manager(s).
| Could create reports to assess additional positions. Could avoid the erroneous public perception (Datamart/IPEDs) that we have hundreds/thousands hours of extra hours per day being worked by our employees. | EMPLOYEE ASSIGNMENT WEEKLY HOURS if not in student, Hours per Day x Appointment Percent x 5(((NBRJOBS_HRS_DAY * NBRJOBS_APPT_PCT)/100) *5) Expand |
---|
| Assignments that rely on just NBAJOBS records seem to be inaccurate. EJ04 has an integrity check to make sure it doesn’t exceed an allowed amount. |
EB-EJ Error Report Reference has specific examples with PII on Issue ID “EJ04-1” | Keila Reynosa, Linda Reis conversation can be assisted by: Julie Monfette | EJ DED |
6 | | EJ08 - Quality Check | - Audit FTE on non-instructional employees in particular.
| Could create reports off this accurate data. Faculty productivity, FON audit. Could protect us against future audits, or the state using this data for an increased purpose. | FTE seems to be listed at 1 for Primary and Secondary assignments on NBAJOBS. For non-instructional assignments that leads to some employees with >2 Full Time Equivalent loads. | Keila Reynosa, Linda Reis | EJ DED |
7 | | EB06 - Null Values | - Populate GOAMEDI>General Medical Information>"Primary Disability"
| Emergency response, accommodation studies. | | Keila Reynosa, Linda Reis | EB DED |
8 | | EB11 Crosswalk | - Audit PTRECLS, EEO “6-Unreported”. Currently crosswalks to EB11 “1-Less than 9 months” on PTVEEOG
| | Image RemovedImage Added | Keila Reynosa, Linda Reis | EB DED |
9 | | EJ08 - WEXP on Student Side | | We may be reporting WEXP FTE inaccurately. | How should WEXP FTE be reported? Having the answer to this may have impacts on Scheduling. EB-EJ Error Report Reference has specific examples with PII on Issue ID “EJ08-1” | Jordan Lamb , ludmilag | |
10 | | EJ08 - NURS Scheduling | | Would decrease manual edits. | Our SQL that takes the table and converts it to the file seems wrong at the least for NURS sections. Seems like the FTE is summing for each section and putting them on each separate session record. EB-EJ Error Report Reference has specific examples with PII on Issue ID “EJ08-2” | Jordan Lamb , ludmilag | |
11 | | EJ - Assignment not properly terminated. Jira Legacy |
---|
server | System JIRA |
---|
serverId | 8b861ae3-ff87-316b-a17e-97c61a7e2fb4 |
---|
key | AP-105 |
---|
|
| - Find jobs on NBAJOBS that have an
NBRBJOB_END_DATE , but an NBRJOBS_STATUS that is not “T-Terminated”
SELECT *
FROM NBRJOBS a
INNER JOIN NBRBJOB
ON NBRBJOB_PIDM = a.NBRJOBS_PIDM AND NBRBJOB_POSN = a.NBRJOBS_POSN AND a.NBRJOBS_SUFF = NBRBJOB_SUFF
WHERE a.NBRJOBS_STATUS = 'A'
AND a.NBRJOBS_POSN NOT IN
(SELECT b.NBRJOBS_POSN
FROM NBRJOBS b
WHERE a.NBRJOBS_PIDM = b.NBRJOBS_PIDM AND a.NBRJOBS_SUFF = b.NBRJOBS_SUFF AND b.NBRJOBS_STATUS = 'T')
AND NBRBJOB_END_DATE < SYSDATE;
| Prevent access/pay issues from possibly arising in the future. | Possibly related to records with NBRJOBS_DATA_ORIGIN like '%.sql' | Jordan Lamb ludmilag | |
13 (NEW) | | We have not been using MIS DED allowed codes for EB14 and there is no crosswalk table. | - Utilize the allowed 1-21 MIS DED codes
Jira Legacy |
---|
server | System JIRA |
---|
serverId | 8b861ae3-ff87-316b-a17e-97c61a7e2fb4 |
---|
key | AP-140 |
---|
|
| We’ll report more than just three unique values on EB14 | Ellucian Case # 02413579 | All HR | |