F_Mmim_Acdoca_Ele
Read Universal Journal Entry Line Items
F_Mmim_Acdoca_Ele is a CDS View that provides data about "Read Universal Journal Entry Line Items" in SAP S/4HANA. It reads from 2 data sources (acdoca, finsc_ledger) and exposes 10 fields with key fields Ledger, CompanyCode, FiscalYear, AccountingDocument, LedgerGLLineItem.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| acdoca | acdoca | from |
| finsc_ledger | finsc_ledger | inner |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | FMMIMACDOCAELE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Read Universal Journal Entry Line Items | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Ledger | acdoca | rldnr | |
| KEY | CompanyCode | rbukrs | ||
| KEY | FiscalYear | gjahr | ||
| KEY | AccountingDocument | belnr | ||
| KEY | LedgerGLLineItem | docln | ||
| ReferenceDocumentType | awtyp | |||
| ReferenceDocumentContext | aworg | |||
| ReferenceDocument | awref | |||
| ReferenceDocumentItem | ||||
| LogicalSystem | awsys |
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'FMMIMACDOCAELE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Read Universal Journal Entry Line Items'
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass:#MIXED
@ClientHandling.algorithm: #SESSION_VARIABLE
define view F_Mmim_Acdoca_Ele as select from acdoca
inner join finsc_ledger on acdoca.rldnr = finsc_ledger.rldnr
and finsc_ledger.xleading = 'X'
{
key acdoca.rldnr as Ledger,
key rbukrs as CompanyCode,
key gjahr as FiscalYear,
key belnr as AccountingDocument,
key docln as LedgerGLLineItem,
awtyp as ReferenceDocumentType,
aworg as ReferenceDocumentContext,
awref as ReferenceDocument,
cast(right(awitem, 4) as mblpo) as ReferenceDocumentItem,
awsys as LogicalSystem
}
where awtyp = 'MKPF'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ACDOCA",
"FINSC_LEDGER"
],
"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