I_ClsgTskListFactoryCalText
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)
| Source | Alias | Join Type |
|---|---|---|
| fcco_fcalt | fcco_fcalt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ClosingCommProfile | _ClosingCommunicationProfile | $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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