I_PurCtrIncoVersion

DDL: I_PURCTRINCOVERSION SQL: IPURCTRINCOVRSN Type: view BASIC

Purchase Contract Incoterm Version

I_PurCtrIncoVersion is a Basic CDS View (Dimension) that provides data about "Purchase Contract Incoterm Version" in SAP S/4HANA. It reads from 1 data source (tincvt) and exposes 2 fields with key field IncotermsVersion.

Data Sources (1)

SourceAliasJoin Type
tincvt tincvt from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPURCTRINCOVRSN view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey IncotermsVersion view
EndUserText.label Purchase Contract Incoterm Version view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IncotermsVersion incov Inco. Version
IncotermsVersionName bezei TrContType 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_PurCtrIncoVersion.
-- 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: IPURCTRINCOVRSN

CREATE VIEW I_PurCtrIncoVersion AS
SELECT
  incov AS IncotermsVersion,
  bezei AS IncotermsVersionName
FROM tincvt
;