I_Aps_Com_Domain_Value_Text
Descriptions of fixed values of a domain
I_Aps_Com_Domain_Value_Text is a CDS View that provides data about "Descriptions of fixed values of a domain" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Name, Code, Language. Part of development package SR_APS_COM_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | Value | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Descriptions of fixed values of a domain | view | |
| Search.searchable | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | Code | view |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Descriptions of fixed values of a domain'
@Search.searchable: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'Code'
define view entity I_Aps_Com_Domain_Value_Text
as select from dd07t as Value
{
key Value.domname as Name,
@ObjectModel.text.element: ['Description']
key Value.domvalue_l as Code,
@Semantics.language: true
key Value.ddlanguage as Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Semantics.text: true
Value.ddtext as Description
}
where
Value.as4local = 'A'
and ddlanguage = $session.system_language
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA