I_SupplierAccountGroup

DDL: I_SUPPLIERACCOUNTGROUP SQL: ISUPPLACCGRP Type: view BASIC

Supplier Account Group

I_SupplierAccountGroup (Basic)

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

SupplierAccountGroup · Database & Data Management

I_SupplierAccountGroup is a Basic CDS View (Dimension) that provides data about "Supplier Account Group" in SAP S/4HANA. It reads from 1 data source (t077k) and exposes 3 fields with key field SupplierAccountGroup. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Business Partner
Data CategoryDimension
Purpose
This CDS view retrieves the data related to supplier account groups.

Prerequisites
Authorizations Users who want to use this CDS view must have a role with the following restriction types set to read access: KTOKK – Supplier Account Group

Structure
Important Fields Important fields in this view include the following: Field Name Description SupplierAccountGroup Supplier Account Group

Data Extraction
Data Extraction Type This CDS view is enabled for data extraction in full mode as well as in delta mode. Deltas are determined automatically by change data capture.

View on SAP Help Portal →

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
t077k t077k from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SupplierAccountGroupText _SupplierAccountGroupText $projection.SupplierAccountGroup = _SupplierAccountGroupText.SupplierAccountGroup

Annotations (18)

NameValueLevelField
EndUserText.label Supplier Account Group view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.sapObjectNodeType.name SupplierAccountGroup view
ObjectModel.representativeKey SupplierAccountGroup view
AbapCatalog.sqlViewName ISUPPLACCGRP view
Search.searchable true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.objectIdentifier.oidElement SupplierAccountGroupOID view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SupplierAccountGroup t077k ktokk Vendor account group
BPSchemaPurgOrganizationLevel parge Partner schema: purchasing organization level
_SupplierAccountGroupText _SupplierAccountGroupText

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_SupplierAccountGroup.
-- 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: ISUPPLACCGRP

CREATE VIEW I_SupplierAccountGroup AS
SELECT
  t077k.ktokk AS SupplierAccountGroup,
  parge AS BPSchemaPurgOrganizationLevel
FROM t077k
LEFT OUTER JOIN I_SupplierAccountGroupText AS _SupplierAccountGroupText ON SupplierAccountGroup = _SupplierAccountGroupText.SupplierAccountGroup  -- association [0..*]
;