I_LCMDateTypeText
Text View for LCM Date Types
I_LCMDateTypeText is a Basic CDS View that provides data about "Text View for LCM Date Types" in SAP S/4HANA. It reads from 2 data sources (I_LglCntntMCstmDateTypeText, I_LglCntntMSAPDateTypeText) and exposes 3 fields with key fields LglCntntMDateType, Language, Language.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_LglCntntMCstmDateTypeText | I_LglCntntMCstmDateTypeText | union |
| I_LglCntntMSAPDateTypeText | I_LglCntntMSAPDateTypeText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILCMDATETYPET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | LglCntntMDateType | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | Text View for LCM Date Types | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LglCntntMDateType | LglCntntMDateType | ||
| KEY | Language | Language | ||
| KEY | Language | Language |
@AbapCatalog.sqlViewName: 'ILCMDATETYPET'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'LglCntntMDateType'
@Search.searchable: true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Text View for LCM Date Types'
define view I_LCMDateTypeText
as select from I_LglCntntMSAPDateTypeText {
key LglCntntMDateType,
@Semantics.language: true
key Language,
@Semantics.text: true -- identifies the text field
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
LglCntntMDateTypeName
}
union
select from I_LglCntntMCstmDateTypeText {
key LglCntntMDateType,
@Semantics.language: true
key Language,
@Semantics.text: true -- identifies the text field
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
LglCntntMDateTypeName
}
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