I_CFinValidJournalEntry

DDL: I_CFINVALIDJOURNALENTRY Type: view_entity BASIC Package: FINS_CFIN_INTERFACE

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)

SourceAliasJoin Type
P_BKPF_COM P_BKPF_COM from

Annotations (7)

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

KeyFieldSource TableSource FieldDescription
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'
  );