I_CAStRepLog

DDL: I_CASTREPLOG SQL: ICASTREPLOG Type: view BASIC

Information for documents selected per report run

I_CAStRepLog is a Basic CDS View (Cube) that provides data about "Information for documents selected per report run" in SAP S/4HANA. It reads from 1 data source (fica_srf_rep_it) and exposes 6 fields with key fields StatryRptgEntity, StatryRptCategory, StatryRptRunID, CompanyCode, CADocumentNumber.

Data Sources (1)

SourceAliasJoin Type
fica_srf_rep_it fica_srf_rep_it from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICASTREPLOG view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Information for documents selected per report run view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
Analytics.dataCategory #CUBE view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
AbapCatalog.preserveKey true view
Metadata.allowExtensions true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY StatryRptgEntity statryrptgentity Reporting Entity
KEY StatryRptCategory statryrptcategory Report ID
KEY StatryRptRunID statryrptrunid Report Run ID
KEY CompanyCode companycode Receiver Company Code
KEY CADocumentNumber cadocumentnumber Document Number
KEY FiscalYear fiscalyear G/L Fiscal Year

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CAStRepLog.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ICASTREPLOG

CREATE VIEW I_CAStRepLog AS
SELECT
  StatryRptgEntity,
  StatryRptCategory,
  StatryRptRunID,
  CompanyCode,
  CADocumentNumber,
  FiscalYear
FROM fica_srf_rep_it
;