I_OperationSetupGroupCategory

DDL: I_OPERATIONSETUPGROUPCATEGORY SQL: IPPOPSUPGRPCAT Type: view BASIC

Operation Setup Group Category

I_OperationSetupGroupCategory (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

BOOOpSetUpGroupCat · Manufacturing

I_OperationSetupGroupCategory is a Basic CDS View (Dimension) that provides data about "Operation Setup Group Category" in SAP S/4HANA. It reads from 1 data source (t426) and exposes 4 fields with key fields OperationSetupGroupCategory, Plant. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Basic Routing Data
Data CategoryDimension
StatusReleased
Purpose
With this CDS view you can select operation setup group categories (table T426 ). This CDS view provides the data to answer the following business question: Which operation setup group categories exist in a plant? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Important fields Important fields in this view include the following: Field Name Description OperationSetupGroupCategory Operation setup group category Plant Plant

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM-MD
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source in SQL Select, Data Source for Search, Data Source for Data Extraction
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>With this CDS view you can select operation setup group categories (table T426). </p> This CDS view provides the data to answer the following business question:<ul> <li><p>Which operation setup group categories exist in a plant? </p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
t426 t426 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..*] I_OperationSetupGroupCatText _Text $projection.OperationSetupGroupCategory = _Text.OperationSetupGroupCategory and $projection.Plant = _Text.Plant

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPPOPSUPGRPCAT 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
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey OperationSetupGroupCategory view
ObjectModel.semanticKey OperationSetupGroupCategory 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 Category view
ObjectModel.sapObjectNodeType.name BOOOpSetUpGroupCat view
Analytics.dataExtraction.enabled true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OperationSetupGroupCategory Setup Group Category for Operations
KEY Plant werks Receiving Plant
_Plant _Plant
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_OperationSetupGroupCategory.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IPPOPSUPGRPCAT

CREATE VIEW I_OperationSetupGroupCategory AS
SELECT
  cast(rfgrp as vdm_ruefagrp preserving type) AS OperationSetupGroupCategory,
  werks AS Plant
FROM t426
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
LEFT OUTER JOIN I_OperationSetupGroupCatText AS _Text ON OperationSetupGroupCategory = _Text.OperationSetupGroupCategory AND Plant = _Text.Plant  -- association [0..*]
;