I_ClsgTskListFactoryCalText

DDL: I_CLSGTSKLISTFACTORYCALTEXT SQL: ICLSGTASKLFCALT Type: view BASIC Package: FCCO_VDM_MD

Closing Task List Factory Calendar Text

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

Data Sources (1)

SourceAliasJoin Type
fcco_fcalt fcco_fcalt from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ClosingCommProfile _ClosingCommunicationProfile $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ClosingCommunicationProfile communication_profile
KEY FactoryCalendar ident
KEY Language langu
FactoryCalendarName text
_ClosingCommunicationProfile _ClosingCommunicationProfile
_Language _Language
@AbapCatalog.sqlViewName: 'ICLSGTASKLFCALT'
@EndUserText.label: 'Closing Task List Factory Calendar Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'FactoryCalendar',
                dataCategory: #TEXT,
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #L,
                usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

define view I_ClsgTskListFactoryCalText
  as select from fcco_fcalt

  association [0..1] to I_ClosingCommProfile as _ClosingCommunicationProfile on $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
  association [0..1] to I_Language           as _Language                    on $projection.Language = _Language.Language
{
       @ObjectModel.foreignKey.association: '_ClosingCommunicationProfile'
  key  communication_profile                                     as ClosingCommunicationProfile,
  key  ident                                                     as FactoryCalendar,
       @ObjectModel.foreignKey.association: '_Language'
       @Semantics.language: true
  key  langu                                                     as Language,

       @Semantics.text: true
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #HIGH
       text                                                      as FactoryCalendarName,

       _ClosingCommunicationProfile,
       _Language
}