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

    Interface MaterialMasterData

    Input data for creating a material master record (MM-MM / LO-MD).

    MD

    Material master data creation.

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

    const mat: MaterialMasterData = {
    materialNumber: 'RAW-0001',
    description: 'Raw material A',
    materialType: 'ROH',
    baseUnit: 'KG',
    };
    interface MaterialMasterData {
        baseUnit?: string;
        description: string;
        materialNumber: string;
        materialType?: string;
    }
    Index

    Properties

    baseUnit?: string

    Base unit of measure (e.g. 'EA', 'KG', 'L').

    description: string

    Short description of the material.

    materialNumber: string

    SAP material number.

    materialType?: string

    SAP material type (e.g. 'FERT', 'ROH', 'HALB').