SAP Pay Instruction
SapPayInstruction [Schema]
Name | Type | Required | Description |
---|---|---|---|
AverageWeeklyEarningOverride | AverageWeeklyEarning | no | Optional override value to the Average Weekly Earnings calculation. If this value is set then the calculated value is ignored. |
PayAsLumpSum | xsd:boolean | yes | Flag to indicate if the entire statutory absence payment should be paid as a lump sum. |
PayPartWeek | xsd:boolean | yes | Flag to indicate if part weeks should be paid as opposed to payments being made as full weeks only. |
MatchingDate | xsd:date | yes | The date the child is matched for adoption. |
PlacementDate | xsd:date | yes | The date the child is first placed with the adopted parent(s). |
KeepInTouchDays | xsd:date (list of) |
no | A record of the Keep in Touch days the mother has worked during SMP absence. |
Interits from: AbsencePayInstruction[Schema]
Name | Type | Required | Description |
---|---|---|---|
AbsenceStart | AbsenceDate | yes | The start date of the employee absence. |
AbsenceEnd | AbsenceDate | no | The end date of the employee absence, leave blank if the absence is long-term and the end date is not known. |
StatutoryOffset | xsd:boolean | yes | Flag to indicate if the statutory payment should be offset. |
Interits from: PayInstruction [Schema]
See Understanding Pay Instructions for more information on how pay instructions can be used.
Name | Type | Required | Description" |
---|---|---|---|
StartDate | xsd:date | yes | The date the instruction will come into effect. |
EndDate | xsd:date | no | The date the instruction will end, open ended instructions will run forever. |
Description | xsd:string ( max: 200) | no | The pay line descripton override; this description will override the default description from the pay code. See Customising the Payslip for more information on customising the payslip output and using runtime variables. |
PayLineTag | xsd:string ( max: 100) | no | If specified, the PayLineTag value is used to decorate all child pay lines generated by the instruction. |
Example
<?xml version="1.0"?>
<SapPayInstruction xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<StartDate>2021-03-03</StartDate>
<EndDate>2021-03-03</EndDate>
<Description>string</Description>
<PayLineTag>string</PayLineTag>
<AbsenceStart>2021-03-03</AbsenceStart>
<AbsenceEnd>2021-03-03</AbsenceEnd>
<StatutoryOffset>true</StatutoryOffset>
<AverageWeeklyEarningOverride>123.99</AverageWeeklyEarningOverride>
<PayAsLumpSum>true</PayAsLumpSum>
<PayPartWeek>true</PayPartWeek>
<MatchingDate>2021-03-03</MatchingDate>
<PlacementDate>2021-03-03</PlacementDate>
<KeepInTouchDays />
</SapPayInstruction>
{
"SapPayInstruction": {
"StartDate": "2021-03-03",
"EndDate": "2021-03-03",
"Description": "string",
"PayLineTag": "string",
"AbsenceStart": "2021-03-03",
"AbsenceEnd": "2021-03-03",
"StatutoryOffset": "true",
"AverageWeeklyEarningOverride": "123.99",
"PayAsLumpSum": "true",
"PayPartWeek": "true",
"MatchingDate": "2021-03-03",
"PlacementDate": "2021-03-03",
"KeepInTouchDays": { "Date": [] }
}
}