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?
readonlyoptionalbaseUnit:string
Defined in: src/intents/types.ts:304
Base unit of measure (e.g. 'EA', 'KG', 'L').
description
readonlydescription:string
Defined in: src/intents/types.ts:300
Short description of the material.
materialNumber
readonlymaterialNumber:string
Defined in: src/intents/types.ts:298
SAP material number.
materialType?
readonlyoptionalmaterialType:string
Defined in: src/intents/types.ts:302
SAP material type (e.g. 'FERT', 'ROH', 'HALB').