I_Extmatlgrptext
text for external matl grp
I_Extmatlgrptext is a Basic CDS View that provides data about "text for external matl grp" in SAP S/4HANA. It reads from 1 data source (twewt) and exposes 3 fields with key fields ExternalProductGroup, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| twewt | twewt | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEXTMATLGRPTXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | text for external matl grp | view | |
| ObjectModel.representativeKey | ExternalProductGroup | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ExternalProductGroup | extwg | ||
| KEY | Language | spras | ||
| ExternalProductGroupName | ewbez |
@AbapCatalog.sqlViewName: 'IEXTMATLGRPTXT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'text for external matl grp'
@ObjectModel.representativeKey: 'ExternalProductGroup'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_Extmatlgrptext
as select from twewt
{
key extwg as ExternalProductGroup,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
ewbez as ExternalProductGroupName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TWEWT"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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