I_OperationSetupGroup
Operation Setup Group
I_OperationSetupGroup is a Basic CDS View (Dimension) that provides data about "Operation Setup Group" in SAP S/4HANA. It reads from 1 data source (t425) and exposes 6 fields with key fields Plant, OperationSetupGroupCategory, OperationSetupGroup. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t425 | t425 | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
| [1..1] | I_OperationSetupGroupCategory | _OperationSetupGroupCategory | $projection.Plant = _OperationSetupGroupCategory.Plant and $projection.OperationSetupGroupCategory = _OperationSetupGroupCategory.OperationSetupGroupCategory |
| [0..*] | I_OperationSetupGroupText | _Text | $projection.OperationSetupGroup = _Text.OperationSetupGroup and $projection.OperationSetupGroupCategory = _Text.OperationSetupGroupCategory and $projection.Plant = _Text.Plant |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPOPSETUPGROUP | 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 | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | OperationSetupGroup | view | |
| ObjectModel.semanticKey | OperationSetupGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| EndUserText.label | Operation Setup Group | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | werks | ||
| KEY | OperationSetupGroupCategory | |||
| KEY | OperationSetupGroup | |||
| _Plant | _Plant | |||
| _OperationSetupGroupCategory | _OperationSetupGroupCategory | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IPPOPSETUPGROUP'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'OperationSetupGroup'
@ObjectModel.semanticKey: 'OperationSetupGroup'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #CUSTOMIZING}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'Operation Setup Group'
define view I_OperationSetupGroup
as select from t425
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
association [0..*] to I_OperationSetupGroupText as _Text on $projection.OperationSetupGroup = _Text.OperationSetupGroup
and $projection.OperationSetupGroupCategory = _Text.OperationSetupGroupCategory
and $projection.Plant = _Text.Plant
{
// Key
@ObjectModel.foreignKey.association: '_Plant'
key werks as Plant,
@ObjectModel.foreignKey.association: '_OperationSetupGroupCategory'
key cast(rfgrp as pph_rfgrp preserving type) as OperationSetupGroupCategory,
@Search: {defaultSearchElement: true, fuzzinessThreshold: 0.8,ranking: #HIGH}
@ObjectModel.text.association: '_Text'
key cast(rfsch as pph_rfsch preserving type) as OperationSetupGroup,
// Associations
_Plant,
_OperationSetupGroupCategory,
_Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T425"
],
"ASSOCIATED":
[
"I_OPERATIONSETUPGROUPCATEGORY",
"I_OPERATIONSETUPGROUPTEXT",
"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