I_ProductPlanningStrategy

DDL: I_PRODUCTPLANNINGSTRATEGY SQL: IPLANNINGSTRATEG Type: view BASIC

Product Planning Strategy

I_ProductPlanningStrategy (Basic)

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

Product Planning Strategy · Manufacturing

I_ProductPlanningStrategy is a Basic CDS View (Dimension) that provides data about "Product Planning Strategy" in SAP S/4HANA. It reads from 1 data source (t461s) and exposes 6 fields with key field ProductPlanningStrategy. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Material Requirements Planning
Data CategoryDimension
Purpose
This CDS view selects product planning strategies (table T461S ). This CDS view provides the data to answer the following business questions: Which planning strategy codes exist? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

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

Structure
Further Important Fields Important fields in this view include the following: Field Name Description ProductPlanningStrategy Planning Strategy

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Data Extraction, Data Source in SQL Select, Data Source for Search
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view selects product planning strategies (table T461S).</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>Which planning strategy codes exist?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
t461s strat from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_ProductPlanningStrategyText _Text $projection.ProductPlanningStrategy = _Text.ProductPlanningStrategy
[0..1] I_PlndIndepRqmtType _PlndIndepRqmtRqmtType $projection.PlndIndepRqmtRqmtType = _PlndIndepRqmtRqmtType.PlndIndepRqmtType
[0..1] I_PlndIndepRqmtType _CustomerRqmtRqmtType $projection.CustomerRequirementRqmtType = _CustomerRqmtRqmtType.PlndIndepRqmtType

Annotations (22)

NameValueLevelField
AbapCatalog.sqlViewName IPLANNINGSTRATEG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ProductPlanningStrategy 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 Product Planning Strategy view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProductPlanningStrategy t461s stra1 Planning Strategy
PlndIndepRqmtRqmtType t461s bedvp Requirements Type for Planned Independent Requirements
CustomerRequirementRqmtType t461s bedku Requirement Type of Customer Requirement
_CustomerRqmtRqmtType _CustomerRqmtRqmtType
_PlndIndepRqmtRqmtType _PlndIndepRqmtRqmtType
_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_ProductPlanningStrategy.
-- 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: IPLANNINGSTRATEG

CREATE VIEW I_ProductPlanningStrategy AS
SELECT
  strat.stra1 AS ProductPlanningStrategy,
  strat.bedvp AS PlndIndepRqmtRqmtType,
  strat.bedku AS CustomerRequirementRqmtType
FROM t461s AS strat
LEFT OUTER JOIN I_ProductPlanningStrategyText AS _Text ON ProductPlanningStrategy = _Text.ProductPlanningStrategy  -- association [0..*]
LEFT OUTER JOIN I_PlndIndepRqmtType AS _PlndIndepRqmtRqmtType ON PlndIndepRqmtRqmtType = _PlndIndepRqmtRqmtType.PlndIndepRqmtType  -- association [0..1]
LEFT OUTER JOIN I_PlndIndepRqmtType AS _CustomerRqmtRqmtType ON CustomerRequirementRqmtType = _CustomerRqmtRqmtType.PlndIndepRqmtType  -- association [0..1]
;