Deprecated
This CDS view is deprecated in S/4HANA. Use I_SequenceCategory instead. View all deprecated CDS views →

I_MfgOrderSequenceCategory

DDL: I_MFGORDERSEQUENCECATEGORY SQL: IPPMFGORDSEQCAT Type: view BASIC

Manufacturing Order Sequence Category

I_MfgOrderSequenceCategory is a Basic CDS View (Dimension) that provides data about "Manufacturing Order Sequence Category" in SAP S/4HANA. It reads from 1 data source (tca07) and exposes 2 fields with key field MfgOrderSequenceCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tca07 cat from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MfgOrderSequenceCategoryText _Text $projection.MfgOrderSequenceCategory = _Text.MfgOrderSequenceCategory

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IPPMFGORDSEQCAT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.numberOfKeyFields 000 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MfgOrderSequenceCategory view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_SequenceCategory view
VDM.viewType #BASIC view
EndUserText.label Manufacturing Order Sequence Category view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MfgOrderSequenceCategory tca07 flgat Sequence 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_MfgOrderSequenceCategory.
-- 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: IPPMFGORDSEQCAT

CREATE VIEW I_MfgOrderSequenceCategory AS
SELECT
  cat.flgat AS MfgOrderSequenceCategory
FROM tca07 AS cat
LEFT OUTER JOIN I_MfgOrderSequenceCategoryText AS _Text ON MfgOrderSequenceCategory = _Text.MfgOrderSequenceCategory  -- association [0..*]
;