I_SalesGroupText

DDL: I_SALESGROUPTEXT SQL: ISDSALESGROUPT Type: view BASIC

Sales Group - Text

I_SalesGroupText is a Basic CDS View that provides data about "Sales Group - Text" in SAP S/4HANA. It reads from 1 data source (tvgrt) and exposes 5 fields with key fields SalesGroup, Language.

Data Sources (1)

SourceAliasJoin Type
tvgrt tvgrt from

Annotations (18)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SalesGroup view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Sales Group - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSALESGROUPT view
Search.searchable true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Analytics.dataExtraction.enabled true 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 SalesGroup vkgrp Sales Group
KEY Language spras Off. Language
SalesGroupName TrContType name
_SalesGroup _SalesGroup
_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_SalesGroupText.
-- 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: ISDSALESGROUPT

CREATE VIEW I_SalesGroupText AS
SELECT
  vkgrp AS SalesGroup,
  spras AS Language,
  cast(bezei as salesgroupname preserving type) AS SalesGroupName
FROM tvgrt
;