I_ExtProdGrp
External Product Group
I_ExtProdGrp is a Basic CDS View (Dimension) that provides data about "External Product Group" in SAP S/4HANA. It reads from 1 data source (twew) and exposes 2 fields with key field ExternalProductGroup. It has 1 association to related views. Part of development package VDM_MD_PRODUCT_DDIC.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| twew | twew | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ExtProdGrpText | _Text | $projection.ExternalProductGroup = _Text.ExternalProductGroup |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEXTPRODGRP | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | External Product Group | view | |
| ObjectModel.representativeKey | ExternalProductGroup | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.dataExtraction.delta.changeDataCapture.automatic | true | view | |
| Consumption.ranked | true | view | |
| ObjectModel.sapObjectNodeType.name | ExternalProductGroup | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ExternalProductGroup | |||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'IEXTPRODGRP',
preserveKey: true,
compiler.compareFilter: true,
buffering: {
status: #ACTIVE,
type: #FULL
}
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'External Product Group'
@ObjectModel:{
representativeKey: 'ExternalProductGroup',
dataCategory: #VALUE_HELP,
supportedCapabilities: [ #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SEARCHABLE_ENTITY,
#VALUE_HELP_PROVIDER,
#ANALYTICAL_DIMENSION,
#EXTRACTION_DATA_SOURCE
],
usageType:{
serviceQuality: #A,
sizeCategory : #S,
dataClass: #CUSTOMIZING
}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations:true
@Analytics:{
dataCategory: #DIMENSION,
dataExtraction: {
enabled: true,
delta.changeDataCapture.automatic: true
}
}
@Consumption.ranked: true
@ObjectModel.sapObjectNodeType.name:'ExternalProductGroup'
define view I_ExtProdGrp
as select from twew
association [0..*] to I_ExtProdGrpText as _Text on $projection.ExternalProductGroup = _Text.ExternalProductGroup
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key cast(extwg as externalproductgroup preserving type ) as ExternalProductGroup,
_Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA