I_ClsgTaskListCountry

DDL: I_CLSGTASKLISTCOUNTRY Type: view BASIC Package: FCCO_VDM_MD

Closing Task List Country

I_ClsgTaskListCountry is a Basic CDS View (Dimension) that provides data about "Closing Task List Country" in SAP S/4HANA. It reads from 1 data source (fcco_country) and exposes 7 fields with key fields ClosingCommunicationProfile, Country. It has 3 associations to related views. Part of development package FCCO_VDM_MD.

Data Sources (1)

SourceAliasJoin Type
fcco_country fcco_country from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_ClosingCommProfile _ClosingCommunicationProfile $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
[0..*] I_ClsgTskListCountryText _Text $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile and $projection.Country = _Text.Country
[0..*] I_ClsgCountryGroupCntryAssgmt _ClsgCountryGroupCntryAssgmt $projection.CountryThreeLetterISOCode = _ClsgCountryGroupCntryAssgmt.CountryThreeLetterISOCode

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICLSGTSKLSTCNTRY view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Closing Task List Country view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey Country view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ClosingCommunicationProfile communication_profile
KEY Country country
CountryThreeLetterISOCode iso_code
IsMarkedForDeletion orphaned
_Text _Text
_ClosingCommunicationProfile _ClosingCommunicationProfile
_ClsgCountryGroupCntryAssgmt _ClsgCountryGroupCntryAssgmt
@AbapCatalog: {sqlViewName: 'ICLSGTSKLSTCNTRY', preserveKey: true, compiler.compareFilter: true}
@EndUserText.label: 'Closing Task List Country'
@Analytics: {dataCategory: #DIMENSION, internalName: #LOCAL}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'Country',
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #L,
                usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_ClsgTaskListCountry
  as select from fcco_country

  association [0..1] to I_ClosingCommProfile          as _ClosingCommunicationProfile on  $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
  association [0..*] to I_ClsgTskListCountryText      as _Text                        on  $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile
                                                                                      and $projection.Country                     = _Text.Country
  association [0..*] to I_ClsgCountryGroupCntryAssgmt as _ClsgCountryGroupCntryAssgmt on  $projection.CountryThreeLetterISOCode = _ClsgCountryGroupCntryAssgmt.CountryThreeLetterISOCode
{
       @ObjectModel.foreignKey.association: '_ClosingCommunicationProfile'
  key  communication_profile                                      as ClosingCommunicationProfile,
       @ObjectModel.text.association: '_Text'
  key  country                                                    as Country,

       @UI.hidden: true
       iso_code                                                   as CountryThreeLetterISOCode,
       @UI.hidden: true
       orphaned                                                   as IsMarkedForDeletion,

       /* Associations */
       _Text,
       _ClosingCommunicationProfile,
       _ClsgCountryGroupCntryAssgmt
}