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

    Interface VendorMasterData

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

    MD

    Vendor master data creation.

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

    const vendor: VendorMasterData = { name: 'Acme GmbH', country: 'DE' };
    interface VendorMasterData {
        accountGroup?: string;
        country: string;
        name: string;
        taxId?: string;
    }
    Index

    Properties

    accountGroup?: string

    SAP account group for the vendor.

    country: string

    ISO 3166-1 alpha-2 country code.

    name: string

    Vendor company name.

    taxId?: string

    Tax identification number.