C_ManageJournalEntryLedger
Journal Entry Ledger
C_ManageJournalEntryLedger is a Consumption CDS View that provides data about "Journal Entry Ledger" in SAP S/4HANA. It reads from 1 data source (R_ManageJournalEntryLedger) and exposes 8 fields with key fields IsStatisticalDocument, SourceLedger, CompanyCode, FiscalYear, AccountingDocument. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_ManageJournalEntryLedger | _Item | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Ledger | _Ledger | $projection.SourceLedger = _Ledger.Ledger |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Journal Entry Ledger | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IsStatisticalDocument | R_ManageJournalEntryLedger | IsStatisticalDocument | |
| KEY | SourceLedger | R_ManageJournalEntryLedger | SourceLedger | |
| KEY | CompanyCode | R_ManageJournalEntryLedger | CompanyCode | |
| KEY | FiscalYear | R_ManageJournalEntryLedger | FiscalYear | |
| KEY | AccountingDocument | R_ManageJournalEntryLedger | AccountingDocument | |
| LedgerName | ||||
| IsLeadingLedger | _Ledger | IsLeadingLedger | ||
| IsDefaultValue |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Journal Entry Ledger'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XXL,
dataClass: #MIXED
}
@VDM.viewType: #CONSUMPTION
define view entity C_ManageJournalEntryLedger
as select from R_ManageJournalEntryLedger as _Item
association [1..1] to I_Ledger as _Ledger on $projection.SourceLedger = _Ledger.Ledger
{
@Environment.sql.passValue: true
@Semantics.booleanIndicator
key _Item.IsStatisticalDocument,
@ObjectModel.text.element: [ 'LedgerName' ]
@UI.textArrangement: #TEXT_LAST
key _Item.SourceLedger,
key _Item.CompanyCode,
key _Item.FiscalYear,
key _Item.AccountingDocument,
@Semantics.text: true
@UI.hidden: true
_Ledger._Text[1:Language = $session.system_language].LedgerName,
_Ledger.IsLeadingLedger,
@ObjectModel.virtualElement: true
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_MJE_DEFAULT_LEDGER_CALC'
@Semantics.booleanIndicator
//@UI.hidden: true
cast('' as abap.char(1)) as IsDefaultValue
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LEDGER",
"I_LEDGERTEXT",
"R_MANAGEJOURNALENTRYLEDGER"
],
"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