I_EDCJournalEntryRecords
EDC Relevant Journal Entry Records
I_EDCJournalEntryRecords is a Basic CDS View that provides data about "EDC Relevant Journal Entry Records" in SAP S/4HANA. It reads from 2 data sources (I_EDCAccountingDocRelation, I_JournalEntry) and exposes 30 fields with key fields EDCType, CompanyCode, EDCCommonKey.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_EDCAccountingDocRelation | _EDCRelation | from |
| I_JournalEntry | _JournalEntry | inner |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | EDC Relevant Journal Entry Records | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (30)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EDCType | I_EDCAccountingDocRelation | EDCType | |
| KEY | CompanyCode | I_EDCAccountingDocRelation | CompanyCode | Receiver Company Code |
| KEY | EDCCommonKey | I_EDCAccountingDocRelation | EDCCommonKey | |
| AccountingDocument | I_EDCAccountingDocRelation | AccountingDocument | Journal Entry | |
| FiscalYear | I_EDCAccountingDocRelation | FiscalYear | G/L Fiscal Year | |
| EDCRecordUUID | I_EDCAccountingDocRelation | EDCRecordUUID | ||
| EDCCreatedOnDateTime | I_EDCAccountingDocRelation | EDCCreatedOnDateTime | ||
| EDCRepresentationType | I_EDCAccountingDocRelation | EDCRepresentationType | ||
| EDCRepresentationKey | I_EDCAccountingDocRelation | EDCRepresentationKey | ||
| AccountingDocumentType | I_JournalEntry | AccountingDocumentType | Journal Entry Type | |
| DocumentDate | I_JournalEntry | DocumentDate | Journal Entry Date | |
| PostingDate | I_JournalEntry | PostingDate | Posting Date for GR | |
| AccountingDocumentCreationDate | I_JournalEntry | AccountingDocumentCreationDate | Journal Entry Date | |
| TransactionCode | I_JournalEntry | TransactionCode | Transaction Code | |
| IntercompanyTransaction | I_JournalEntry | IntercompanyTransaction | Intercompany Transaction | |
| DocumentReferenceID | I_JournalEntry | DocumentReferenceID | Reference | |
| TransactionCurrency | I_JournalEntry | TransactionCurrency | Transaction Currency | |
| AccountingDocumentCategory | I_JournalEntry | AccountingDocumentCategory | Journal Entry Category | |
| BusinessTransactionType | I_JournalEntry | BusinessTransactionType | Bus.transaction | |
| Branch | I_JournalEntry | Branch | Repository branch | |
| IsDiscountDocument | I_JournalEntry | IsDiscountDocument | discount document | |
| TaxReportingDate | I_JournalEntry | TaxReportingDate | Tax Reporting Date | |
| TaxFulfillmentDate | I_JournalEntry | TaxFulfillmentDate | Tax Settlement Date | |
| AccountingDocumentClass | I_JournalEntry | AccountingDocumentClass | Document Cat. | |
| IsReversal | I_JournalEntry | IsReversal | Reversal doc. | |
| IsReversed | I_JournalEntry | IsReversed | Reversed? | |
| TaxCountry | I_JournalEntry | TaxCountry | Tax Ctry/Reg. | |
| WithholdingTaxReportingDate | I_JournalEntry | WithholdingTaxReportingDate | Withholding Tax Reporting Date | |
| _AccountingDocumentCategory | I_JournalEntry | _AccountingDocumentCategory | ||
| _AccountingDocumentType | I_JournalEntry | _AccountingDocumentType |
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 I_EDCJournalEntryRecords.
-- 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.
CREATE VIEW I_EDCJournalEntryRecords AS
SELECT
_EDCRelation.EDCType AS EDCType,
_EDCRelation.CompanyCode AS CompanyCode,
_EDCRelation.EDCCommonKey AS EDCCommonKey,
_EDCRelation.AccountingDocument AS AccountingDocument,
_EDCRelation.FiscalYear AS FiscalYear,
_EDCRelation.EDCRecordUUID AS EDCRecordUUID,
_EDCRelation.EDCCreatedOnDateTime AS EDCCreatedOnDateTime,
_EDCRelation.EDCRepresentationType AS EDCRepresentationType,
_EDCRelation.EDCRepresentationKey AS EDCRepresentationKey,
_JournalEntry.AccountingDocumentType AS AccountingDocumentType,
_JournalEntry.DocumentDate AS DocumentDate,
_JournalEntry.PostingDate AS PostingDate,
_JournalEntry.AccountingDocumentCreationDate AS AccountingDocumentCreationDate,
_JournalEntry.TransactionCode AS TransactionCode,
_JournalEntry.IntercompanyTransaction AS IntercompanyTransaction,
_JournalEntry.DocumentReferenceID AS DocumentReferenceID,
_JournalEntry.TransactionCurrency AS TransactionCurrency,
_JournalEntry.AccountingDocumentCategory AS AccountingDocumentCategory,
_JournalEntry.BusinessTransactionType AS BusinessTransactionType,
_JournalEntry.Branch AS Branch,
_JournalEntry.IsDiscountDocument AS IsDiscountDocument,
_JournalEntry.TaxReportingDate AS TaxReportingDate,
_JournalEntry.TaxFulfillmentDate AS TaxFulfillmentDate,
_JournalEntry.AccountingDocumentClass AS AccountingDocumentClass,
_JournalEntry.IsReversal AS IsReversal,
_JournalEntry.IsReversed AS IsReversed,
_JournalEntry.TaxCountry AS TaxCountry,
_JournalEntry.WithholdingTaxReportingDate AS WithholdingTaxReportingDate,
_JournalEntry._AccountingDocumentCategory AS _AccountingDocumentCategory,
_JournalEntry._AccountingDocumentType AS _AccountingDocumentType
FROM I_EDCAccountingDocRelation AS _EDCRelation
INNER JOIN I_JournalEntry AS _JournalEntry ON /* join condition not captured in parsed metadata */
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA