P_ClearedAccount1
P_ClearedAccount1
P_ClearedAccount1 is a Consumption CDS View that provides data about "P_ClearedAccount1" in SAP S/4HANA. It reads from 2 data sources (agko, P_ClearedItem1) and exposes 8 fields. Part of development package FINS_FIS_APAR_APPS.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| agko | agko | union_all |
| P_ClearedItem1 | P_ClearedItem1 | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCLRDACCNT1 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.private | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| CompanyCode | CompanyCode | |||
| ClearingJournalEntry | ClearingJournalEntry | |||
| ClearingJournalEntryFiscalYear | ClearingJournalEntryFiscalYear | |||
| FinancialAccountType | FinancialAccountType | |||
| ClearingJournalEntry | ||||
| ClearingJournalEntryFiscalYear | ||||
| FinancialAccountType | ||||
| Account |
@AbapCatalog.sqlViewName: 'PCLRDACCNT1'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #CONSUMPTION
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_ClearedAccount1
as select from P_ClearedItem1
{
CompanyCode,
ClearingJournalEntry,
ClearingJournalEntryFiscalYear,
FinancialAccountType,
Account
}
group by
CompanyCode,
ClearingJournalEntry,
ClearingJournalEntryFiscalYear,
FinancialAccountType,
Account
union all
select from agko
{
cast( bukrs as fis_bukrs ) as CompanyCode,
cast( belnr as fis_augbl preserving type ) as ClearingJournalEntry,
cast( gjahr as fis_auggj_no_conv preserving type ) as ClearingJournalEntryFiscalYear,
cast( koart as farp_koart ) as FinancialAccountType,
cast( agkto as konko ) as Account
}
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