R_MNGJOURNALENTRYITEMFORFILTER
Journal Entry Item For Filter
R_MNGJOURNALENTRYITEMFORFILTER is a CDS View in S/4HANA. Journal Entry Item For Filter. It contains 16 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_MngJournalEntryItemForFilter | view_entity | from | CONSUMPTION | Journal Entry Item For Filter |
Fields (16)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | AccountingDocument | AccountingDocument | 1 |
| KEY | CompanyCode | CompanyCode | 1 |
| KEY | FiscalYear | FiscalYear | 1 |
| KEY | LedgerGLLineItem | LedgerGLLineItem | 1 |
| KEY | SourceLedger | SourceLedger | 1 |
| AccountingDocCreatedByUser | AccountingDocCreatedByUser | 1 | |
| BusinessTransactionType | BusinessTransactionType | 1 | |
| ClearingJournalEntry | ClearingJournalEntry | 1 | |
| ClearingJournalEntryFiscalYear | ClearingJournalEntryFiscalYear | 1 | |
| DocumentDate | DocumentDate | 1 | |
| GLAccount | GLAccount | 1 | |
| PerformanceObligation | PerformanceObligation | 1 | |
| PostingDate | PostingDate | 1 | |
| RevenueAccountingContract | RevenueAccountingContract | 1 | |
| SourceReferenceDocument | SourceReferenceDocument | 1 | |
| SourceReferenceDocumentType | SourceReferenceDocumentType | 1 |
@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
}