C_ConvertPlannedOrder

DDL: C_CONVERTPLANNEDORDER SQL: CCONVPLNDORDERS Type: view CONSUMPTION

Convert Planned Orders

C_ConvertPlannedOrder is a Consumption CDS View that provides data about "Convert Planned Orders" in SAP S/4HANA. It reads from 2 data sources (I_PlannedOrder, I_SDMAreaOfResponsibility) and exposes 35 fields with key field PlannedOrder. It is used in 1 Fiori application: Convert Planned Orders.

Data Sources (2)

SourceAliasJoin Type
I_PlannedOrder I_PlannedOrder from
I_SDMAreaOfResponsibility SDMAreaOfResponsibility inner

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CCONVPLNDORDERS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Convert Planned Orders view
Metadata.allowExtensions true view
Search.searchable true view
VDM.viewType #CONSUMPTION view
OData.publish true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fiori Apps (1)

App IDApp NameTypeDescription
F4171 Convert Planned Orders Transactional With this app you can convert planned orders individual or collective. In addition, you can convert planned orders into partial quantities by generating a production order or a process order for each partial quantity.

Convert Planned Orders

Business Role: Production Planner

With this app you can convert planned orders individual or collective. In addition, you can convert planned orders into partial quantities by generating a production order or a process order for each partial quantity. Planned orders are internal planning elements that are used for planning purposes and do not trigger any procurement themselves. The system only triggers procurement when they are converted into receipt elements.

Fields (35)

KeyFieldSource TableSource FieldDescription
KEY PlannedOrder PlannedOrder Planned Order
Material Material Vehicle Model
MaterialName
BaseUnit BaseUnit Unit of Measure
PlannedTotalQtyInBaseUnit PlannedTotalQtyInBaseUnit Total Quantity
PlannedOrderType PlannedOrderType
BillOfMaterialStatus BillOfMaterialStatus BOM Status
PlannedOrderCategory PlannedOrderCategory
MRPArea MRPArea MRP Area
MRPPlant MRPPlant Plant
ProductionPlant ProductionPlant Prod plnt
MRPController I_PlannedOrder MRPController MRP Controller
MaterialProcurementCategory MaterialProcurementCategory Procurement
PlannedOrderIsFirm PlannedOrderIsFirm Firming Ind.
PlannedOrderOpeningDate PlannedOrderOpeningDate Opening Date
PlndOrderPlannedStartDate PlndOrderPlannedStartDate Order Start
PlndOrderPlannedEndDate PlndOrderPlannedEndDate Order End Date
ProductionVersion ProductionVersion Version ID
ProductionSupervisor ProductionSupervisor Prodn Supervisor
Supplier FixedSupplier Fixed Vendor
PlndOrdProcessingActionControl
PurchasingGroup _PurchasingDocument PurchasingGroup Purchasing Group
_PlannedOrderType _PlannedOrderType
_Material I_PlannedOrder _Material
_MRPArea _MRPArea
_MRPPlant _MRPPlant
_MatlProcurementCategory _MatlProcurementCategory
_PlannedOrderCategory _PlannedOrderCategory
_ProductionPlant _ProductionPlant
_MRPController I_PlannedOrder _MRPController
_Supplier _Supplier
_ProductionVersion _ProductionVersion
_ProductionSupervisor _ProductionSupervisor
_PurchasingGroup _PurchasingDocument _PurchasingGroup
PlannedOrderLongText I_PlannedOrder PlannedOrderLongText Long 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 C_ConvertPlannedOrder.
-- 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: CCONVPLNDORDERS

CREATE VIEW C_ConvertPlannedOrder AS
SELECT
  PlannedOrder,
  Material,
  I_PlannedOrder._Material._Text[1: Language=$session.system_language].MaterialName AS MaterialName,
  BaseUnit,
  PlannedTotalQtyInBaseUnit,
  PlannedOrderType,
  BillOfMaterialStatus,
  PlannedOrderCategory,
  MRPArea,
  MRPPlant,
  ProductionPlant,
  I_PlannedOrder.MRPController AS MRPController,
  MaterialProcurementCategory,
  PlannedOrderIsFirm,
  PlannedOrderOpeningDate,
  PlndOrderPlannedStartDate,
  PlndOrderPlannedEndDate,
  ProductionVersion,
  ProductionSupervisor,
  FixedSupplier AS Supplier,
  cast( '' as abap.char( 2 ) ) AS PlndOrdProcessingActionControl,
  _PurchasingDocument.PurchasingGroup AS PurchasingGroup,
  I_PlannedOrder._Material AS _Material,
  I_PlannedOrder._MRPController AS _MRPController,
  _PurchasingDocument._PurchasingGroup AS _PurchasingGroup,
  I_PlannedOrder.PlannedOrderLongText AS PlannedOrderLongText
FROM I_PlannedOrder
INNER JOIN I_SDMAreaOfResponsibility AS SDMAreaOfResponsibility ON /* join condition not captured in parsed metadata */
;