Oracle E-Business Suite · Schema
CodeConversion
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| codeConversionId | integer | Code conversion mapping identifier |
| tradingPartnerId | integer | Trading partner identifier |
| transactionType | string | Transaction type |
| codeCategory | string | Code category |
| externalValue | string | External trading partner code value |
| internalValue | string | Internal Oracle EBS code value |
| description | string | Code conversion description |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CodeConversion",
"type": "object",
"properties": {
"codeConversionId": {
"type": "integer",
"description": "Code conversion mapping identifier"
},
"tradingPartnerId": {
"type": "integer",
"description": "Trading partner identifier"
},
"transactionType": {
"type": "string",
"description": "Transaction type"
},
"codeCategory": {
"type": "string",
"description": "Code category"
},
"externalValue": {
"type": "string",
"description": "External trading partner code value"
},
"internalValue": {
"type": "string",
"description": "Internal Oracle EBS code value"
},
"description": {
"type": "string",
"description": "Code conversion description"
}
}
}