Skip to main content
Version: 1.x

Interface: MaterialMasterData

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

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

Sap Module

MD

Business Context

Material master data creation.

Example

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

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

Properties

baseUnit?

readonly optional baseUnit: string

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

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


description

readonly description: string

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

Short description of the material.


materialNumber

readonly materialNumber: string

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

SAP material number.


materialType?

readonly optional materialType: string

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

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