Skip to main content
Version: 1.x

Interface: ProductionOrderData

Defined in: src/intents/types.ts:191

Input data for creating a production order (PP-SFC).

Sap Module

PP

Business Context

Production planning — shop-floor order creation.

Example

import type { ProductionOrderData } from '#intents/types.js';

const order: ProductionOrderData = {
material: 'FG-1000',
plant: '1000',
quantity: 50,
};

Properties

material

readonly material: string

Defined in: src/intents/types.ts:193

Material number to produce.


plant

readonly plant: string

Defined in: src/intents/types.ts:195

Production plant code.


quantity

readonly quantity: number

Defined in: src/intents/types.ts:197

Order quantity (base unit of measure).


scheduledStart?

readonly optional scheduledStart: string

Defined in: src/intents/types.ts:199

Scheduled start date in ISO 8601 format (YYYY-MM-DD).