R_MngJournalEntryItemForFilter
Journal Entry Item For Filter
R_MngJournalEntryItemForFilter is a Composite CDS View that provides data about "Journal Entry Item For Filter" in SAP S/4HANA. It reads from 1 data source (I_GLAccountLineItemRawData) and exposes 16 fields with key fields SourceLedger, CompanyCode, FiscalYear, AccountingDocument, LedgerGLLineItem. Part of development package ODATA_MANAGE_JOURNAL_ENTRY_V2.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountLineItemRawData | _Item | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Journal Entry Item For Filter | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (16)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SourceLedger | I_GLAccountLineItemRawData | SourceLedger | |
| KEY | CompanyCode | I_GLAccountLineItemRawData | CompanyCode | |
| KEY | FiscalYear | I_GLAccountLineItemRawData | FiscalYear | |
| KEY | AccountingDocument | I_GLAccountLineItemRawData | AccountingDocument | |
| KEY | LedgerGLLineItem | I_GLAccountLineItemRawData | LedgerGLLineItem | |
| GLAccount | I_GLAccountLineItemRawData | GLAccount | ||
| SourceReferenceDocument | I_GLAccountLineItemRawData | SourceReferenceDocument | ||
| SourceReferenceDocumentType | I_GLAccountLineItemRawData | SourceReferenceDocumentType | ||
| PostingDate | I_GLAccountLineItemRawData | PostingDate | ||
| DocumentDate | I_GLAccountLineItemRawData | DocumentDate | ||
| AccountingDocCreatedByUser | I_GLAccountLineItemRawData | AccountingDocCreatedByUser | ||
| BusinessTransactionType | I_GLAccountLineItemRawData | BusinessTransactionType | ||
| RevenueAccountingContract | I_GLAccountLineItemRawData | RevenueAccountingContract | ||
| PerformanceObligation | I_GLAccountLineItemRawData | PerformanceObligation | ||
| ClearingJournalEntry | I_GLAccountLineItemRawData | ClearingJournalEntry | ||
| ClearingJournalEntryFiscalYear | I_GLAccountLineItemRawData | ClearingJournalEntryFiscalYear |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Journal Entry Item For Filter'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #XXL,
dataClass: #MIXED
}
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type:#SAP_INTERNAL_API
}
define view entity R_MngJournalEntryItemForFilter
as select from I_GLAccountLineItemRawData as _Item
{
key _Item.SourceLedger,
key _Item.CompanyCode,
key _Item.FiscalYear,
key _Item.AccountingDocument,
key _Item.LedgerGLLineItem,
_Item.GLAccount,
_Item.SourceReferenceDocument,
_Item.SourceReferenceDocumentType,
_Item.PostingDate,
_Item.DocumentDate,
_Item.AccountingDocCreatedByUser,
_Item.BusinessTransactionType,
_Item.RevenueAccountingContract,
_Item.PerformanceObligation,
_Item.ClearingJournalEntry,
_Item.ClearingJournalEntryFiscalYear
}
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