I_SupplierAccountGroupText

DDL: I_SUPPLIERACCOUNTGROUPTEXT SQL: ISUPPACCTGRPTXT Type: view BASIC

Supplier Account Group - Text

I_SupplierAccountGroupText (Basic)

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

Database & Data Management

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

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentLO-MD-BP
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Language-Dependent Text, Data Source for Search
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t077y t077y from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_SupplierAccountGroup _SupplierAccountGroup _SupplierAccountGroup.SupplierAccountGroup = $projection.SupplierAccountGroup
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ISUPPACCTGRPTXT view
EndUserText.label Supplier Account Group - Text view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey SupplierAccountGroup view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language t077y spras Off. Language
KEY SupplierAccountGroup t077y ktokk Vendor account group
AccountGroupName t077y txt30 Account Group Name
_SupplierAccountGroup _SupplierAccountGroup
_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_SupplierAccountGroupText.
-- 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: ISUPPACCTGRPTXT

CREATE VIEW I_SupplierAccountGroupText AS
SELECT
  t077y.spras AS Language,
  t077y.ktokk AS SupplierAccountGroup,
  t077y.txt30 AS AccountGroupName
FROM t077y
LEFT OUTER JOIN I_SupplierAccountGroup AS _SupplierAccountGroup ON _SupplierAccountGroup.SupplierAccountGroup = SupplierAccountGroup  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;