I_MfgOrderType

DDL: I_MFGORDERTYPE SQL: IPPMFGORDERTYPE Type: view BASIC

Manufacturing Order Type

I_MfgOrderType (Basic)

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

Manufacturing Order Type · Manufacturing

I_MfgOrderType is a Basic CDS View (Dimension) that provides data about "Manufacturing Order Type" in SAP S/4HANA. It reads from 1 data source (I_OrderType) and exposes 4 fields with key field ManufacturingOrderType. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Discrete and Process Manufacturing
Data CategoryDimension
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which order types are maintained for the manufacturing order categories?

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Main input parameters This CDS view does not have any input parameters. Measures and attributes The following attributes are provided: Manufacturing order type Manufacturing order category

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM
CapabilitiesAnalytical Dimension, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Search, Association Target for Defining CDS Entities, Data Source for Data Extraction
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which order types are maintained for the manufacturing order categories?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_OrderType typ from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_MfgOrderTypeText _Text $projection.ManufacturingOrderType = _Text.ManufacturingOrderType
[0..1] I_MfgOrderCategory _MfgOrderCategory $projection.ManufacturingOrderCategory = _MfgOrderCategory.ManufacturingOrderCategory

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IPPMFGORDERTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.compositionRoot true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ManufacturingOrderType view
ObjectModel.sapObjectNodeType.name ManufacturingOrderType 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 Manufacturing Order Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ManufacturingOrderType Manufacturing Order Type
ManufacturingOrderCategory Manufacturing Order Category
_MfgOrderCategory _MfgOrderCategory
_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_MfgOrderType.
-- 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: IPPMFGORDERTYPE

CREATE VIEW I_MfgOrderType AS
SELECT
  cast(typ.OrderType as manufacturingordertype preserving type) AS ManufacturingOrderType,
  cast(typ.OrderCategory as manufacturingordercategory preserving type) AS ManufacturingOrderCategory
FROM I_OrderType AS typ
LEFT OUTER JOIN I_MfgOrderTypeText AS _Text ON ManufacturingOrderType = _Text.ManufacturingOrderType  -- association [0..*]
LEFT OUTER JOIN I_MfgOrderCategory AS _MfgOrderCategory ON ManufacturingOrderCategory = _MfgOrderCategory.ManufacturingOrderCategory  -- association [0..1]
;