I_StRpJournalEntryHeaderLog

DDL: I_STRPJOURNALENTRYHEADERLOG SQL: ISRJRNLENTRHDLOG Type: view BASIC

Accounting documents selected per ACR run

I_StRpJournalEntryHeaderLog is a Basic CDS View that provides data about "Accounting documents selected per ACR run" in SAP S/4HANA. It reads from 1 data source (acct_srf_rep_itm) and exposes 6 fields with key fields StatryRptgEntity, StatryRptCategory, StatryRptRunID, CompanyCode, AccountingDocument.

Data Sources (1)

SourceAliasJoin Type
acct_srf_rep_itm acct_srf_rep_itm from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISRJRNLENTRHDLOG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Accounting documents selected per ACR run view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY StatryRptgEntity statryrptgentity
KEY StatryRptCategory statryrptcategory
KEY StatryRptRunID statryrptrunid
KEY CompanyCode companycode
KEY AccountingDocument accountingdocument
KEY FiscalYear
@AbapCatalog.sqlViewName: 'ISRJRNLENTRHDLOG'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Accounting documents selected per ACR run'
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #MIXED

define view I_StRpJournalEntryHeaderLog
  as select from acct_srf_rep_itm
{
  key statryrptgentity                         as StatryRptgEntity,
  key statryrptcategory                        as StatryRptCategory,
  key statryrptrunid                           as StatryRptRunID,
  key companycode                              as CompanyCode,
  key accountingdocument                       as AccountingDocument,
  key cast( fiscalyear as fis_gjahr_no_conv  ) as FiscalYear
}