I_SupplierMinorityGroup

DDL: I_SUPPLIERMINORITYGROUP SQL: ISUPLMINORITYGRP Type: view BASIC Package: FINS_FIS_AP_MD

Supplier Minority Group

I_SupplierMinorityGroup is a Basic CDS View (Dimension) that provides data about "Supplier Minority Group" in SAP S/4HANA. It reads from 1 data source (t059m) and exposes 2 fields with key field MinorityGroup. It has 1 association to related views. Part of development package FINS_FIS_AP_MD.

Data Sources (1)

SourceAliasJoin Type
t059m t059m from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SupplierMinorityGroupText _Text $projection.MinorityGroup = _Text.MinorityGroup

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ISUPLMINORITYGRP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Supplier Minority Group view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MinorityGroup view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MinorityGroup mindk Minority Indic.
_Text _Text

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_SupplierMinorityGroup.
-- 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: ISUPLMINORITYGRP

CREATE VIEW I_SupplierMinorityGroup AS
SELECT
  mindk AS MinorityGroup
FROM t059m
LEFT OUTER JOIN I_SupplierMinorityGroupText AS _Text ON MinorityGroup = _Text.MinorityGroup  -- association [0..*]
;