
| Number: | 010 |
| Name: | Job title |
| Abbreviation: | JOBTITLE |
| Length: | 60 |
| Status: | Compulsory. |
| Description: | This field collects a description of the leaver's job title. Question asked: Q3. What was your job title? |
| Notes: | Core field for employed leavers. Field 65, SIC and field 11, SOCDLHE in the record are core fields (it is the fields that are core really, not the questions) and must be completed for all employed leavers. Each of these fields has two questions on the questionnaire linked to it (questions 7 and 9 and questions 3 and 4 respectively), either or both of which might provide the information necessary to code field 65, SIC and field 11, SOCDLHE. If the leaver answers only one of a pair of questions, but provides sufficient information to allow the institution to code the corresponding field then it is a valid return. On the telephone script one question from each pair has been highlighted as core the one that will allow institutions to also complete field 7, MAKEDO and field 10, JOBTITLE respectively. If when completing the telephone script the caller does not think that the answer provided to question 9 (highlighted as core) gives enough information to code field 65 they should go on and ask question 7. Similarly with questions 3 and 4 to complete field 11, SOCDLHE. In an attempt to ease the burden of DLHE on institutions, and with agreement of the statutory users, the return of text information in Fields 7, MAKEDO and 10, JOBTITLE has again this year been made voluntary. If institutions intend to key the text of job titles and/or employers business for their own purposes then they are asked to return the information to HESA, but they are not required to key it only for HESA's benefit if they have no need for it internally. If your institution does not choose to return the text information in one or both of fields 7, MAKEDO and 10, JOBTITLE then default codes 'XXXX' should be used in the fields. Institutions should note that coding practice of individual institutions who do not return the text could be investigated as part of any audit process. Default code 'XXXX' must be used when field 4, METHOD = '8' or '9' or field 5, EMPCIR = '10' to '14' and '16' to '17'. |
| Example: | Lecturer. |
| Reason Required: | To aid in the coding of Standard Occupation Classification. |
| Up to 60 textual characters or XXXX (default code) |
| 001163 | This field must be completed. (Severity: 99) |
M_NOTEMPTY | |
| 001164 | This field must be an alphanumeric of between 1 and 60 characters or XXXX. (Severity: 99) |
IsValidAlphanum(uiCurFieldNo,1,60) || M_ISFIELD(uiCurFieldNo,"XXXX") | |
| 001165 | If METHOD is coded (8 or 9) this field must be coded XXXX. (Severity: 99) |
M_ISFIELD(_METHOD_,"8") || M_ISFIELD(_METHOD_,"9")? M_ISFIELD(uiCurFieldNo,"XXXX"): M_TRUE | |
| 001166 | If EMPCIR is coded (10-14 or 16-17) this field must be coded XXXX. (Severity: 99) |
(M_ISFIELD(_EMPCIR_,"10") || M_ISFIELD(_EMPCIR_,"11") || M_ISFIELD(_EMPCIR_,"12") || M_ISFIELD(_EMPCIR_,"13") || M_ISFIELD(_EMPCIR_,"14") || M_ISFIELD(_EMPCIR_,"16") || M_ISFIELD(_EMPCIR_,"17"))? M_ISFIELD(uiCurFieldNo,"XXXX"): M_TRUE | |
| 001355 | If EMPCIR is coded (01 - 03 or 15) this field should NOT be coded XXXX. (Severity: 9) |
(M_ISFIELD(_EMPCIR_,"01") || M_ISFIELD(_EMPCIR_,"02") || M_ISFIELD(_EMPCIR_,"03") || M_ISFIELD(_EMPCIR_,"15") )? !M_ISFIELD(uiCurFieldNo,"XXXX"): M_TRUE |