I_DivisionText

DDL: I_DIVISIONTEXT SQL: ISDDIVISIONTEXT Type: view BASIC

Division - Text

I_DivisionText is a Basic CDS View that provides data about "Division - Text" in SAP S/4HANA. It reads from 1 data source (tspat) and exposes 5 fields with key fields Division, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tspat tspat from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Division _Division $projection.Division = _Division.Division
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Division view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Division - Text view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDDIVISIONTEXT view
Search.searchable true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Division spart Source supplier
KEY Language spras Off. Language
DivisionName Wgh.Dat.Ty.Txt.
_Division _Division
_Language _Language

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_DivisionText.
-- 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: ISDDIVISIONTEXT

CREATE VIEW I_DivisionText AS
SELECT
  spart AS Division,
  spras AS Language,
  cast(vtext as divisionname preserving type) AS DivisionName
FROM tspat
LEFT OUTER JOIN I_Division AS _Division ON Division = _Division.Division  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;