I_DocumentInfoRecordTP_2

DDL: I_DOCUMENTINFORECORDTP_2 Type: view_entity TRANSACTIONAL

Document Info Record BO Interface - TP

I_DocumentInfoRecordTP_2 is a Transactional CDS View that provides data about "Document Info Record BO Interface - TP" in SAP S/4HANA. It reads from 1 data source (R_DocumentInfoRecordTP) and exposes 16 fields with key fields DocumentInfoRecordDocType, DocumentInfoRecordDocVersion, DocumentInfoRecordDocNumber, DocumentInfoRecordDocPart.

Data Sources (1)

SourceAliasJoin Type
R_DocumentInfoRecordTP R_DocumentInfoRecordTP projection

Annotations (10)

NameValueLevelField
EndUserText.label Document Info Record BO Interface - TP view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.sapObjectNodeType.name DocumentInfoRecord view
Metadata.ignorePropagatedAnnotations true view

Fields (16)

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

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_DocumentInfoRecordTP_2.
-- 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 I_DocumentInfoRecordTP_2 AS
SELECT
  DocumentInfoRecordDocType,
  DocumentInfoRecordDocVersion,
  DocumentInfoRecordDocNumber,
  DocumentInfoRecordDocPart,
  DocumentInfoRecord,
  InternalDocumentStatus,
  LaboratoryOrDesignOffice,
  AuthorizationGroup,
  ChangeNumber,
  DocInfoRecdIsMarkedForDeletion,
  IsDocInfoRecdCreatedFromCAD,
  ResponsiblePersonName,
  CreationDateTime,
  CreatedByUser,
  ChangedDateTime,
  LastChangedByUser
FROM R_DocumentInfoRecordTP
;