Skip to main content

Type Alias: SemanticObjectAction

SemanticObjectAction = `${string}-${string}`

Defined in: src/core/types/branded.ts:183

A semantic object-action pair for SAP Fiori intent-based navigation.

Remarks​

Format: 'SemanticObject-action' (e.g., 'PurchaseOrder-manage'). The hyphen separates the semantic object from the action. Used by SAP Fiori Launchpad (FLP) for cross-app navigation.

Example​

import type { SemanticObjectAction } from '#core/types/branded.js';

const manage: SemanticObjectAction = 'PurchaseOrder-manage';
const display: SemanticObjectAction = 'SalesOrder-display';
const create: SemanticObjectAction = 'Material-create';