I_ClosingTaskListText
Closing Task List Text
I_ClosingTaskListText is a Basic CDS View that provides data about "Closing Task List Text" in SAP S/4HANA. It reads from 1 data source (fcco_hdrt) and exposes 8 fields with key fields ClosingTemplate, ClosingTaskListInstance, FinancialTaskListContextType, Language. It has 3 associations to related views. Part of development package FCCO_VDM_MD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fcco_hdrt | fcco_hdrt | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_ClosingTemplate | _ClosingTemplate | $projection.ClosingTemplate = _ClosingTemplate.ClosingTemplate and $projection.FinancialTaskListContextType = _ClosingTemplate.FinancialTaskListContextType |
| [1..1] | I_FinTaskListContextType | _FinTaskListContextType | $projection.FinancialTaskListContextType = _FinTaskListContextType.FinancialTaskListContextType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICLSGTASKLISTT | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Closing Task List Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ClosingTaskListInstance | 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 |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClosingTemplate | profile | ||
| KEY | ClosingTaskListInstance | instance | ||
| KEY | FinancialTaskListContextType | flavor | ||
| KEY | Language | langu | ||
| ClosingTaskListDescription | text | |||
| _Language | _Language | |||
| _ClosingTemplate | _ClosingTemplate | |||
| _FinTaskListContextType | _FinTaskListContextType |
@AbapCatalog: {sqlViewName: 'ICLSGTASKLISTT', preserveKey: true}
@EndUserText.label: 'Closing Task List Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'ClosingTaskListInstance',
dataCategory: #TEXT,
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view I_ClosingTaskListText
as select from fcco_hdrt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_ClosingTemplate as _ClosingTemplate on $projection.ClosingTemplate = _ClosingTemplate.ClosingTemplate
and $projection.FinancialTaskListContextType = _ClosingTemplate.FinancialTaskListContextType
association [1..1] to I_FinTaskListContextType as _FinTaskListContextType on $projection.FinancialTaskListContextType = _FinTaskListContextType.FinancialTaskListContextType
{
@ObjectModel.foreignKey.association: '_ClosingTemplate'
key profile as ClosingTemplate,
key instance as ClosingTaskListInstance,
@ObjectModel.foreignKey.association: '_FinTaskListContextType'
key flavor as FinancialTaskListContextType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key langu as Language,
@Semantics.text: true
text as ClosingTaskListDescription,
_Language,
_ClosingTemplate,
_FinTaskListContextType
}
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