R_DocumentInfoRecordTP

DDL: R_DOCUMENTINFORECORDTP Type: view_entity TRANSACTIONAL

Document Info Record - TP

R_DocumentInfoRecordTP is a Transactional CDS View that provides data about "Document Info Record - TP" in SAP S/4HANA. It reads from 1 data source (I_DocumentInfoRecord) and exposes 22 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocVersion, DocumentInfoRecordDocNumber, DocumentInfoRecordDocPart. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_DocumentInfoRecord I_DocumentInfoRecord from

Associations (4)

CardinalityTargetAliasCondition
[0..*] R_DocumentInfoRecordRelationTP _Relation $projection.DocumentInfoRecordDocNumber = _Relation.DocInfoRecdDocNumberForEdit and $projection.DocumentInfoRecordDocPart = _Relation.DocInfoRecdDocPartForEdit and $projection.DocumentInfoRecordDocVersion = _Relation.DocInfoRecdDocVersionForEdit and $projection.DocumentInfoRecordDocType = _Relation.DocInfoRecdDocTypeForEdit
[0..*] R_DocumentInfoRecObjLnkTP _Link
[0..*] R_DocumentInfoRecordAttchTP _Attachment
[0..*] R_DocumentInfoRecordDescTP _Description

Annotations (8)

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

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY DocumentInfoRecordDocType DocumentInfoRecordDocType Document Type
KEY DocumentInfoRecordDocVersion DocumentInfoRecordDocVersion Doc. Version
KEY DocumentInfoRecordDocNumber DocumentInfoRecordDocNumber Document
KEY DocumentInfoRecordDocPart DocumentInfoRecordDocPart Document Part
DocumentInfoRecord DocumentInfoRecord Document
InternalDocumentStatus InternalDocumentStatus Status
ExternalDocumentStatus ExternalDocumentStatus Status
LaboratoryOrDesignOffice LaboratoryOrDesignOffice Lab/Office
AuthorizationGroup AuthorizationGroup AuthorizGroup
ChangeNumber ChangeNumber Change Number
DocInfoRecdIsMarkedForDeletion DocInfoRecdIsMarkedForDeletion Deletion ind.
IsDocInfoRecdCreatedFromCAD IsDocInfoRecdCreatedFromCAD CAD Indicator
ResponsiblePersonName ResponsiblePersonName User
CreationDateTime CreationDateTime Timestamp
CreatedByUser CreatedByUser User Name
ChangedDateTime ChangedDateTime Time Stamp
LastChangedByUser LastChangedByUser User Name
DocumentInfoRecordIsFrozen DocumentInfoRecordIsFrozen
_Description _Description
_Link _Link
_Attachment _Attachment
_Relation _Relation

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_DocumentInfoRecordTP.
-- 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_DocumentInfoRecordTP AS
SELECT
  DocumentInfoRecordDocType,
  DocumentInfoRecordDocVersion,
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocPart,
  DocumentInfoRecord,
  InternalDocumentStatus,
  ExternalDocumentStatus,
  LaboratoryOrDesignOffice,
  AuthorizationGroup,
  ChangeNumber,
  DocInfoRecdIsMarkedForDeletion,
  IsDocInfoRecdCreatedFromCAD,
  ResponsiblePersonName,
  CreationDateTime,
  CreatedByUser,
  ChangedDateTime,
  LastChangedByUser,
  DocumentInfoRecordIsFrozen
FROM I_DocumentInfoRecord
LEFT OUTER JOIN R_DocumentInfoRecordRelationTP AS _Relation ON DocumentInfoRecordDocNumber = _Relation.DocInfoRecdDocNumberForEdit AND DocumentInfoRecordDocPart = _Relation.DocInfoRecdDocPartForEdit AND DocumentInfoRecordDocVersion = _Relation.DocInfoRecdDocVersionForEdit AND DocumentInfoRecordDocType = _Relation.DocInfoRecdDocTypeForEdit  -- association [0..*]
LEFT OUTER JOIN R_DocumentInfoRecObjLnkTP AS _Link ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN R_DocumentInfoRecordAttchTP AS _Attachment ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN R_DocumentInfoRecordDescTP AS _Description ON /* condition not available in parsed metadata */  -- association [0..*]
;