R_PurContrHeaderNotesTP

DDL: R_PURCONTRHEADERNOTESTP Type: view_entity TRANSACTIONAL

Purchase Contract Header Notes

R_PurContrHeaderNotesTP is a Transactional CDS View that provides data about "Purchase Contract Header Notes" in SAP S/4HANA. It reads from 1 data source (I_Purctrnotes) and exposes 8 fields with key fields ArchitecturalObjectNumber, TechnicalObjectType, DocumentText, Language, PurchaseContract.

Data Sources (1)

SourceAliasJoin Type
I_Purctrnotes I_Purctrnotes from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Purchase Contract Header Notes view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ArchitecturalObjectNumber ArchitecturalObjectNumber
KEY TechnicalObjectType TechnicalObjectType Text object
KEY DocumentText DocumentText Text ID
KEY Language Language Report Text Language
KEY PurchaseContract PurchaseContract Purchasing Doc.
NoteDescription NoteDescription Long Text
LastChangeDateTime _PurchaseContract LastChangeDateTime Timestamp
_PurchaseContract _PurchaseContract

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_PurContrHeaderNotesTP.
-- 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_PurContrHeaderNotesTP AS
SELECT
  ArchitecturalObjectNumber,
  TechnicalObjectType,
  DocumentText,
  Language,
  PurchaseContract,
  NoteDescription,
  _PurchaseContract.LastChangeDateTime AS LastChangeDateTime
FROM I_Purctrnotes
;