I_StRpJournalEntryHeaderLog
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. Part of development package GLO_FIN_IS_VAT_GEN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| acct_srf_rep_itm | acct_srf_rep_itm | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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