I_APMLedgerTransferLineItem
APM Ledger Transfer Line Items
I_APMLedgerTransferLineItem is a Composite CDS View that provides data about "APM Ledger Transfer Line Items" in SAP S/4HANA. It reads from 1 data source (I_GLAccountLineItem) and exposes 8 fields with key fields CompanyCode, FiscalYear, AccountingDocument, LedgerGLLineItem. It has 1 association to related views. Part of development package FSCM_PF_APM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountLineItem | I_GLAccountLineItem | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_IHBAccountingNotification | _IHBAccountingNotification | $projection.AccountingNotificationUUID = _IHBAccountingNotification.AccountingNotificationUUID |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | APM Ledger Transfer Line Items | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | ||
| KEY | FiscalYear | FiscalYear | ||
| KEY | AccountingDocument | AccountingDocument | ||
| KEY | LedgerGLLineItem | LedgerGLLineItem | ||
| PostingKey | PostingKey | |||
| SourceLedger | SourceLedger | |||
| AccountingNotificationUUID | AccountingNotificationUUID | |||
| FinanceNotificationUUID | _IHBAccountingNotification | FinanceNotificationUUID |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'APM Ledger Transfer Line Items'
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XL,
dataClass: #TRANSACTIONAL
}
@VDM.viewType:#COMPOSITE
define view entity I_APMLedgerTransferLineItem as select from I_GLAccountLineItem
association [1..1] to I_IHBAccountingNotification as _IHBAccountingNotification on $projection.AccountingNotificationUUID = _IHBAccountingNotification.AccountingNotificationUUID
{
key CompanyCode,
key FiscalYear,
key AccountingDocument,
key LedgerGLLineItem,
PostingKey,
SourceLedger,
AccountingNotificationUUID as AccountingNotificationUUID,
_IHBAccountingNotification.FinanceNotificationUUID
}
where ReferenceDocumentType = 'PYTEV'
and _Ledger.IsLeadingLedger = 'X'
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