I_DocInfoRecdDocVersStdVH

DDL: I_DOCINFORECDDOCVERSSTDVH SQL: ICVDOCVERS_VH Type: view COMPOSITE

Document Info Record Document Version

I_DocInfoRecdDocVersStdVH (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

R&D Engineering

I_DocInfoRecdDocVersStdVH is a Composite CDS View that provides data about "Document Info Record Document Version" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecordDocVersion) and exposes 5 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion.

SAP Help Documentation

CategoryInterface Views
StatusReleased
Purpose
This CDS view retrieves the document version for the given document type and document number of a document info record. This CDS view provides the data to answer the following business question: What is the document version for the given document type and document number of a document info record? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations One of the following business catalogs needs to be assigned to a user to be able to use this CDS view: SAP_PLM_BC_DIR_EXTD_PC SAP_PLM_BC_DIR_EXTD_MC Users who want to use this CDS view must have a role that includes authorization based on at least one of the business catalogs listed above. In this role, the following restriction types must be set to read access: DOKAR These restriction types are edited in the Maintain Business Roles app. Users who want to use this CDS view must have the following authorization objects assigned: C_DRAW_TCD (Authorization for document activities.)

Structure
Important fields Important fields in this view include the following: Field Name Description DocumentInfoRecordDocType Refers to the document type. It categorizes documents according to their distinguishing features and the organizational procedures that result from them. DocumentInfoRecordDocNumber Unique document number to identify the document. DocumentInfoRecordDocVersion Indicates the version of the document.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentCA-DMS
CapabilitiesData Provider for Value Help
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_DocumentInfoRecordDocVersion I_DocumentInfoRecordDocVersion from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCVERS_VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey DocumentInfoRecordDocVersion view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Document Info Record Document Version view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType DocumentInfoRecordDocType Document Type
KEY DocumentInfoRecordDocNumber DocumentInfoRecordDocNumber Document number
KEY DocumentInfoRecordDocVersion DocumentInfoRecordDocVersion Document Version
_DocType _DocType
_DocNumber _DocNumber

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_DocInfoRecdDocVersStdVH.
-- 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: ICVDOCVERS_VH

CREATE VIEW I_DocInfoRecdDocVersStdVH AS
SELECT
  DocumentInfoRecordDocType,
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocVersion
FROM I_DocumentInfoRecordDocVersion
;