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

    Interface CustomerMasterData

    Input data for creating a customer master record (SD-MD / LO-MD).

    MD

    Customer master data creation.

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

    const customer: CustomerMasterData = {
    name: 'Globex Corp',
    country: 'US',
    salesOrganization: '1000',
    };
    interface CustomerMasterData {
        country: string;
        name: string;
        salesOrganization?: string;
        taxId?: string;
    }
    Index

    Properties

    country: string

    ISO 3166-1 alpha-2 country code.

    name: string

    Customer company name.

    salesOrganization?: string

    SAP sales organization code.

    taxId?: string

    Tax identification number.