Oracle E-Business Suite · Arazzo Workflow

Oracle EBS Requisition-to-Purchase-Order

Version 1.0.0

Find an approved requisition, resolve its supplier, and convert it into a purchase order.

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

Provider

oracle-e-business-suite

Workflows

requisition-to-purchase-order
Convert an approved requisition into a purchase order for a supplier.
Finds an approved requisition by number, resolves the supplier by name, creates a standard purchase order for the item, and reads the order back to confirm it.
4 steps inputs: currencyCode, itemId, quantity, requisitionNumber, unitPrice, vendorName outputs: authorizationStatus, poHeaderId, requisitionHeaderId, vendorId
1
findRequisition
Locate the approved requisition by number, returning the first match.
2
resolveSupplier
Resolve the intended supplier by name, returning the first match.
3
createPurchaseOrder
Create a standard purchase order for the resolved supplier and the requisitioned item.
4
confirmPurchaseOrder
Read the created purchase order back by header identifier to confirm it persisted.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle EBS Requisition-to-Purchase-Order
  summary: Find an approved requisition, resolve its supplier, and convert it into a purchase order.
  description: >-
    An Oracle Purchasing flow that turns demand into a buy. The workflow locates
    an approved purchase requisition, resolves the intended supplier by name,
    creates a standard purchase order for the requested item, and reads the
    order back to confirm it. Each step inlines its request so the
    requisition-to-PO chain can be executed without opening the OpenAPI source.
  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: purchasingApi
  url: ../openapi/oracle-e-business-suite-purchasing-api-openapi.yml
  type: openapi
workflows:
- workflowId: requisition-to-purchase-order
  summary: Convert an approved requisition into a purchase order for a supplier.
  description: >-
    Finds an approved requisition by number, resolves the supplier by name,
    creates a standard purchase order for the item, and reads the order back to
    confirm it.
  inputs:
    type: object
    required:
    - requisitionNumber
    - vendorName
    - itemId
    - quantity
    - unitPrice
    - currencyCode
    properties:
      requisitionNumber:
        type: string
        description: Requisition number to convert.
      vendorName:
        type: string
        description: Supplier name to resolve (supports wildcards).
      itemId:
        type: integer
        description: Inventory item identifier to purchase.
      quantity:
        type: number
        description: Quantity to order.
      unitPrice:
        type: number
        description: Unit price.
      currencyCode:
        type: string
        description: Currency code.
  steps:
  - stepId: findRequisition
    description: >-
      Locate the approved requisition by number, returning the first match.
    operationId: getRequisitions
    parameters:
    - name: requisitionNumber
      in: query
      value: $inputs.requisitionNumber
    - name: authorizationStatus
      in: query
      value: APPROVED
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      requisitionHeaderId: $response.body#/items/0/requisitionHeaderId
  - stepId: resolveSupplier
    description: >-
      Resolve the intended supplier by name, returning the first match.
    operationId: getSuppliers
    parameters:
    - name: vendorName
      in: query
      value: $inputs.vendorName
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      vendorId: $response.body#/items/0/vendorId
      vendorSiteId: $response.body#/items/0/sites/0/vendorSiteId
  - stepId: createPurchaseOrder
    description: >-
      Create a standard purchase order for the resolved supplier and the
      requisitioned item.
    operationId: createPurchaseOrder
    requestBody:
      contentType: application/json
      payload:
        vendorId: $steps.resolveSupplier.outputs.vendorId
        vendorSiteId: $steps.resolveSupplier.outputs.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: confirmPurchaseOrder
    description: >-
      Read the created purchase order back by header identifier to confirm it
      persisted.
    operationId: getPurchaseOrderById
    parameters:
    - name: poHeaderId
      in: path
      value: $steps.createPurchaseOrder.outputs.poHeaderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      authorizationStatus: $response.body#/authorizationStatus
  outputs:
    requisitionHeaderId: $steps.findRequisition.outputs.requisitionHeaderId
    vendorId: $steps.resolveSupplier.outputs.vendorId
    poHeaderId: $steps.createPurchaseOrder.outputs.poHeaderId
    authorizationStatus: $steps.confirmPurchaseOrder.outputs.authorizationStatus

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-requisition-to-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.