I_FHC_WKDAY_T
Weekday text
I_FHC_WKDAY_T is a CDS View that provides data about "Weekday text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields weekday, language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | weekday_text | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Weekday text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Weekday text'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view entity I_FHC_WKDAY_T
as select from dd07t as weekday_text
{
@EndUserText.label: 'Weekday'
@ObjectModel.text.element: ['weekday_text']
key weekday_text.domvalue_l as weekday,
@Semantics.language: true
key weekday_text.ddlanguage as language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Semantics.text: true
weekday_text.ddtext as weekday_text
}
where
domname = 'FHC_WEEKDAY'
and as4local = 'A'
and domvalue_l != '0'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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