I_ClosingTaskListLedgerText
Closing Task List Ledger Text
I_ClosingTaskListLedgerText is a Basic CDS View that provides data about "Closing Task List Ledger Text" in SAP S/4HANA. It reads from 1 data source (fcco_ledgert) and exposes 6 fields with key fields ClosingCommunicationProfile, Ledger, Language. It has 2 associations to related views. Part of development package FCCO_VDM_MD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fcco_ledgert | fcco_ledgert | 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 | ICLSGTSKLSTLDGRT | view | |
| EndUserText.label | Closing Task List Ledger Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | Ledger | 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 | Ledger | rldnr | ||
| KEY | Language | langu | ||
| LedgerName | text | |||
| _ClosingCommunicationProfile | _ClosingCommunicationProfile | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'ICLSGTSKLSTLDGRT'
@EndUserText.label: 'Closing Task List Ledger Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'Ledger',
dataCategory: #TEXT,
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view I_ClosingTaskListLedgerText
as select from fcco_ledgert
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 rldnr as Ledger,
@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 LedgerName,
_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