I_ClsgTaskListFactoryCal

DDL: I_CLSGTASKLISTFACTORYCAL SQL: ICLSGTASKLSTFCAL Type: view BASIC Package: FCCO_VDM_MD

Closing Task List Factory Calendar

I_ClsgTaskListFactoryCal is a Basic CDS View that provides data about "Closing Task List Factory Calendar" in SAP S/4HANA. It reads from 1 data source (fcco_fcal) and exposes 5 fields with key fields ClosingCommunicationProfile, FactoryCalendar. It has 2 associations to related views. Part of development package FCCO_VDM_MD.

Data Sources (1)

SourceAliasJoin Type
fcco_fcal fcco_fcal from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ClosingCommProfile _ClosingCommunicationProfile $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
[0..*] I_ClsgTskListFactoryCalText _Text $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile and $projection.FactoryCalendar = _Text.FactoryCalendar

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICLSGTASKLSTFCAL view
EndUserText.label Closing Task List Factory Calendar view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey FactoryCalendar view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ClosingCommunicationProfile communication_profile
KEY FactoryCalendar ident
IsMarkedForDeletion orphaned
_Text _Text
_ClosingCommunicationProfile _ClosingCommunicationProfile
@AbapCatalog.sqlViewName: 'ICLSGTASKLSTFCAL'
@EndUserText.label: 'Closing Task List Factory Calendar'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'FactoryCalendar',
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #L,
                usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true

define view I_ClsgTaskListFactoryCal
  as select from fcco_fcal

  association [0..1] to I_ClosingCommProfile        as _ClosingCommunicationProfile on  $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
  association [0..*] to I_ClsgTskListFactoryCalText as _Text                        on  $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile
                                                                                    and $projection.FactoryCalendar             = _Text.FactoryCalendar
{
       @ObjectModel.foreignKey.association: '_ClosingCommunicationProfile'
  key  communication_profile                                      as ClosingCommunicationProfile,
       @ObjectModel.text.association: '_Text'
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #HIGH
  key  ident                                                      as FactoryCalendar,

       @UI.hidden: true
       orphaned                                                   as IsMarkedForDeletion,

       /* Associations */
       _Text,
       _ClosingCommunicationProfile
}