C_ListingLevelValueHelp
Listing Level F4 Help
C_ListingLevelValueHelp is a Consumption CDS View that provides data about "Listing Level F4 Help" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 3 fields with key fields SAPDataDictionaryDomain, DomainValue. Part of development package RFM_LISTING_OVERVIEW.
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Listing Level F4 Help | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | DomainValue | view | |
| Search.searchable | true | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
@EndUserText.label: 'Listing Level F4 Help'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@ObjectModel:{
usageType: {
dataClass: #META,
serviceQuality: #C,
sizeCategory: #S
},
dataCategory: #VALUE_HELP,
representativeKey: 'DomainValue'
}
@Search.searchable: true
@ObjectModel.resultSet.sizeCategory: #XS
define view entity C_ListingLevelValueHelp as select from dd07l
inner join dd07t on dd07l.domname = dd07t.domname
and dd07l.domvalue_l = dd07t.domvalue_l
{
@UI.hidden: true
key dd07l.domname as SAPDataDictionaryDomain,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.element: [ 'DomainText' ]
key dd07l.domvalue_l as DomainValue,
dd07t.ddtext as DomainText
}
where
dd07l.as4local = 'A'
and dd07l.domname = 'LISTING_LEVEL'
and dd07t.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