I_IncotermsVersion

DDL: I_INCOTERMSVERSION SQL: IINCOTERMSV Type: view BASIC

Incoterms Version

I_IncotermsVersion (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Incoterms Version · Sales

I_IncotermsVersion is a Basic CDS View that provides data about "Incoterms Version" in SAP S/4HANA. It reads from 1 data source (tincv) and exposes 2 fields with key field IncotermsVersion. It has 1 association to related views.

SAP Help Documentation

CategorySales Master Data Management
StatusReleased
Purpose
This CDS view helps to retrieve the incoterms version of a customer.

Structure
Measures and attributes The following attribute is provided: Incoterms version

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSales
Application ComponentSD-BF-MD
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Data Extraction, Association Target for Defining CDS Entities
PackageSales for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view helps to retrieve the incoterms version of a customer.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tincv tincv from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IncotermsVersionText _Text $projection.IncotermsVersion = _Text.IncotermsVersion

Annotations (17)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey IncotermsVersion view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Incoterms Version view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IINCOTERMSV view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name IncotermsVersion view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IncotermsVersion incov Incoterms Version
_Text _Text

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_IncotermsVersion.
-- 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: IINCOTERMSV

CREATE VIEW I_IncotermsVersion AS
SELECT
  incov AS IncotermsVersion
FROM tincv
LEFT OUTER JOIN I_IncotermsVersionText AS _Text ON IncotermsVersion = _Text.IncotermsVersion  -- association [0..*]
;