C_MaterialGroupLongText
Text of a material group
C_MaterialGroupLongText is a Consumption CDS View that provides data about "Text of a material group" in SAP S/4HANA. It reads from 1 data source (I_MaterialGroupText) and exposes 4 fields with key fields MaterialGroup, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MaterialGroupText | I_MaterialGroupText | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMATGROUPLTEXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| EndUserText.label | Text of a material group | view | |
| ObjectModel.representativeKey | MaterialGroup | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialGroup | I_MaterialGroupText | MaterialGroup | |
| KEY | Language | I_MaterialGroupText | Language | |
| MaterialGroupText | ||||
| MaterialAuthorizationGroup |
@AbapCatalog.sqlViewName: 'CMATGROUPLTEXT'
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Text of a material group'
@ObjectModel.representativeKey: 'MaterialGroup'
define view C_MaterialGroupLongText as
select from I_MaterialGroupText
{
key I_MaterialGroupText.MaterialGroup,
@Semantics.language: true
key I_MaterialGroupText.Language,
@Semantics.text: true
cast (I_MaterialGroupText.MaterialGroupText as /srmsmc/description_medium) as MaterialGroupText,
@Consumption.hidden: true
I_MaterialGroupText._MaterialGroup.MaterialAuthorizationGroup
}
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