Skip to main content
Version: 1.x

Interface: VocabularyTerm

Defined in: src/vocabulary/types.ts:62

A single vocabulary term with its synonyms and selector information.

Remarks

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.

Example

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

Properties

domain

readonly domain: SAPDomain

Defined in: src/vocabulary/types.ts:68

The SAP domain this term belongs to.


name

readonly name: string

Defined in: src/vocabulary/types.ts:64

Canonical term name.


sapField?

readonly optional sapField: string

Defined in: src/vocabulary/types.ts:70

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


selector?

readonly optional selector: UI5Selector

Defined in: src/vocabulary/types.ts:72

UI5 selector for direct control discovery.


synonyms

readonly synonyms: readonly string[]

Defined in: src/vocabulary/types.ts:66

Alternative names that also resolve to this term.