SAP Sales and Distribution (SD) · Arazzo Workflow

SAP SD Inbound Delivery Receipt

Version 1.0.0

Create an inbound delivery, read it, list its items, then post goods receipt.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub DistributionERPODataS/4HANASalesSAPArazzoWorkflows

Provider

sap-sales-and-distribution-sd

Workflows

inbound-delivery-receipt
Create an inbound delivery and post its goods receipt.
Creates an inbound delivery, retrieves it, lists its items, and posts goods receipt against the delivery document.
4 steps inputs: csrfToken, deliveryDate, deliveryDocumentType, receivingPlant, supplier outputs: deliveryDocument, items
1
createDelivery
Create a new inbound delivery for the supplier and receiving plant.
2
getDelivery
Read the created inbound delivery back to confirm it persisted.
3
listItems
List the inbound delivery items to review the received lines.
4
postGoodsReceipt
Post goods receipt for the inbound delivery, bringing the delivered stock into inventory.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SAP SD Inbound Delivery Receipt
  summary: Create an inbound delivery, read it, list its items, then post goods receipt.
  description: >-
    Handles inbound goods receipt in SAP Sales and Distribution. The workflow
    creates an inbound delivery for a supplier and receiving plant, reads it
    back, lists its delivery items, and posts goods receipt to bring the stock
    into inventory. Each step inlines its OData request so the flow reads and
    runs without opening the underlying OpenAPI descriptions. The creation and
    goods receipt POSTs require an X-CSRF-Token header supplied as a workflow
    input.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-520.50
  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-520.50
      capability_name: Logistics Operations Management
      spec: sap-sales-and-distribution-sd-inbound-delivery-header-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: inboundDeliveryHeaderApi
  url: ../openapi/sap-sales-and-distribution-sd-inbound-delivery-header-api-openapi.yml
  type: openapi
- name: inboundDeliveryItemApi
  url: ../openapi/sap-sales-and-distribution-sd-inbound-delivery-item-api-openapi.yml
  type: openapi
workflows:
- workflowId: inbound-delivery-receipt
  summary: Create an inbound delivery and post its goods receipt.
  description: >-
    Creates an inbound delivery, retrieves it, lists its items, and posts goods
    receipt against the delivery document.
  inputs:
    type: object
    required:
    - csrfToken
    - deliveryDocumentType
    - receivingPlant
    - supplier
    properties:
      csrfToken:
        type: string
        description: X-CSRF-Token fetched from the OData service for write operations.
      deliveryDocumentType:
        type: string
        description: Inbound delivery document type (e.g. EL).
      receivingPlant:
        type: string
        description: Plant receiving the inbound delivery.
      supplier:
        type: string
        description: Supplier delivering the goods.
      deliveryDate:
        type: string
        description: Planned delivery date (YYYY-MM-DD).
  steps:
  - stepId: createDelivery
    description: Create a new inbound delivery for the supplier and receiving plant.
    operationId: createInboundDelivery
    parameters:
    - name: X-CSRF-Token
      in: header
      value: $inputs.csrfToken
    requestBody:
      contentType: application/json
      payload:
        DeliveryDocumentType: $inputs.deliveryDocumentType
        ReceivingPlant: $inputs.receivingPlant
        Supplier: $inputs.supplier
        DeliveryDate: $inputs.deliveryDate
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      deliveryDocument: $response.body#/d/DeliveryDocument
  - stepId: getDelivery
    description: Read the created inbound delivery back to confirm it persisted.
    operationId: getInboundDelivery
    parameters:
    - name: DeliveryDocument
      in: path
      value: $steps.createDelivery.outputs.deliveryDocument
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deliveryDocument: $response.body#/d/DeliveryDocument
  - stepId: listItems
    description: List the inbound delivery items to review the received lines.
    operationId: listInboundDeliveryItems
    parameters:
    - name: DeliveryDocument
      in: path
      value: $steps.getDelivery.outputs.deliveryDocument
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      items: $response.body#/d/results
  - stepId: postGoodsReceipt
    description: >-
      Post goods receipt for the inbound delivery, bringing the delivered stock
      into inventory.
    operationId: postGoodsReceipt
    parameters:
    - name: X-CSRF-Token
      in: header
      value: $inputs.csrfToken
    - name: DeliveryDocument
      in: query
      value: $steps.getDelivery.outputs.deliveryDocument
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deliveryDocument: $response.body#/d/DeliveryDocument
  outputs:
    deliveryDocument: $steps.postGoodsReceipt.outputs.deliveryDocument
    items: $steps.listItems.outputs.items

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/sap-sales-and-distribution-sd-inbound-delivery-receipt-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.