I_CustomerAccountGroup

DDL: I_CUSTOMERACCOUNTGROUP SQL: ICUSTACCGRP Type: view BASIC

Customer Account Group

I_CustomerAccountGroup (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_CustomerAccountGroup is a Basic CDS View (Dimension) that provides data about "Customer Account Group" in SAP S/4HANA. It reads from 1 data source (t077d) and exposes 2 fields with key field CustomerAccountGroup. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Business Partner
Data CategoryDimension
StatusReleased
Purpose
This CDS view retrieves customer account group details.

View on SAP Help Portal →

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
t077d t077d from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CustomerAccountGroupText _CustomerAccountGroupText $projection.CustomerAccountGroup = _CustomerAccountGroupText.CustomerAccountGroup

Annotations (13)

NameValueLevelField
EndUserText.label Customer Account Group view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey CustomerAccountGroup view
AbapCatalog.sqlViewName ICUSTACCGRP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CustomerAccountGroup t077d ktokd Customer Account Group
_CustomerAccountGroupText _CustomerAccountGroupText

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_CustomerAccountGroup.
-- 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: ICUSTACCGRP

CREATE VIEW I_CustomerAccountGroup AS
SELECT
  t077d.ktokd AS CustomerAccountGroup
FROM t077d
LEFT OUTER JOIN I_CustomerAccountGroupText AS _CustomerAccountGroupText ON CustomerAccountGroup = _CustomerAccountGroupText.CustomerAccountGroup  -- association [0..*]
;