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
View JSON Schema on GitHub

JSON Schema

oracle-e-business-suite-payrollrun-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayrollRun",
  "title": "PayrollRun",
  "type": "object",
  "properties": {
    "payrollActionId": {
      "type": "integer",
      "description": "Payroll action identifier",
      "example": "500123"
    },
    "payrollId": {
      "type": "integer",
      "description": "Payroll identifier",
      "example": "500123"
    },
    "actionType": {
      "type": "string",
      "description": "Action type (R=Run, Q=QuickPay, etc.)",
      "example": "example_value"
    },
    "actionStatus": {
      "type": "string",
      "description": "Action status",
      "enum": [
        "C",
        "E",
        "M",
        "P",
        "U"
      ],
      "example": "C"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "dateEarned": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "periodOfServiceId": {
      "type": "integer",
      "example": "500123"
    },
    "businessGroupId": {
      "type": "integer",
      "example": "500123"
    }
  }
}