Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Objective

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

...

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"])

...

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.

...