SAP · Schema

JournalEntryLine

AIBTPBusiness ApplicationsCloudData ManagementEnterpriseERPIntegration

Properties

Name Type Description
AccountCode string General ledger account code
Debit number Debit amount in local currency
Credit number Credit amount in local currency
ShortName string Short name or business partner code
LineMemo string Memo for this line
View JSON Schema on GitHub

JSON Schema

sap-business-one-service-layer-journal-entry-line-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "JournalEntryLine",
  "type": "object",
  "properties": {
    "AccountCode": {
      "type": "string",
      "description": "General ledger account code"
    },
    "Debit": {
      "type": "number",
      "description": "Debit amount in local currency"
    },
    "Credit": {
      "type": "number",
      "description": "Credit amount in local currency"
    },
    "ShortName": {
      "type": "string",
      "description": "Short name or business partner code"
    },
    "LineMemo": {
      "type": "string",
      "description": "Memo for this line"
    }
  }
}