I_LCMDateType
Basic View for LCM Date Type
I_LCMDateType is a Basic CDS View that provides data about "Basic View for LCM Date Type" in SAP S/4HANA. It reads from 2 data sources (I_LglCntntMCstmDateType, I_LglCntntMSAPDateType) and exposes 5 fields with key field LglCntntMDateType. It has 1 association to related views. Part of development package VDM_LCM_COMMON.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_LglCntntMCstmDateType | I_LglCntntMCstmDateType | union |
| I_LglCntntMSAPDateType | I_LglCntntMSAPDateType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_LCMDateTypeText | _Text | $projection.LglCntntMDateType = _Text.LglCntntMDateType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILCMDATETYPE | 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.representativeKey | LglCntntMDateType | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | Basic View for LCM Date Type | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LglCntntMDateType | LglCntntMDateType | ||
| LglCntntMDateIsPeriod | LglCntntMDateIsPeriod | |||
| LglCntntMDateTypekeyLglCntntMDateType | ||||
| LglCntntMDateIsPeriod | LglCntntMDateIsPeriod | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ILCMDATETYPE'
@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.representativeKey: 'LglCntntMDateType'
@Search.searchable: true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Basic View for LCM Date Type'
define view I_LCMDateType
as select from I_LglCntntMSAPDateType
// Type Text
association [0..*] to I_LCMDateTypeText as _Text on $projection.LglCntntMDateType = _Text.LglCntntMDateType
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key LglCntntMDateType,
LglCntntMDateIsPeriod,
_Text
}
union
select from I_LglCntntMCstmDateType
// Type Text
association [0..*] to I_LCMDateTypeText as _Text on $projection.LglCntntMDateType = _Text.LglCntntMDateType
{
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key LglCntntMDateType,
LglCntntMDateIsPeriod,
_Text
}
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