Franchised Aim Data Definition 2008/2009

L_FRANCH, A_FRANCH

DATA DEFINITION

1. Flag indicating that learner has a franchised aim.

PURPOSE

2. This is a flag that indicates if a learner is undertaking at least one franchised learning aim.

RELEVANT COLLECTIONS

  • ILR (LR)
  • ILR (UfI)

SOURCE DATA

3. The following variables are used as source data for the calculation of Flag indicating that learner is undertaking a franchised aim.

Field Name Label Dataset
A21 A21 Franchised Out and Partnership Arrangements Aims Standard File
A_ACTIVE A_ACTIVE Aim Active for the current academic year Aims Standard File

DERIVED VARIABLES AND DATASETS

4. The definition produces the following derived variable(s)

Field Name Label Dataset
A_FRANCH A_FRANCH Franchised Aim Learner, Aims, ESF and HE Standard Files
L_FRANCH L_FRANCH Franchised Aims Learner, Aims, ESF and HE Standard Files

VALUES

5. The table below outlines the categories for L_FRANCH, A_FRANCH

Value Label
-1 Not Applicable/Not Known*
0 No
1 Yes

*Applies to system missing values and where there are non-active aims. Only applicable at learner level.

DETAILED DEFINITION

6. This variable indicates whether any aim for the learner is franchised. For every aim, the calculation looks at Franchised Out or Partnership Arrangement (A21).

7. This excludes those aims that are not included for analytical purposes (using A_ACTIVE).

8. Note that where Franchised Out or Partnership Arrangement (A21) has a value of 27, an aim is exempt from the FE funding franchised discount but Does the Learner Have Any Franchised Aims (L_FRANCH) can still have a value of 1.


Franchised Aim Sample Code

1. The following SPSS code is provided to illustrate the Franchised Aim data definition.

L_FRANCH, A_FRANCH

2. The following table shows the steps required to derive A_FRANCH

Step Condition Action/Action if true Action if false
1 Do any A21<>99 Set A_FRANCH to 1 Set A_FRANCH to 0

3. The following table shows the steps required to derive L_FRANCH

Step Condition Action/Action if true Action if false
1 Does A_ACTIVE=1 Go to 2. Set L_FRANCH=-1
2 (Aggregate)
For all aims where the Provider (L01) and Learner (L03) are the same.
Set L_FRANCH to be the maximum value of the aims in A_FRANCH.

Step Condition Action/Action if true Action if false
1 Does L_FRANCH contain a value None Set L_FRANCH = -1
2 Does L_ACTIVE=0 Set L_FRANCH=-1 None

4. The following SPSS code illustrates how to derive L_FRANCH, A_FRANCH.

GET FILE ‘……….AIMS dataset’.

COMPUTE A_FRANCH=0.
IF A21<>99 A_FRANCH=1.

SELECT IF A_ACTIVE = 1.

VALUE LABELS A_FRANCH
-1 'Not Applicable/Not Known'
0 ‘No’
1 ‘Yes’.

AGGREGATE OUTFILE=….L_FRANCH.SAV
 /PRESORTED
 /BREAK=L01 L03
 /L_FRANCH=MAX(A_FRANCH).

GET FILE ‘…………Learner data set’.

SORT CASES L01 L03.
MATCH FILE
/FILE= *
/TABLE=’…… L_FRANCH.SAV’
/BY L01 L03.

RECODE L_FRANCH (SYSMIS=-1).


Date last modified: 19th January 2009