I_LCMDateType

DDL: I_LCMDATETYPE SQL: ILCMDATETYPE Type: view BASIC Package: VDM_LCM_COMMON

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)

SourceAliasJoin Type
I_LglCntntMCstmDateType I_LglCntntMCstmDateType union
I_LglCntntMSAPDateType I_LglCntntMSAPDateType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_LCMDateTypeText _Text $projection.LglCntntMDateType = _Text.LglCntntMDateType

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}