A_IncotermsVersionText

DDL: A_INCOTERMSVERSIONTEXT Type: view BASIC

Version Description

A_IncotermsVersionText is a Basic CDS View that provides data about "Version Description" in SAP S/4HANA. It reads from 1 data source (I_IncotermsVersionText) and exposes 3 fields with key fields IncotermsVersion, Language.

Data Sources (1)

SourceAliasJoin Type
I_IncotermsVersionText I_IncotermsVersionText from

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Version Description view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName AINCOTERMSVT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY IncotermsVersion IncotermsVersion Inco. Version
KEY Language Language Report Text Language
IncotermsVersionName IncotermsVersionName 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 A_IncotermsVersionText.
-- 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 A_IncotermsVersionText AS
SELECT
  IncotermsVersion,
  Language,
  IncotermsVersionName
FROM I_IncotermsVersionText
;