Oracle E-Business Suite · Schema
PayrollRun
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| payrollActionId | integer | Payroll action identifier |
| payrollId | integer | Payroll identifier |
| actionType | string | Action type (R=Run, Q=QuickPay, etc.) |
| actionStatus | string | Action status |
| effectiveDate | string | |
| dateEarned | string | |
| periodOfServiceId | integer | |
| businessGroupId | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PayrollRun",
"type": "object",
"properties": {
"payrollActionId": {
"type": "integer",
"description": "Payroll action identifier"
},
"payrollId": {
"type": "integer",
"description": "Payroll identifier"
},
"actionType": {
"type": "string",
"description": "Action type (R=Run, Q=QuickPay, etc.)"
},
"actionStatus": {
"type": "string",
"description": "Action status"
},
"effectiveDate": {
"type": "string"
},
"dateEarned": {
"type": "string"
},
"periodOfServiceId": {
"type": "integer"
},
"businessGroupId": {
"type": "integer"
}
}
}