Oracle E-Business Suite · Schema
OutboundTransactionExtract
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| transactionType | string | Outbound transaction type |
| tradingPartnerId | integer | |
| tradingPartnerSiteId | integer | |
| dateFrom | string | Extract documents from this date |
| dateTo | string | Extract documents to this date |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OutboundTransactionExtract",
"title": "OutboundTransactionExtract",
"type": "object",
"required": [
"transactionType",
"tradingPartnerId"
],
"properties": {
"transactionType": {
"type": "string",
"description": "Outbound transaction type",
"enum": [
"POO",
"POCO",
"INO",
"CDMO",
"PYO",
"SPSO",
"SSSO",
"ADVO",
"MVSTO"
],
"example": "POO"
},
"tradingPartnerId": {
"type": "integer",
"example": "500123"
},
"tradingPartnerSiteId": {
"type": "integer",
"example": "500123"
},
"dateFrom": {
"type": "string",
"format": "date",
"description": "Extract documents from this date",
"example": "2026-01-15"
},
"dateTo": {
"type": "string",
"format": "date",
"description": "Extract documents to this date",
"example": "2026-01-15"
}
}
}