I_PlannedOrderStdVH

DDL: I_PLANNEDORDERSTDVH SQL: IPO__VH Type: view COMPOSITE

Planned Order

I_PlannedOrderStdVH (Composite)

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

Manufacturing

I_PlannedOrderStdVH is a Composite CDS View that provides data about "Planned Order" in SAP S/4HANA. It reads from 1 data source (I_PlannedOrder) and exposes 3 fields with key field PlannedOrder.

SAP Help Documentation

CategoryCDS Views for Material Requirements Planning
Purpose
This CDS view provides value help for planned orders. This view should be used for value help purposes only. If you intend to select the entire business data, use the view I_PlannedOrder instead.

Prerequisites
Authorizations Users who want to use this CDS view must have the following authorization objects assigned: M_PLAF_ORG (Organization Levels for Planned Order Processing)

Structure
Important Fields Important fields in this view include the following: Field Name Description PlannedOrder Planned order

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM
CapabilitiesData Provider for Value Help, Data Source for Search
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides value help for planned orders. This view should be used for value help purposes only. If you intend to select the entire business data, use the view I_PlannedOrder instead.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_PlannedOrder I_PlannedOrder from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IPO__VH view
AbapCatalog.compiler.compareFilter true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey PlannedOrder view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Planned Order view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PlannedOrder PlannedOrder Planned Order
MRPController MRPController MRP Controller
MRPPlant MRPPlant Planning Plant

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_PlannedOrderStdVH.
-- 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: IPO__VH

CREATE VIEW I_PlannedOrderStdVH AS
SELECT
  PlannedOrder,
  MRPController,
  MRPPlant
FROM I_PlannedOrder
;