I_OperationSetupGroupText
Operation Setup Group - Text
I_OperationSetupGroupText is a Basic CDS View that provides data about "Operation Setup Group - Text" in SAP S/4HANA. It reads from 1 data source (t425t) and exposes 8 fields with key fields Plant, OperationSetupGroupCategory, OperationSetupGroup, Language. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t425t | txt | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
| [1..1] | I_OperationSetupGroupCategory | _OperationSetupGroupCategory | $projection.Plant = _OperationSetupGroupCategory.Plant and $projection.OperationSetupGroupCategory = _OperationSetupGroupCategory.OperationSetupGroupCategory |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPOPSETUPGRPTXT | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 001 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | OperationSetupGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Operation Setup Group - Text | view |
@AbapCatalog.sqlViewName: 'IPPOPSETUPGRPTXT'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'OperationSetupGroup'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Operation Setup Group - Text'
define view I_OperationSetupGroupText
as select from t425t as txt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
association [1..1] to I_OperationSetupGroupCategory as _OperationSetupGroupCategory on $projection.Plant = _OperationSetupGroupCategory.Plant
and $projection.OperationSetupGroupCategory = _OperationSetupGroupCategory.OperationSetupGroupCategory
{
@ObjectModel.foreignKey.association: '_Plant'
key txt.werks as Plant,
@ObjectModel.foreignKey.association: '_OperationSetupGroupCategory'
key cast(txt.rfgrp as pph_rfgrp preserving type) as OperationSetupGroupCategory,
@ObjectModel.text.element: 'OperationSetupGroupName'
key cast(txt.rfsch as pph_rfsch preserving type) as OperationSetupGroup,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key txt.spras as Language,
@Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8,ranking: #HIGH}
@Semantics.text: true
txt.txt as OperationSetupGroupName,
// Associations
_Plant,
_OperationSetupGroupCategory,
_Language
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T425T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_OPERATIONSETUPGROUPCATEGORY",
"I_PLANT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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