I_DocInfoRecordDescriptionTP

DDL: I_DOCINFORECORDDESCRIPTIONTP SQL: IDIRDESCWODRTP Type: view TRANSACTIONAL

CDS TP View for Doc Info Record Desc

I_DocInfoRecordDescriptionTP is a Transactional CDS View that provides data about "CDS TP View for Doc Info Record Desc" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecordDesc) and exposes 10 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocNumber, DocumentInfoRecordDocVersion, DocumentInfoRecordDocPart, Language.

Data Sources (1)

SourceAliasJoin Type
I_DocumentInfoRecordDesc I_DocumentInfoRecordDesc from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IDIRDESCWODRTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label CDS TP View for Doc Info Record Desc view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.preserveKey true view

Fields (10)

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
ChangedDateTime _DocInfoRecord ChangedDateTime Time Stamp
_DocInfoRecord _DocInfoRecord

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_DocInfoRecordDescriptionTP.
-- 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: IDIRDESCWODRTP

CREATE VIEW I_DocInfoRecordDescriptionTP AS
SELECT
  DocumentInfoRecordDocType,
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocVersion,
  DocumentInfoRecordDocPart,
  Language,
  DocumentDescription,
  LongTextExists,
  DocInfoRecdShortText,
  _DocInfoRecord.ChangedDateTime AS ChangedDateTime
FROM I_DocumentInfoRecordDesc
;