C_PE_StRpNotRptdJournalEntry

DDL: C_PE_STRPNOTRPTDJOURNALENTRY Type: view_entity CONSUMPTION

Not Reported Journal Entries for Statutory Reporting

C_PE_StRpNotRptdJournalEntry is a Consumption CDS View that provides data about "Not Reported Journal Entries for Statutory Reporting" in SAP S/4HANA. It reads from 1 data source (I_JournalEntry) and exposes 23 fields with key fields CompanyCode, FiscalYear, AccountingDocument, BusinessTransactionType, FiscalYear.

Data Sources (1)

SourceAliasJoin Type
I_JournalEntry JournalEntry from

Parameters (2)

NameTypeDefault
P_StatryRptgEntity srf_reporting_entity
P_StatryRptCategory srf_rep_cat_id

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Not Reported Journal Entries for Statutory Reporting view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_JournalEntry CompanyCode Receiver Company Code
KEY FiscalYear I_JournalEntry FiscalYear G/L Fiscal Year
KEY AccountingDocument I_JournalEntry AccountingDocument Journal Entry
KEY BusinessTransactionType I_JournalEntry BusinessTransactionType Bus.transaction
ReferenceDocumentType I_JournalEntry ReferenceDocumentType Reference Document Type
IsReversal I_JournalEntry IsReversal Reversal doc.
IsReversed I_JournalEntry IsReversed Reversed?
PostingDate I_JournalEntry PostingDate Posting Date for GR
DocumentDate I_JournalEntry DocumentDate Journal Entry Date
AccountingDocumentType I_JournalEntry AccountingDocumentType Journal Entry Type
P_StatryRptgEntity
CompanyCode Receiver Company Code
KEY FiscalYear GLAccountLineItem FiscalYear G/L Fiscal Year
KEY AccountingDocument GLAccountLineItem AccountingDocument Journal Entry
KEY ReportingDate GLAccountLineItem PostingDate Posting Date for GR
KEY BusinessTransactionType GLAccountLineItem BusinessTransactionType Bus.transaction
ReferenceDocumentType GLAccountLineItem ReferenceDocumentType Reference Document Type
IsReversal GLAccountLineItem IsReversal Reversal doc.
IsReversed GLAccountLineItem IsReversed Reversed?
PostingDate GLAccountLineItem PostingDate Posting Date for GR
DocumentDate GLAccountLineItem DocumentDate Journal Entry Date
AccountingDocumentType GLAccountLineItem AccountingDocumentType Journal Entry Type
AccountingDocumentCategory GLAccountLineItem AccountingDocumentCategory Journal Entry Category

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_PE_StRpNotRptdJournalEntry.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- Parameters: P_StatryRptgEntity : srf_reporting_entity, P_StatryRptCategory : srf_rep_cat_id

CREATE VIEW C_PE_StRpNotRptdJournalEntry AS
SELECT
  JournalEntry.CompanyCode AS CompanyCode,
  JournalEntry.FiscalYear AS FiscalYear,
  JournalEntry.AccountingDocument AS AccountingDocument,
  JournalEntry.BusinessTransactionType AS BusinessTransactionType,
  JournalEntry.ReferenceDocumentType AS ReferenceDocumentType,
  JournalEntry.IsReversal AS IsReversal,
  JournalEntry.IsReversed AS IsReversed,
  JournalEntry.PostingDate AS PostingDate,
  JournalEntry.DocumentDate AS DocumentDate,
  JournalEntry.AccountingDocumentType AS AccountingDocumentType,
  JournalEntry.AccountingDocumentCategory AS P_StatryRptgEntity,
  GLAccountLineItem.PostingDate AS ReportingDate,
  GLAccountLineItem.AccountingDocumentCategory AS AccountingDocumentCategory
FROM I_JournalEntry AS JournalEntry
;