# The University of Sydney-Course & Unit of Study Portal
**Source**: https://cusp.sydney.edu.au/student-tools/view-assessment-scheduling-page/
**Parent**: https://cusp.sydney.edu.au/
## Unit Assessment Scheduling
This page allows you to view a consolidated schedule of all assessments
from a collection of units. To use the tool, simply select an academic year,
select a session, enter the 8 character alpha-numeric codes for the units
you want to see assessments from (separated by commas) and click the Submit button.
\
\
**Note:** Assessment Scheduling Reports are currently available for
Engineering & IT units and some units in the Faculty of Architecture, Design and Urban Planning.
Assessment Schedules for Faculty of Health Science units may be available later this year.
| | |
| --- | --- |
| Year: | 203320322031203020292028202720262025202420232022 |
| Session: | Semester 1 Semester 2 S2 Intensive S1 Intensive Semester 1 Online Semester 1a Semester 1b Semester 2a Semester 2b Semester 2 Online Winter Main Winter L1 Semester 1 Block Mode Semester 2 Block Mode Session 1g Session 2g Summer Early Summer Main Summer L1 Summer Late Summer L3 Summer L4 S2 Late Int S2 Late Ib S2 Late IntA S2 Late IntB S1 Late Int S1 Late IntB S1 Late IntA S1 Late IntC Any Other Int January Int February Int March Int April Int May Int June Int July Int August Int September Int October Int November Int December Session 2 Early Census Session 1 Early Census Research Period 1 Research Period 2 Planning your degree Do not offer |
| Unit Codes: | Type a list of unit codes separated by commas. For example: INFO1103, MATH1003, PHYS1500, INFO1105 |
Submit
---
var viewAssessmentSchedulingPage = new Object();
viewAssessmentSchedulingPage.codesFocus = function() {
if(!$('#codes').attr('data-focused')) {
$('#codes').val('');
$('#codes').attr('data-focused', '1');
$('#codes').css('font-style', 'normal');
$('#codes').css('color', 'black');
}
}
viewAssessmentSchedulingPage.submit = function() {
CUSP.ajaxPost(
'/student-tools/view-scheduling-report-panel',
'scheduling-report', false, false, {
's\_delivered\_year': $('#s\_delivered\_year').val(),
's\_delivered\_cid': $('#s\_delivered\_cid').val(),
'codes': $('#codes').val()
});
}
$(document).ready(function() {
CUSP.makeTips();
});