Interface: ProductionOrderData
Defined in: src/intents/types.ts:182
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​
readonlymaterial:string
Defined in: src/intents/types.ts:184
Material number to produce.
plant​
readonlyplant:string
Defined in: src/intents/types.ts:186
Production plant code.
quantity​
readonlyquantity:number
Defined in: src/intents/types.ts:188
Order quantity (base unit of measure).
scheduledStart?​
readonlyoptionalscheduledStart:string
Defined in: src/intents/types.ts:190
Scheduled start date in ISO 8601 format (YYYY-MM-DD).