SAP Sales and Distribution (SD) · Arazzo Workflow

SAP SD Deliver and Post Goods Issue

Version 1.0.0

Create an outbound delivery, verify it, list its items, then post goods issue.

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

Provider

sap-sales-and-distribution-sd

Workflows

deliver-and-post-goods-issue
Create an outbound delivery and post its goods issue.
Creates an outbound delivery, retrieves it, lists its items, and posts goods issue against the delivery document.
4 steps inputs: csrfToken, deliveryDocumentType, shippingPoint, soldToParty outputs: deliveryDocument, items
1
createDelivery
Create a new outbound delivery header for the sold-to party.
2
getDelivery
Read the created outbound delivery back to confirm it persisted.
3
listItems
List the items on the delivery so the picked lines can be reviewed.
4
postGoodsIssue
Post goods issue for the delivery, updating inventory and creating the material documents that complete the shipment.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SAP SD Deliver and Post Goods Issue
  summary: Create an outbound delivery, verify it, list its items, then post goods issue.
  description: >-
    The shipping leg of order-to-cash in SAP Sales and Distribution. The
    workflow creates an outbound delivery, reads it back to confirm it
    persisted, lists its delivery items, and finally posts goods issue to
    update inventory and generate material documents. Each step inlines its
    OData request so the flow reads and runs without opening the underlying
    OpenAPI descriptions. The two modifying calls (delivery creation and goods
    issue) 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-outbound-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: outboundDeliveryHeaderApi
  url: ../openapi/sap-sales-and-distribution-sd-outbound-delivery-header-api-openapi.yml
  type: openapi
- name: outboundDeliveryItemApi
  url: ../openapi/sap-sales-and-distribution-sd-outbound-delivery-item-api-openapi.yml
  type: openapi
workflows:
- workflowId: deliver-and-post-goods-issue
  summary: Create an outbound delivery and post its goods issue.
  description: >-
    Creates an outbound delivery, retrieves it, lists its items, and posts
    goods issue against the delivery document.
  inputs:
    type: object
    required:
    - csrfToken
    - deliveryDocumentType
    - shippingPoint
    - soldToParty
    properties:
      csrfToken:
        type: string
        description: X-CSRF-Token fetched from the OData service for write operations.
      deliveryDocumentType:
        type: string
        description: Delivery document type (e.g. LF for outbound delivery).
      shippingPoint:
        type: string
        description: Shipping point that ships the delivery.
      soldToParty:
        type: string
        description: Sold-to party customer number for the delivery.
  steps:
  - stepId: createDelivery
    description: Create a new outbound delivery header for the sold-to party.
    operationId: createOutboundDelivery
    parameters:
    - name: X-CSRF-Token
      in: header
      value: $inputs.csrfToken
    requestBody:
      contentType: application/json
      payload:
        DeliveryDocumentType: $inputs.deliveryDocumentType
        ShippingPoint: $inputs.shippingPoint
        SoldToParty: $inputs.soldToParty
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      deliveryDocument: $response.body#/d/DeliveryDocument
  - stepId: getDelivery
    description: Read the created outbound delivery back to confirm it persisted.
    operationId: getOutboundDelivery
    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 items on the delivery so the picked lines can be reviewed.
    operationId: listOutboundDeliveryItems
    parameters:
    - name: DeliveryDocument
      in: path
      value: $steps.getDelivery.outputs.deliveryDocument
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      items: $response.body#/d/results
  - stepId: postGoodsIssue
    description: >-
      Post goods issue for the delivery, updating inventory and creating the
      material documents that complete the shipment.
    operationId: postGoodsIssue
    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.postGoodsIssue.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-deliver-and-post-goods-issue-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.