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

I_ProdnOrderPlanningCategory

DDL: I_PRODNORDERPLANNINGCATEGORY SQL: IFIPPORDPLNGCAT Type: view BASIC

Production Order Planning Category

I_ProdnOrderPlanningCategory (Basic)

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

Accounting and Financial Close

I_ProdnOrderPlanningCategory is a Basic CDS View that provides data about "Production Order Planning Category" in SAP S/4HANA. It reads from 1 data source (fcomc_category) and exposes 4 fields with key field PlanningCategory. It has 1 association to related views.

SAP API Hub

StateDeprecated
Line of BusinessAccounting and Financial Close
Application ComponentCO-PC-OBJ
CapabilitiesAssociation Target for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
fcomc_category fcomc_category from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PlanningCategoryText _Text $projection.PlanningCategory = _Text.PlanningCategory

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IFIPPORDPLNGCAT view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_PlanningCategory view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #NOT_ALLOWED view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Production Order Planning Category view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey PlanningCategory view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PlanningCategory category Violation Category
PlngCatIsForOrdReltdPlnCost planord Category is used for order plan/preliminary cost
PlngCatIsForMatlCostEstPlnCost preplanord Category is used for material standard cost
_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_ProdnOrderPlanningCategory.
-- 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: IFIPPORDPLNGCAT

CREATE VIEW I_ProdnOrderPlanningCategory AS
SELECT
  category AS PlanningCategory,
  planord AS PlngCatIsForOrdReltdPlnCost,
  preplanord AS PlngCatIsForMatlCostEstPlnCost
FROM fcomc_category
LEFT OUTER JOIN I_PlanningCategoryText AS _Text ON PlanningCategory = _Text.PlanningCategory  -- association [0..*]
;