Oracle E-Business Suite · Arazzo Workflow

Oracle EBS BOM-to-Job Planning

Version 1.0.0

Resolve a bill of material and routing for an assembly, then plan a discrete job from them.

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

Provider

oracle-e-business-suite

Workflows

plan-job-from-bom
Resolve the BOM and routing for an assembly and create a build job.
Finds the bill of material for an assembly item, reads its components, confirms a routing exists, and creates a discrete job to build the assembly.
4 steps inputs: assemblyItemId, organizationId, scheduledCompletionDate, scheduledStartDate, startQuantity, wipEntityName outputs: billSequenceId, routingSequenceId, wipEntityId
1
findBom
Find the bill of material for the assembly item in the organization, returning the first match.
2
readBomComponents
Read the bill of material by sequence identifier to capture its full component list for the build.
3
findRouting
Confirm a manufacturing routing exists for the assembly in the organization before scheduling the job.
4
createJob
Create a discrete job to build the assembly per its resolved bill of material and routing.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle EBS BOM-to-Job Planning
  summary: Resolve a bill of material and routing for an assembly, then plan a discrete job from them.
  description: >-
    A manufacturing planning flow for Oracle EBS. The workflow finds the bill
    of material for an assembly item, reads its full component list, confirms a
    routing exists, and creates a discrete job to build the assembly. Each step
    inlines its request so the planning chain can be executed without opening
    the OpenAPI source.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-820.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-820.30
      capability_name: Product Specification Management
      spec: oracle-e-business-suite-bills-of-material-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: billsOfMaterialApi
  url: ../openapi/oracle-e-business-suite-bills-of-material-api-openapi.yml
  type: openapi
- name: workInProcessApi
  url: ../openapi/oracle-e-business-suite-work-in-process-api-openapi.yml
  type: openapi
workflows:
- workflowId: plan-job-from-bom
  summary: Resolve the BOM and routing for an assembly and create a build job.
  description: >-
    Finds the bill of material for an assembly item, reads its components,
    confirms a routing exists, and creates a discrete job to build the
    assembly.
  inputs:
    type: object
    required:
    - assemblyItemId
    - organizationId
    - wipEntityName
    - startQuantity
    - scheduledStartDate
    - scheduledCompletionDate
    properties:
      assemblyItemId:
        type: integer
        description: Assembly item identifier.
      organizationId:
        type: integer
        description: Manufacturing organization identifier.
      wipEntityName:
        type: string
        description: Job name/number to create.
      startQuantity:
        type: number
        description: Quantity of assemblies to build.
      scheduledStartDate:
        type: string
        description: Scheduled start date-time (ISO 8601).
      scheduledCompletionDate:
        type: string
        description: Scheduled completion date-time (ISO 8601).
  steps:
  - stepId: findBom
    description: >-
      Find the bill of material for the assembly item in the organization,
      returning the first match.
    operationId: getBillsOfMaterial
    parameters:
    - name: assemblyItemId
      in: query
      value: $inputs.assemblyItemId
    - name: organizationId
      in: query
      value: $inputs.organizationId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      billSequenceId: $response.body#/items/0/billSequenceId
  - stepId: readBomComponents
    description: >-
      Read the bill of material by sequence identifier to capture its full
      component list for the build.
    operationId: getBillOfMaterialById
    parameters:
    - name: billSequenceId
      in: path
      value: $steps.findBom.outputs.billSequenceId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstComponentItemId: $response.body#/components/0/componentItemId
  - stepId: findRouting
    description: >-
      Confirm a manufacturing routing exists for the assembly in the
      organization before scheduling the job.
    operationId: getRoutings
    parameters:
    - name: assemblyItemId
      in: query
      value: $inputs.assemblyItemId
    - name: organizationId
      in: query
      value: $inputs.organizationId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      routingSequenceId: $response.body#/items/0/routingSequenceId
  - stepId: createJob
    description: >-
      Create a discrete job to build the assembly per its resolved bill of
      material and routing.
    operationId: createDiscreteJob
    requestBody:
      contentType: application/json
      payload:
        wipEntityName: $inputs.wipEntityName
        primaryItemId: $inputs.assemblyItemId
        organizationId: $inputs.organizationId
        startQuantity: $inputs.startQuantity
        scheduledStartDate: $inputs.scheduledStartDate
        scheduledCompletionDate: $inputs.scheduledCompletionDate
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      wipEntityId: $response.body#/wipEntityId
  outputs:
    billSequenceId: $steps.findBom.outputs.billSequenceId
    routingSequenceId: $steps.findRouting.outputs.routingSequenceId
    wipEntityId: $steps.createJob.outputs.wipEntityId

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-bom-to-job-planning-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.