I_CFinValidJournalEntry
Central Finance valid Journal Entry
I_CFinValidJournalEntry is a Basic CDS View that provides data about "Central Finance valid Journal Entry" in SAP S/4HANA. It reads from 1 data source (P_BKPF_COM) and exposes 7 fields with key fields AccountingDocument, CompanyCode, FiscalYear. Part of development package FINS_CFIN_INTERFACE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_BKPF_COM | P_BKPF_COM | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.dataMaintenance | #RESTRICTED | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Central Finance valid Journal Entry | view | |
| VDM.viewType | #BASIC | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccountingDocument | belnr | ||
| KEY | CompanyCode | bukrs | ||
| KEY | FiscalYear | gjahr | ||
| SourceSystemAccountingDocument | belnr_sender | |||
| SourceSystemCompanyCode | bukrs_sender | |||
| SourceSystemFiscalYear | gjahr_sender | |||
| SourceSystemLogicalSystem | logsystem_sender |
@AbapCatalog.dataMaintenance: #RESTRICTED
@ObjectModel.usageType: {
dataClass:#TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #XL }
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Central Finance valid Journal Entry'
@VDM.viewType: #BASIC
define root view entity I_CFinValidJournalEntry
as select from P_BKPF_COM
{
key belnr as AccountingDocument,
key bukrs as CompanyCode,
key gjahr as FiscalYear,
belnr_sender as SourceSystemAccountingDocument,
bukrs_sender as SourceSystemCompanyCode,
gjahr_sender as SourceSystemFiscalYear,
logsystem_sender as SourceSystemLogicalSystem
}
where
logsystem_sender is not initial
and(
reprocessing_status_code = ''
or reprocessing_status_code = '3'
);
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