E_ClosingTask
Extension View for Closing Task Data
E_ClosingTask is a Extension CDS View that provides data about "Extension View for Closing Task Data" in SAP S/4HANA. It reads from 1 data source (fcco_task_ext) and exposes 4 fields with key fields ClosingTemplate, ClosingTaskListInstance, FinancialTaskListContextType, ClosingTask. Part of development package FCCO_VDM_MD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fcco_task_ext | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ECLSGTASK | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Extension View for Closing Task Data | view | |
| VDM.viewType | #EXTENSION | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClosingTemplate | fcco_task_ext | profile | |
| KEY | ClosingTaskListInstance | fcco_task_ext | instance | |
| KEY | FinancialTaskListContextType | fcco_task_ext | flavor | |
| KEY | ClosingTask | fcco_task_ext | item |
@AbapCatalog: { sqlViewName: 'ECLSGTASK', preserveKey: true}
@EndUserText.label: 'Extension View for Closing Task Data'
@VDM.viewType: #EXTENSION
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel: { usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #MASTER }
@Metadata.ignorePropagatedAnnotations: true
define view E_ClosingTask
as select from fcco_task_ext as Persistence
{
key Persistence.profile as ClosingTemplate,
key Persistence.instance as ClosingTaskListInstance,
key Persistence.flavor as FinancialTaskListContextType,
key Persistence.item as ClosingTask
}
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