I_WorkCenterType

DDL: I_WORKCENTERTYPE SQL: IPPWRKCNTRTYP Type: view BASIC

Work Center Type

I_WorkCenterType (Basic)

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

WorkCenterType · Manufacturing

I_WorkCenterType is a Basic CDS View (Dimension) that provides data about "Work Center Type" in SAP S/4HANA. It reads from 1 data source (I_ProductionResourceType) and exposes 2 fields with key field WorkCenterTypeCode. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM-MD
CapabilitiesAssociation Target for Defining CDS Entities, Analytical Dimension, Data Source for Data Extraction
PackageManufacturing for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_ProductionResourceType typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_WorkCenterTypeText _Text $projection.WorkCenterTypeCode = _Text.WorkCenterTypeCode

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IPPWRKCNTRTYP 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 WorkCenterTypeCode view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Work Center Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY WorkCenterTypeCode I_ProductionResourceType ProductionResourceType Production Resource Type
_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_WorkCenterType.
-- 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: IPPWRKCNTRTYP

CREATE VIEW I_WorkCenterType AS
SELECT
  typ.ProductionResourceType AS WorkCenterTypeCode
FROM I_ProductionResourceType AS typ
LEFT OUTER JOIN I_WorkCenterTypeText AS _Text ON WorkCenterTypeCode = _Text.WorkCenterTypeCode  -- association [0..*]
;