I_ClsgTaskListCountry
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)
| Source | Alias | Join Type |
|---|---|---|
| fcco_country | fcco_country | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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