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

    Interface VocabularySearchResult

    A single search result returned by VocabularyService.search.

    const result: VocabularySearchResult = {
    term: 'supplier',
    synonyms: ['vendor', 'vendorId'],
    confidence: 0.95,
    domain: 'procurement',
    sapField: 'LIFNR',
    selector: { controlType: 'sap.m.Input' },
    };
    interface VocabularySearchResult {
        confidence: number;
        domain: SAPDomain;
        sapField?: string;
        selector?: UI5Selector;
        synonyms: string[];
        term: string;
    }
    Index

    Properties

    confidence: number

    Confidence score from 0.0 (no match) to 1.0 (exact match).

    domain: SAPDomain

    The SAP domain in which the match was found.

    sapField?: string

    SAP ABAP field name if available.

    selector?: UI5Selector

    UI5 selector for the matched term if available.

    synonyms: string[]

    Synonyms of the matched term.

    term: string

    The matched canonical term name.