R_MngJournalEntryItemForFilter

DDL: R_MNGJOURNALENTRYITEMFORFILTER Type: view_entity COMPOSITE Package: ODATA_MANAGE_JOURNAL_ENTRY_V2

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)

SourceAliasJoin Type
I_GLAccountLineItemRawData _Item from

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
  
}