Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface ProductionOrderData

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

    PP

    Production planning — shop-floor order creation.

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

    const order: ProductionOrderData = {
    material: 'FG-1000',
    plant: '1000',
    quantity: 50,
    };
    interface ProductionOrderData {
        material: string;
        plant: string;
        quantity: number;
        scheduledStart?: string;
    }
    Index

    Properties

    material: string

    Material number to produce.

    plant: string

    Production plant code.

    quantity: number

    Order quantity (base unit of measure).

    scheduledStart?: string

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