Oracle Financials · Schema

JournalBatchUpdate

Updatable fields for a journal batch, limited to completion status and reversal attributes

AccountingAccounts PayableAccounts ReceivableCash ManagementERPExpense ManagementFinancial ManagementGeneral Ledger

Properties

Name Type Description
Status string Updated status of the journal batch
ReversalDate string Date for reversing the journal batch
ReversalPeriodName string Accounting period name for the reversal
View JSON Schema on GitHub

JSON Schema

oracle-financials-journalbatchupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JournalBatchUpdate",
  "title": "JournalBatchUpdate",
  "type": "object",
  "description": "Updatable fields for a journal batch, limited to completion status and reversal attributes",
  "properties": {
    "Status": {
      "type": "string",
      "description": "Updated status of the journal batch"
    },
    "ReversalDate": {
      "type": "string",
      "format": "date",
      "description": "Date for reversing the journal batch"
    },
    "ReversalPeriodName": {
      "type": "string",
      "description": "Accounting period name for the reversal"
    }
  }
}