C_DocumentInfoRecordDescVH

DDL: C_DOCUMENTINFORECORDDESCVH SQL: CDIRDESCVH Type: view CONSUMPTION Package: ODATA_CV_DOCUMENT_MANAGE

Document Info Record Description VH

C_DocumentInfoRecordDescVH is a Consumption CDS View that provides data about "Document Info Record Description VH" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecordDesc) and exposes 13 fields with key fields DocumentInfoRecordDocNumber, DocumentInfoRecordDocPart, DocumentInfoRecordDocType, DocumentInfoRecordDocVersion, Language. It has 1 association to related views. Part of development package ODATA_CV_DOCUMENT_MANAGE.

Data Sources (1)

SourceAliasJoin Type
I_DocumentInfoRecordDesc I_DocumentInfoRecordDesc from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DocumentInfoRecordDocTypeT _Text $projection.DocumentInfoRecordDocType = _Text.DocumentInfoRecordDocType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CDIRDESCVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Document Info Record Description VH view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocNumber DocumentInfoRecordDocNumber Document
KEY DocumentInfoRecordDocPart DocumentInfoRecordDocPart Document Part
KEY DocumentInfoRecordDocType DocumentInfoRecordDocType Document Type
KEY DocumentInfoRecordDocVersion DocumentInfoRecordDocVersion Doc. Version
KEY Language Language Report Text Language
DocumentDescription DocumentDescription Doc. Name
LongTextExists LongTextExists LgText ID
_DocNumber _DocNumber
_DocPart _DocPart
_DocType _DocType
_DocVersion _DocVersion
_Language _Language
_Text _Text

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_DocumentInfoRecordDescVH.
-- 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: CDIRDESCVH

CREATE VIEW C_DocumentInfoRecordDescVH AS
SELECT
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocPart,
  DocumentInfoRecordDocType,
  DocumentInfoRecordDocVersion,
  Language,
  DocumentDescription,
  LongTextExists
FROM I_DocumentInfoRecordDesc
LEFT OUTER JOIN I_DocumentInfoRecordDocTypeT AS _Text ON DocumentInfoRecordDocType = _Text.DocumentInfoRecordDocType  -- association [0..*]
;