R_JournalEntryTP
Journal Entry Transaction Processing
R_JournalEntryTP is a Transactional CDS View that provides data about "Journal Entry Transaction Processing" in SAP S/4HANA. It reads from 1 data source (I_JournalEntry) and exposes 29 fields with key fields CompanyCode, FiscalYear, AccountingDocument.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_JournalEntry | _JournalEntry | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Journal Entry Transaction Processing | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.sapObjectNodeType.name | JournalEntry | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (29)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | ||
| KEY | FiscalYear | FiscalYear | ||
| KEY | AccountingDocument | AccountingDocument | ||
| LedgerGroup | LedgerGroup | |||
| ReferenceDocumentType | ReferenceDocumentType | |||
| OriginalReferenceDocument | OriginalReferenceDocument | |||
| ReferenceDocumentLogicalSystem | LogicalSystem | |||
| BusinessTransactionType | BusinessTransactionType | |||
| AccountingDocumentType | AccountingDocumentType | |||
| TaxReportingDate | TaxReportingDate | |||
| InvoiceReceiptDate | InvoiceReceiptDate | |||
| ExchangeRateDate | ExchangeRateDate | |||
| DocumentDate | DocumentDate | |||
| PostingDate | PostingDate | |||
| AccountingDocCreatedByUser | AccountingDocCreatedByUser | |||
| DocumentReferenceID | DocumentReferenceID | |||
| AccountingDocumentHeaderText | AccountingDocumentHeaderText | |||
| JrnlEntryCntrySpecificRef1 | JrnlEntryCntrySpecificRef1 | |||
| JrnlEntryCntrySpecificDate1 | JrnlEntryCntrySpecificDate1 | |||
| JrnlEntryCntrySpecificRef2 | JrnlEntryCntrySpecificRef2 | |||
| JrnlEntryCntrySpecificDate2 | JrnlEntryCntrySpecificDate2 | |||
| JrnlEntryCntrySpecificRef3 | JrnlEntryCntrySpecificRef3 | |||
| JrnlEntryCntrySpecificDate3 | JrnlEntryCntrySpecificDate3 | |||
| JrnlEntryCntrySpecificRef4 | JrnlEntryCntrySpecificRef4 | |||
| JrnlEntryCntrySpecificDate4 | JrnlEntryCntrySpecificDate4 | |||
| JrnlEntryCntrySpecificRef5 | JrnlEntryCntrySpecificRef5 | |||
| JrnlEntryCntrySpecificDate5 | JrnlEntryCntrySpecificDate5 | |||
| JrnlEntryCntrySpecificBP1 | JrnlEntryCntrySpecificBP1 | |||
| JrnlEntryCntrySpecificBP2 | JrnlEntryCntrySpecificBP2 |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Journal Entry Transaction Processing'
@VDM.viewType: #TRANSACTIONAL
@ObjectModel: {
sapObjectNodeType:{
name: 'JournalEntry'},
usageType: {
serviceQuality: #A,
sizeCategory: #XXL,
dataClass: #TRANSACTIONAL
}
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define root view entity R_JournalEntryTP
as select from I_JournalEntry as _JournalEntry
{
key CompanyCode,
key FiscalYear,
key AccountingDocument,
LedgerGroup,
ReferenceDocumentType,
OriginalReferenceDocument,
LogicalSystem as ReferenceDocumentLogicalSystem,
BusinessTransactionType,
AccountingDocumentType,
TaxReportingDate,
InvoiceReceiptDate,
ExchangeRateDate,
DocumentDate,
PostingDate,
AccountingDocCreatedByUser,
DocumentReferenceID,
AccountingDocumentHeaderText,
JrnlEntryCntrySpecificRef1,
JrnlEntryCntrySpecificDate1,
JrnlEntryCntrySpecificRef2,
JrnlEntryCntrySpecificDate2,
JrnlEntryCntrySpecificRef3,
JrnlEntryCntrySpecificDate3,
JrnlEntryCntrySpecificRef4,
JrnlEntryCntrySpecificDate4,
JrnlEntryCntrySpecificRef5,
JrnlEntryCntrySpecificDate5,
JrnlEntryCntrySpecificBP1,
JrnlEntryCntrySpecificBP2
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_JOURNALENTRY"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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