C_DocumentInfoRecordVersion

DDL: C_DOCUMENTINFORECORDVERSION SQL: CDOCINFORECVER Type: view CONSUMPTION Package: ODATA_CV_DOCUMENT_MANAGE

Document Info Record Version Facet

C_DocumentInfoRecordVersion is a Consumption CDS View that provides data about "Document Info Record Version Facet" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecord) and exposes 10 fields with key fields DocumentInfoRecordDocNumber, DocumentInfoRecordDocPart, DocumentInfoRecordDocType, DocumentInfoRecordDocVersion. Part of development package ODATA_CV_DOCUMENT_MANAGE.

Data Sources (1)

SourceAliasJoin Type
I_DocumentInfoRecord I_DocumentInfoRecord from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CDOCINFORECVER view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Document Info Record Version Facet view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocNumber DocumentInfoRecordDocNumber Document
KEY DocumentInfoRecordDocPart DocumentInfoRecordDocPart Document Part
KEY DocumentInfoRecordDocType DocumentInfoRecordDocType Document Type
KEY DocumentInfoRecordDocVersion DocumentInfoRecordDocVersion Doc. Version
AuthorizationGroup AuthorizationGroup AuthorizGroup
InternalDocumentStatus InternalDocumentStatus Status
DocumentInfoRecord DocumentInfoRecord Document
_LogAccMObjectTypeActive _LogAccMObjectTypeActive
_LogAccMObjSecureIDAssgmt _LogAccMObjSecureIDAssgmt
_LogAccMObjectUserAuthzn _LogAccMObjectUserAuthzn

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 C_DocumentInfoRecordVersion.
-- 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: CDOCINFORECVER

CREATE VIEW C_DocumentInfoRecordVersion AS
SELECT
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocPart,
  DocumentInfoRecordDocType,
  DocumentInfoRecordDocVersion,
  AuthorizationGroup,
  InternalDocumentStatus,
  DocumentInfoRecord
FROM I_DocumentInfoRecord
;