Oracle E-Business Suite · Arazzo Workflow

Oracle EBS EDI Outbound Purchase Order

Version 1.0.0

Create a purchase order, resolve the supplier trading partner, then extract it as outbound EDI.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Business ApplicationsE-Business SuiteEnterpriseERPOracleArazzoWorkflows

Provider

oracle-e-business-suite

Workflows

extract-outbound-po
Raise a PO, resolve its trading partner, and extract it as outbound EDI.
Creates a purchase order for a supplier, resolves that supplier as a trading partner, extracts the outbound purchase order EDI document, and lists outbound transactions to confirm the extraction.
4 steps inputs: currencyCode, dateFrom, dateTo, itemId, quantity, tradingPartnerName, unitPrice, vendorId, vendorSiteId outputs: extractionRequestId, poHeaderId, processStatus
1
createPurchaseOrder
Create a standard purchase order for the supplier with a single line.
2
resolveTradingPartner
Resolve the supplier as an EDI trading partner by name, returning the first match.
3
extractOutbound
Initiate an outbound purchase order (POO) EDI extraction for the resolved trading partner over the supplied date range.
4
confirmOutbound
List outbound POO transactions for the trading partner to confirm the extraction was queued and capture its processing status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle EBS EDI Outbound Purchase Order
  summary: Create a purchase order, resolve the supplier trading partner, then extract it as outbound EDI.
  description: >-
    A cross-module flow joining Oracle Purchasing and the e-Commerce Gateway.
    The workflow raises a purchase order, resolves the supplier as an EDI
    trading partner, initiates an outbound EDI extraction for the purchase
    order document type, and lists outbound transactions to confirm the
    extraction. Each step inlines its request so the outbound EDI chain can be
    executed without opening the OpenAPI sources.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-500.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-500.30
      capability_name: Purchase Order Management
      spec: oracle-e-business-suite-purchasing-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: outboundTransactionsApi
  url: ../openapi/oracle-e-business-suite-outbound-transactions-api-openapi.yml
  type: openapi
- name: purchasingApi
  url: ../openapi/oracle-e-business-suite-purchasing-api-openapi.yml
  type: openapi
- name: tradingPartnersApi
  url: ../openapi/oracle-e-business-suite-trading-partners-api-openapi.yml
  type: openapi
workflows:
- workflowId: extract-outbound-po
  summary: Raise a PO, resolve its trading partner, and extract it as outbound EDI.
  description: >-
    Creates a purchase order for a supplier, resolves that supplier as a
    trading partner, extracts the outbound purchase order EDI document, and
    lists outbound transactions to confirm the extraction.
  inputs:
    type: object
    required:
    - vendorId
    - vendorSiteId
    - currencyCode
    - itemId
    - quantity
    - unitPrice
    - tradingPartnerName
    - dateFrom
    - dateTo
    properties:
      vendorId:
        type: integer
        description: Supplier/vendor identifier for the purchase order.
      vendorSiteId:
        type: integer
        description: Supplier site identifier.
      currencyCode:
        type: string
        description: Currency code for the order.
      itemId:
        type: integer
        description: Inventory item to order.
      quantity:
        type: number
        description: Quantity to order.
      unitPrice:
        type: number
        description: Unit price.
      tradingPartnerName:
        type: string
        description: Trading partner name matching the supplier (supports wildcards).
      dateFrom:
        type: string
        description: Extraction date range start in YYYY-MM-DD format.
      dateTo:
        type: string
        description: Extraction date range end in YYYY-MM-DD format.
  steps:
  - stepId: createPurchaseOrder
    description: >-
      Create a standard purchase order for the supplier with a single line.
    operationId: createPurchaseOrder
    requestBody:
      contentType: application/json
      payload:
        vendorId: $inputs.vendorId
        vendorSiteId: $inputs.vendorSiteId
        currencyCode: $inputs.currencyCode
        typeLookupCode: STANDARD
        lines:
        - lineNum: 10
          itemId: $inputs.itemId
          quantity: $inputs.quantity
          unitPrice: $inputs.unitPrice
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      poHeaderId: $response.body#/poHeaderId
  - stepId: resolveTradingPartner
    description: >-
      Resolve the supplier as an EDI trading partner by name, returning the
      first match.
    operationId: getTradingPartners
    parameters:
    - name: tradingPartnerName
      in: query
      value: $inputs.tradingPartnerName
    - name: tradingPartnerType
      in: query
      value: SUPPLIER
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tradingPartnerId: $response.body#/items/0/tradingPartnerId
      tradingPartnerSiteId: $response.body#/items/0/tradingPartnerSiteId
  - stepId: extractOutbound
    description: >-
      Initiate an outbound purchase order (POO) EDI extraction for the resolved
      trading partner over the supplied date range.
    operationId: extractOutboundTransaction
    requestBody:
      contentType: application/json
      payload:
        transactionType: POO
        tradingPartnerId: $steps.resolveTradingPartner.outputs.tradingPartnerId
        tradingPartnerSiteId: $steps.resolveTradingPartner.outputs.tradingPartnerSiteId
        dateFrom: $inputs.dateFrom
        dateTo: $inputs.dateTo
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      requestId: $response.body#/requestId
  - stepId: confirmOutbound
    description: >-
      List outbound POO transactions for the trading partner to confirm the
      extraction was queued and capture its processing status.
    operationId: getOutboundTransactions
    parameters:
    - name: transactionType
      in: query
      value: POO
    - name: tradingPartnerId
      in: query
      value: $steps.resolveTradingPartner.outputs.tradingPartnerId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      processStatus: $response.body#/items/0/processStatus
  outputs:
    poHeaderId: $steps.createPurchaseOrder.outputs.poHeaderId
    extractionRequestId: $steps.extractOutbound.outputs.requestId
    processStatus: $steps.confirmOutbound.outputs.processStatus

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/oracle-e-business-suite-edi-outbound-purchase-order-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.