R_DocumentInfoRecordDescTP

DDL: R_DOCUMENTINFORECORDDESCTP Type: view_entity TRANSACTIONAL

Document Info Record Description - TP

R_DocumentInfoRecordDescTP is a Transactional CDS View that provides data about "Document Info Record Description - TP" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecordDesc) and exposes 9 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, Language.

Data Sources (1)

SourceAliasJoin Type
I_DocumentInfoRecordDesc I_DocumentInfoRecordDesc from

Annotations (8)

NameValueLevelField
EndUserText.label Document Info Record Description - TP view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.representativeKey DocumentInfoRecordDocType view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType DocumentInfoRecordDocType Document Type
KEY DocumentInfoRecordDocNumber DocumentInfoRecordDocNumber Document
KEY DocumentInfoRecordDocVersion DocumentInfoRecordDocVersion Doc. Version
KEY DocumentInfoRecordDocPart DocumentInfoRecordDocPart Document Part
KEY Language Language Report Text Language
DocumentDescription DocumentDescription Doc. Name
LongTextExists LongTextExists LgText ID
DocInfoRecdShortText DocInfoRecdShortText Description
_DocumentInfoRecord _DocumentInfoRecord

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 R_DocumentInfoRecordDescTP.
-- 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.

CREATE VIEW R_DocumentInfoRecordDescTP AS
SELECT
  DocumentInfoRecordDocType,
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocVersion,
  DocumentInfoRecordDocPart,
  Language,
  DocumentDescription,
  LongTextExists,
  DocInfoRecdShortText
FROM I_DocumentInfoRecordDesc
;