I_FactoryCalendarSelectionText
Texts for Factory Calendar Selection
I_FactoryCalendarSelectionText is a Basic CDS View that provides data about "Texts for Factory Calendar Selection" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields FactoryCalendarSelection, Language. It has 1 association to related views. Part of development package IWO2.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Texts for Factory Calendar Selection | view | |
| ObjectModel.representativeKey | FactoryCalendarSelection | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IEAMFACCALSELT | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FactoryCalendarSelection | |||
| KEY | Language | ddlanguage | ||
| FactoryCalendarSelectionText | ||||
| _Language | _Language |
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Texts for Factory Calendar Selection'
@ObjectModel.representativeKey: 'FactoryCalendarSelection'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IEAMFACCALSELT'
define view I_FactoryCalendarSelectionText
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast ( substring( domvalue_l, 1, 2 ) as kalsn ) as FactoryCalendarSelection,
@Semantics.language
key ddlanguage as Language,
@Semantics.text
cast( ddtext as kalsntx ) as FactoryCalendarSelectionText,
_Language
}
where
domname = 'KALSN'
and as4local = 'A'
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