Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 15 Next »

Objective

This article outlines the reporting scope and file structure for Student (PSD) report for PIR providers.


Assumptions

  • The User has understanding of HEPCAT / HEIMS reporting
  • The User has access to HEPCAT
  • The user has an understanding of the Australian Tertiary Education System.

Key terms and concepts

Providers approved under the TEQSA Act are required to report data for all domestic, overseas, onshore and offshore students enrolled in or undertaking a course of study leading to a higher education award of the organisation.

Please note:

Students must be reported if they have been enrolled and have been entitled to tuition in the reference year (including students that have ceased enrolment after the census date during the reference year).
Students that are enrolled at the end of the reference year but commence study in the following year may be reported in the either the current year or following reference year. However, it is important that a single student's unit is not reported twice ("double counted") across years, where the student has only attempted the unit once.

The data reported in the Student submission provides:

  • a profile of each student/course/unit of study combination for a reporting year
  • the student load (equivalent full time student load or EFTSL) for all units of study undertaken in the reporting year
  • the Unit of Study Completions Status (element 355 PIR) for every unit of study undertaken in the reporting year.

If a student is undertaking more than one course in the same reporting year there may be more than one record on the student submission for that student.


Reporting Scope and File Structure

Each record in the Student submission must have a unique combination of values for:

  • Student identification code (element 313)
  • Course code (element 307)
  • Unit of study code (element 354) 
  • Unit of study census date (element 489)

These elements are the key identifiers for a student record.




Element NumberElement NameParadigm EntityDefault Paradigm field nameDefault Paradigm field labelsParadigm menu locationField TypeDefault Paradigm ValueWidthDerived FieldDerived MethodComment
313Student identification codeStudentstudentNumberStudent NoStudent/Student Details/Edit DetailsTEXT-10No-Unique value entered by users
307Course codeBase ProgramdestCourseCodeHEIMS Course CodeCourses/Edit Details/HEIMS FieldsTEXT-10No-Entered by the user on the Paradigm Edit Course HEIMS Fields
327Basis for admission to current courseProgram EnrolmentdestE327Student Admission Student/Course Enrolment/Course/HEIMS informationSELECT_LONG12

If the reporting year is greater than the course enrolment start date year then return '01' (Not a commencing student).

In all other else return the selected


