P_ACMTrdgContrFinDoc
P_ACMTrdgContrFinDoc is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (bkpf, acdoca) and exposes 6 fields with key fields ClearedAccountingDocument, FiscalYear.
Data Sources (2)
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PACMCONFINDOC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view |
@AbapCatalog.sqlViewName: 'PACMCONFINDOC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@VDM.private:true
@VDM.viewType: #BASIC
define view P_ACMTrdgContrFinDoc
as select from acdoca as AccountingDocumentSegment
inner join bkpf as _AccountingDocumentHeader on _AccountingDocumentHeader.belnr = AccountingDocumentSegment.belnr
and _AccountingDocumentHeader.gjahr = AccountingDocumentSegment.gjahr
{
key AccountingDocumentSegment.belnr as ClearedAccountingDocument,
key AccountingDocumentSegment.gjahr as FiscalYear,
AccountingDocumentSegment.augdt as ClearingDate,
AccountingDocumentSegment.augbl as ClearingJournalEntry,
_AccountingDocumentHeader.awkey as ACMReferenceKey,
_AccountingDocumentHeader.xblnr as SupplierConfirmationExtNumber
}
where
AccountingDocumentSegment.augbl != ''
and AccountingDocumentSegment.augdt is not initial
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ACDOCA",
"BKPF"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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