I_ClsgTaskListFactoryCal
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)
| Source | Alias | Join Type |
|---|---|---|
| fcco_fcal | fcco_fcal | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ClosingCommProfile | _ClosingCommunicationProfile | $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile |
| [0..*] | I_ClsgTskListFactoryCalText | _Text | $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile and $projection.FactoryCalendar = _Text.FactoryCalendar |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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