Testing Phase

Import File and Data Validation

Issue: Admit and App Totals do not align

This issue was resolved by adding the methodology for removing duplicate deferral apps from the pool, as well as including the DF admit to future status.

Object:  StoredProcedure [SPS].[dbo].[load_ept_table]

Line 271:
       SUM (CASE SUBSTRING (ac.Manual_Decision_Code,1,1) when 'A' THEN 1 ELSE 0 END) Admits,

Suggested Modification:

SUM (CASE WHEN ((SUBSTRING(app.[Manual_Decision_Code],1,1)='A') -- normal Admits
OR app.[Manual_Decision_Code]='DF') -- count DF (Admit to Future) as an admit in the applying term
AND (app.[Decision_Reply_Code]<>'D' OR app.[Decision_Reply_Code] IS NULL) -- ignore duplicate deferral apps (old method)
THEN 1 else 0 END) Admits,

Issue: Headcount totals do not align

Known issues that are causing the difference between methodologies:

SPAAMS 20183 (3 PIDs)

SPAAMS 20193 (2 PIDs)

SPAAMS 20213 (5 PIDs)