P_Consacct
Consolidation Accounts
P_Consacct is a Basic CDS View that provides data about "Consolidation Accounts" in SAP S/4HANA. It reads from 2 data sources (ska1, t004) and exposes 5 fields. Part of development package FINS_RTC_MODEL.
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | PCONSACCT | view |
@VDM.private: true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'PCONSACCT'
define view P_Consacct as select from ska1 as a
inner join t004 as b on a.mandt = b.mandt
and a.ktopl = b.ktopl
{
a.mandt, //Client
a.ktopl, //Local Chart of Accounts
a.saknr, //Local Account Number
b.kktpl, //Group Chart of Accounts
a.bilkt //Group Account Number
}
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