PurchaseOrder

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
POHeaderId integer Purchase order header identifier
OrderNumber string PO number
ProcurementBusinessUnit string Procurement business unit
SupplierName string Supplier name
SupplierNumber string Supplier number
SupplierSite string Supplier site
BuyerName string Buyer name
OrderDate string PO date
TotalAmount number Total PO amount
CurrencyCode string PO currency
Status string PO status
PaymentTerms string Payment terms
ShipToLocation string Ship-to location
BillToLocation string Bill-to location
CreationDate string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-purchaseorder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchaseOrder",
  "title": "PurchaseOrder",
  "type": "object",
  "properties": {
    "POHeaderId": {
      "type": "integer",
      "description": "Purchase order header identifier"
    },
    "OrderNumber": {
      "type": "string",
      "description": "PO number"
    },
    "ProcurementBusinessUnit": {
      "type": "string",
      "description": "Procurement business unit"
    },
    "SupplierName": {
      "type": "string",
      "description": "Supplier name"
    },
    "SupplierNumber": {
      "type": "string",
      "description": "Supplier number"
    },
    "SupplierSite": {
      "type": "string",
      "description": "Supplier site"
    },
    "BuyerName": {
      "type": "string",
      "description": "Buyer name"
    },
    "OrderDate": {
      "type": "string",
      "format": "date",
      "description": "PO date"
    },
    "TotalAmount": {
      "type": "number",
      "format": "double",
      "description": "Total PO amount"
    },
    "CurrencyCode": {
      "type": "string",
      "description": "PO currency"
    },
    "Status": {
      "type": "string",
      "description": "PO status",
      "enum": [
        "Incomplete",
        "Open",
        "Closed",
        "Cancelled",
        "On Hold",
        "Pending Approval",
        "Approved",
        "Rejected"
      ]
    },
    "PaymentTerms": {
      "type": "string",
      "description": "Payment terms"
    },
    "ShipToLocation": {
      "type": "string",
      "description": "Ship-to location"
    },
    "BillToLocation": {
      "type": "string",
      "description": "Bill-to location"
    },
    "CreationDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}