PDL Class Rank
I'm able to load the class rank, class size, and percentile fields in SCC_STG_EXACDSM correctly, but during posting, the class rank get revised to match the size/percentile combination. For instance, if I have a student with rank 325, size 340, the percentage calculates as (340-325)/340 * 100 = 4.4, truncates to 4. But when the record posts, class rank shows as 326. Based on the pattern in the errors, the calculation is setting rank = 340 - 340 * 4/100 = 340 - 13.6 (rounded to 14) = 326.
I tried not having it calculate percentage in the load, but it just calculates the percentage (4), then turns around and calculates the rank, and still ends up with 326. I also tried adding decimal places to percentile, but the field is integer only.