C_Purctrtexttype

DDL: C_PURCTRTEXTTYPE SQL: CPURCTRTEXTTYPE Type: view CONSUMPTION

Contract Text Types

C_Purctrtexttype is a Consumption CDS View that provides data about "Contract Text 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 (9)

NameValueLevelField
AbapCatalog.sqlViewName CPURCTRTEXTTYPE view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
EndUserText.label Contract Text Types view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER 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_Purctrtexttype.
-- 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: CPURCTRTEXTTYPE

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