if($commencement_year < $submission_year){
return '01';
}else{
return $survey_program_enrolment_dtls->data_fields

320Location code of permanent home residenceStudentdestE320

DEST_E320 :In what country is your PERMANENT home residence? If in Australia write A plus the post code. If in another country choose the country.

Student/Student Details/Edit HEIMS DetailsPOSTCODE999995No-
328Course commencement dateProgram EnrolmentstartDateStart Date Student/Course Enrolment/CourseDATE06No-User enters a start date for each course enrolment of the student
329Mode of attendanceProgram EnrolmentdestModeOfAttendance

HEIMS Mode of Attendance

Student/Course Enrolment/Course/HEIMS informationSELECT11No

330Type of attendance codeProgram EnrolmentdestTypeOfAttendanceHEIMS Type of AttendanceStudent/Course Enrolment/Course/HEIMS informationSELECT11No

354Unit of Study CodeBase UniteduUnitIdHEIMS Resident IndicatorUnits/Unit Details/Edit DetailsTEXT-10No

355Unit of study completion statusUnit EnrolmentdestStudyCompletionStatus

HEIMS Study Completion Status

Student/Course Enrolment/UnitsSELECT41

You will need to load a student who has course enrolment and unit enrolment.

In the Units enrolled by student section, click on the pencil icon against that Unit to load Unit details

358Citizen IndicatorProgram EnrolmentdestResidentIndicator

HEIMS Resident Indicator

Student/Course Enrolment/Course/HEIMS informationSELECT_LONG11


369Tertiary entrance scoreProgram EnrolmentdestE369

Tertiary Entrance Score

Student/Course Enrolment/Course/HEIMS informationSELECT_TERT13


415Reporting Year / Period----SELECT05

Entered by the user on the Paradigm report form
464Discipline CodeBase UnitdestDisciplineHEIMS DisciplineUnits/Unit Details/Edit DetailsSELECT06


477Postcode Higher Education InstitutionProviderpostalCodePost CodeProviders/Edit DetailsTEXT999995





489Unit of study census date(Scheduled unit level)Scheduled UnitdestCensusDateHEIMS Census DateUnits/Scheduled Details/Edit ScheduledTEXT08


490Student Status CodeUnit_EnrolmentdestStudentStatusHEIMS Student StatusStudent/Course Enrolment/UnitsSELECT-3

You will need to load a student who has course enrolment and unit enrolment.

In the Units enrolled by student section, click on the pencil icon against that Unit to load Unit details













587Indicative Tuition Fee for a Domestic or International Fee-paying Place

Base Program

Base Program

standardCourseFeeFullTime

standardCourseFeePartTime

Yearly Course Fee (Full Time)

Yearly Course Fee (Part Time)

Courses/Edit DetailsINPUT-5Yes

Return the contents of the part time course fee field from the base course, when the contents of element 490 is one of the following: "310","311"

Return the contents of the standard full time course fee field from the base course, when the contents of element 490 is one of the following: "301","302","303","304","305"

if (in_array($dest_program_enrolment_dtls->data_fields['destStudentStatus'], array("310","311"))){
return round($survey_program_dtls->data_fields['standardCourseFeePartTime']);
} else if (in_array($dest_program_enrolment_dtls->data_fields['destStudentStatus'], array("301","302","303","304","305"))) {
return round($survey_program_dtls->data_fields['standardCourseFeeFullTime']);
537Additional entrance criteriaBase Program CampusdestE537Additional Entrance CriteriaCourses/Edit Details/Campus where course is taughtSELECT31


559Course campus postcodeProviderpostalCodePost CodeProviders/Edit DetailsTEXT-5No

569Campus Operation TypeBase Program CampusdestE569Campus Operation TypeCourses/Edit Details/Campus where course is taughtSELECT02No

570Offshore ModeBase Program CampusdestE570Offshore ModeCourses/Edit Details/Campus where course is taughtSELECTZ2No

571Offshore Delivery IndicatorBase Program CampusdestE571Offshore Delivery IndicatorCourses/Edit Details/Campus where course is taughtSELECT02No

339ETFSL - Equivalent Full-Time Student Load

Base Unit

Base Unit

ugradEftsuLoad

pgradEftsuLoad


EFTSL Load (UGrad)

EFTSL Load (PGrad)

Units/Unit Details/Edit DetailsTEXT12510Yes

When the course level is undergraduate, return the undergraduate eftsu load.


When the course level is postgraduate, return the postgraduate eftsu load.

if ($survey_program_dtls->data_fields['programLevel']=='UNDERGRAD'){
return ereg_replace('\.', '', $survey_unit_dtls->data_fields["ugradEftsuLoad"]);
}
elseif (($survey_program_dtls->data_fields['programLevel']=='POSTGRAD')||($survey_program_dtls->data_fields['programLevel']=='GRADUATE')){
return ereg_replace('\.', '', $survey_unit_dtls->data_fields["pgradEftsuLoad"])


Workflow

How to run PIR Student (PSD) Report

  1. Click on Reports, go to TEQSA and click on it.
  2. Find PIR Student (PSD) report, click on Get Report button.
  3. Fill out the fields by referring to the following table.
Field NameValue
InstitutionLeave it not selected
HEIMS ReportAlways choose the latest
Submission Year
Period NumberOne (by default)
Course LevelOnly select one that applicable to your college (hold Ctrl for multiple select)
HEIMS Census DateSelect all census date for the submission year (hold Ctrl for multiple select)
Unit Enrolment StatusSystem select by default
Report ModeOn Screen Full details Mode (Show all output per student)


       4. Click on Produce report button.

Note:  Your screen will redirect to Report Details, showing a list of students and their HEIMS details.

Please note if you see any 'Element Warning' in the report, it does not necessary mean they are errors. It refers to the field is empty so the system uses the default value. You may want to double check whether the default value is the value you agree on.


For example, if you see this DEST_E313 in blue hyperlink in the table, you can right click and open in another window to understand what does this code mean.

Summary view: Scroll down to the bottom of this page, it shows a summary of errors (empty fields).


      5. Choose to Right Click the image save icon to save the file, Select link as...

      6. Do not change the file name, save the file on your local folder.  

      7. Upload the file to HEPCAT application for validation. If not sure, refer to the link in below External resources to download the HEPCAT application.


Further reading


  • No labels