
| Number: | 029 |
| Name: | Proportion in cost centre 2 |
| Abbreviation: | CCPROP2 |
| Length: | 5 |
| Status: | This field must be completed with a valid code other than the default code when the contract held has more than one activity code. |
| Description: | The proportion of the contract held in each cost centre. |
| Notes: | The totals of field 26, Proportion in cost centre1, field 29, Proportion in cost centre 2 and field 32, Proportion in cost centre 3 must fall within the range 099.7 - 100.3. Default code 'XXXXX' must be used when a cost centre proportion field is not needed i.e. any of fields 29-32 may not be needed. It is expected that most staff will only need 1 or 2 proportion fields per contract. |
| Reason Required: | For analysis of the deployment of staff and comparisons with other statutory returns. |
| A percentage in the range 000.1 to 100.0 or 'XXXXX'. |
| 002014 | CCPROP2 must be a 5 character code with one decimal place in the format nnn.n in the range 000.1 to 100.0 or XXXXX. (Severity: 99) |
IsValidProportion(uiCurFieldNo,0001,1000) || M_ISFIELD(uiCurFieldNo,"XXXXX") | |
| 002092 | If CCENTRE2=XX then CCPROP2 must be XXXXX. (Severity: 99) |
M_ISFIELD(_CCENTRE2_,"XX") ? M_ISFIELD(uiCurFieldNo,"XXXXX") : M_TRUE | |
| 002093 | If CCENTRE2<>XX then CCPROP2 must not be XXXXX. (Severity: 99) |
!M_ISFIELD(_CCENTRE2_,"XX") ? !M_ISFIELD(uiCurFieldNo,"XXXXX") : M_TRUE |