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

    Interface VocabularyTerm

    A single vocabulary term with its synonyms and selector information.

    Represents one named concept in a SAP business domain. The name is the canonical identifier; synonyms are alternative human-readable names that also resolve to this term. The selector (if present) enables direct UI5 control discovery.

    const term: VocabularyTerm = {
    name: 'supplier',
    synonyms: ['vendor', 'vendorId', 'supplierId'],
    domain: 'procurement',
    sapField: 'LIFNR',
    selector: { controlType: 'sap.m.Input', properties: { labelFor: 'Supplier' } },
    };
    interface VocabularyTerm {
        domain: SAPDomain;
        name: string;
        sapField?: string;
        selector?: UI5Selector;
        synonyms: readonly string[];
    }
    Index

    Properties

    domain: SAPDomain

    The SAP domain this term belongs to.

    name: string

    Canonical term name.

    sapField?: string

    The underlying SAP ABAP field name (e.g. 'LIFNR').

    selector?: UI5Selector

    UI5 selector for direct control discovery.

    synonyms: readonly string[]

    Alternative names that also resolve to this term.