I_CapacityCategory

DDL: I_CAPACITYCATEGORY SQL: IPPCAPACAT Type: view BASIC Package: VDM_PP_MD_WKC

Enterprise Resource Capacity Category

I_CapacityCategory (Basic)

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

EntResourceCapacityCategory · Manufacturing

I_CapacityCategory is a Basic CDS View (Dimension) that provides data about "Enterprise Resource Capacity Category" in SAP S/4HANA. It reads from 1 data source (tc26) and exposes 2 fields with key field CapacityCategoryCode. It has 1 association to related views. It is exposed through 1 OData service (PP_PO_CONF_SD). Part of development package VDM_PP_MD_WKC.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM-MD-2CL
CapabilitiesData Source for Data Extraction,Analytical Dimension,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Defining CDS Entities,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageManufacturing for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which capacity categories are maintained?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
tc26 cat from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CapacityCategoryText _Text $projection.CapacityCategoryCode = _Text.CapacityCategoryCode

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPPCAPACAT 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.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey CapacityCategoryCode view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Enterprise Resource Capacity Category view
ObjectModel.sapObjectNodeType.name EntResourceCapacityCategory view

OData Services (1)

ServiceBindingVersionContractRelease
PP_PO_CONF_SD PP_PO_CONF_SB V4 C1 NOT_TO_BE_RELEASED_STABLE

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CapacityCategoryCode Capacity Category
_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_CapacityCategory.
-- 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: IPPCAPACAT

CREATE VIEW I_CapacityCategory AS
SELECT
  cast(cat.kapar as pph_kapart preserving type) AS CapacityCategoryCode
FROM tc26 AS cat
LEFT OUTER JOIN I_CapacityCategoryText AS _Text ON CapacityCategoryCode = _Text.CapacityCategoryCode  -- association [0..*]
;