C_PurchaseReqnHeaderNoteTypes

DDL: C_PURCHASEREQNHEADERNOTETYPES SQL: CPRHDRNOTETYP Type: view CONSUMPTION

Purchase Requisition Header Note Types

C_PurchaseReqnHeaderNoteTypes is a Consumption CDS View that provides data about "Purchase Requisition Header Note Types" in SAP S/4HANA. It reads from 1 data source (I_Text_Type) and exposes 4 fields with key fields TechnicalObjectType, Language, DocumentText.

Data Sources (1)

SourceAliasJoin Type
I_Text_Type I_Text_Type from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CPRHDRNOTETYP view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
EndUserText.label Purchase Requisition Header Note Types view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TechnicalObjectType TechnicalObjectType Text object
KEY Language Language Report Text Language
KEY DocumentText DocumentText Text ID
Note Note TradeRequest Comment

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 C_PurchaseReqnHeaderNoteTypes.
-- 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: CPRHDRNOTETYP

CREATE VIEW C_PurchaseReqnHeaderNoteTypes AS
SELECT
  TechnicalObjectType,
  Language,
  DocumentText,
  Note
FROM I_Text_Type
;