I_ClsgTaskListAcctgPrinciple
Closing Task List Accounting Principle
I_ClsgTaskListAcctgPrinciple is a Basic CDS View (Dimension) that provides data about "Closing Task List Accounting Principle" in SAP S/4HANA. It reads from 1 data source (fcco_acc_princ) and exposes 5 fields with key fields ClosingCommunicationProfile, AccountingPrinciple. It has 2 associations to related views. Part of development package FCCO_VDM_MD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fcco_acc_princ | fcco_acc_princ | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ClosingCommProfile | _ClosingCommunicationProfile | $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile |
| [0..*] | I_ClsgTskListAcctgPrncplText | _Text | $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile and $projection.AccountingPrinciple = _Text.AccountingPrinciple |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICLSGTASKLACCPR | view | |
| EndUserText.label | Closing Task List Accounting Principle | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | AccountingPrinciple | 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 | AccountingPrinciple | acc_principle | ||
| IsMarkedForDeletion | orphaned | |||
| _ClosingCommunicationProfile | _ClosingCommunicationProfile | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ICLSGTASKLACCPR'
@EndUserText.label: 'Closing Task List Accounting Principle'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'AccountingPrinciple',
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
define view I_ClsgTaskListAcctgPrinciple
as select from fcco_acc_princ
association [0..1] to I_ClosingCommProfile as _ClosingCommunicationProfile on $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
association [0..*] to I_ClsgTskListAcctgPrncplText as _Text on $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile
and $projection.AccountingPrinciple = _Text.AccountingPrinciple
{
@ObjectModel.foreignKey.association: '_ClosingCommunicationProfile'
key communication_profile as ClosingCommunicationProfile,
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key acc_principle as AccountingPrinciple,
@UI.hidden: true
orphaned as IsMarkedForDeletion,
/* Associations */
_ClosingCommunicationProfile,
_Text
}
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