I_WorkCenterGroupText
Work Center Group Text
I_WorkCenterGroupText is a Composite CDS View that provides data about "Work Center Group Text" in SAP S/4HANA. It reads from 1 data source (I_ProductionResourceText) and exposes 6 fields with key fields WorkCenterGroupTypeCode, WorkCenterGroupInternalID, Language. It has 2 associations to related views. Part of development package VDM_PP_WORKCENTER_GROUP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProductionResourceText | text | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_ProductionResourceType | _ProductionResourceType | $projection.WorkCenterGroupTypeCode = _ProductionResourceType.ProductionResourceType |
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | WorkCenterGroupInternalID | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IPPWRKCTRGRPTXT | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #COMPOSITE | view | |
| EndUserText.label | Work Center Group Text | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkCenterGroupTypeCode | I_ProductionResourceText | ProductionResourceType | |
| KEY | WorkCenterGroupInternalID | I_ProductionResourceText | ProductionResourceInternalID | |
| KEY | Language | |||
| WorkCenterGroupDescription | ||||
| _ProductionResourceType | _ProductionResourceType | |||
| _Language | _Language |
@AccessControl.authorizationCheck: #CHECK
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'WorkCenterGroupInternalID'
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IPPWRKCTRGRPTXT'
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #MASTER}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Work Center Group Text'
define view entity I_WorkCenterGroupText
as select from I_ProductionResourceText as text
association [1..1] to I_ProductionResourceType as _ProductionResourceType on $projection.WorkCenterGroupTypeCode = _ProductionResourceType.ProductionResourceType
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_ProductionResourceType'
key text.ProductionResourceType as WorkCenterGroupTypeCode,
key text.ProductionResourceInternalID as WorkCenterGroupInternalID,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(text.Language as spras preserving type) as Language,
// Text
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
@Semantics.text: true
cast(text.ProductionResourceText as productionresourcetext preserving type) as WorkCenterGroupDescription,
_ProductionResourceType,
_Language
}
where
ProductionResourceType = 'G'; // only Work Center Group Texts
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