I_DocumentInfoRecordStsLog

DDL: I_DOCUMENTINFORECORDSTSLOG SQL: ICVDOCSTSLOG Type: view BASIC

Document Info Record Status Log (ESH)

I_DocumentInfoRecordStsLog is a Basic CDS View that provides data about "Document Info Record Status Log (ESH)" in SAP S/4HANA. It reads from 1 data source (drap) and exposes 7 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocVersion, DocumentInfoRecordDocNumber, DocumentInfoRecordDocPart, DocumentInfoRecordStsLog.

Data Sources (1)

SourceAliasJoin Type
drap document from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCSTSLOG view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label Document Info Record Status Log (ESH) view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType drap dokar SW Document Type
KEY DocumentInfoRecordDocVersion drap dokvr Doc. Version
KEY DocumentInfoRecordDocNumber drap doknr Document
KEY DocumentInfoRecordDocPart drap doktl Document Part
KEY DocumentInfoRecordStsLog drap dokst Document Status
KEY DocInfoRecdNmbrOfStsFileLg drap stzae Ctr.DRAP
DocumentInfoRecordStsFileLgDte drap datum Valid to

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_DocumentInfoRecordStsLog.
-- 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: ICVDOCSTSLOG

CREATE VIEW I_DocumentInfoRecordStsLog AS
SELECT
  document.dokar AS DocumentInfoRecordDocType,
  document.dokvr AS DocumentInfoRecordDocVersion,
  document.doknr AS DocumentInfoRecordDocNumber,
  document.doktl AS DocumentInfoRecordDocPart,
  document.dokst AS DocumentInfoRecordStsLog,
  document.stzae AS DocInfoRecdNmbrOfStsFileLg,
  document.datum AS DocumentInfoRecordStsFileLgDte
FROM drap AS document
;