A_ProcessOrderComponent
API for Process Order Components
A_ProcessOrderComponent is a Composite CDS View that provides data about "API for Process Order Components" in SAP S/4HANA. It reads from 1 data source (I_MfgOrderOperationComponent) and exposes 47 fields with key fields Reservation, ReservationItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MfgOrderOperationComponent | I_MfgOrderOperationComponent | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | API for Process Order Components | view | |
| VDM.viewType | #COMPOSITE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (47)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Reservation | Reservation | Reservation | |
| KEY | ReservationItem | ReservationItem | Reservation Item | |
| BillOfMaterialItemNumber | BillOfMaterialItemNumber | Item | ||
| BOMItemDescription | BOMItemDescription | BOM Item Text | ||
| Material | Material | Vehicle Model | ||
| Plant | Plant | Valuation Area | ||
| ProductionPlant | ProductionPlant | Prod plnt | ||
| MatlCompRequirementDate | MatlCompRequirementDate | Reqmts date | ||
| BaseUnit | BaseUnit | Unit | ||
| RequiredQuantity | RequiredQuantity | Requirement qty | ||
| WithdrawnQuantity | WithdrawnQuantity | Withdrawn Quantity | ||
| BOMItem | BOMItem | |||
| StorageLocation | StorageLocation | |||
| SupplyArea | SupplyArea | Supply Area | ||
| ManufacturingOrderSequence | ManufacturingOrderSequence | |||
| ManufacturingOrder | ManufacturingOrder | Production Order | ||
| ManufacturingOrderOperation | ManufacturingOrderOperation | Activity | ||
| ManufacturingOrderCategory | ManufacturingOrderCategory | |||
| ManufacturingOrderType | ManufacturingOrderType | |||
| OrderInternalBillOfOperations | OrderInternalBillOfOperations | Order Internal Bill of Operations | ||
| BOMItemText2 | BOMItemText2 | Item Text | ||
| BOMItemCategory | BOMItemCategory | Item Category | ||
| BillOfMaterialCategory | BillOfMaterialCategory | BOM category | ||
| SortField | SortField | Sort Field | ||
| GoodsRecipientName | GoodsRecipientName | Recipient Name | ||
| UnloadingPointName | UnloadingPointName | Unloading Point Name | ||
| Batch | Batch | Lot No. | ||
| BatchSplitType | BatchSplitType | Checkbox | ||
| MaterialCompOriginalQuantity | MaterialCompOriginalQuantity | |||
| MatlCompIsMarkedForBackflush | MatlCompIsMarkedForBackflush | Backflush | ||
| IsBulkMaterialComponent | IsBulkMaterialComponent | Bulk material | ||
| MaterialComponentIsPhantomItem | MaterialComponentIsPhantomItem | Phantom Item | ||
| MaterialCompIsCostRelevant | MaterialCompIsCostRelevant | CostingRelevncy | ||
| ConfirmedAvailableQuantity | ConfirmedAvailableQuantity | Available Quantity | ||
| GoodsMovementType | GoodsMovementType | Movement Type | ||
| MatlCompRequirementTime | MatlCompRequirementTime | |||
| SalesOrder | SalesOrder | SD Document | ||
| SalesOrderItem | SalesOrderItem | Sales Order Item | ||
| ComponentScrapInPercent | ComponentScrapInPercent | Component Scrap | ||
| OperationScrapInPercent | OperationScrapInPercent | Operation Scrap | ||
| QuantityIsFixed | QuantityIsFixed | Qty. is fixed | ||
| IsNetScrap | IsNetScrap | Net Indicator | ||
| ReservationIsFinallyIssued | ReservationIsFinallyIssued | Res Final Issue | ||
| WithdrawnQuantityAmount | WithdrawnQuantityAmount | Withdr. Value | ||
| Currency | Currency | Valuation Crcy | ||
| LeadTimeOffset | LeadTimeOffset | Lead-tm offset | ||
| MaterialGroup | MaterialGroup | Product Group |
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 A_ProcessOrderComponent.
-- 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.
CREATE VIEW A_ProcessOrderComponent AS
SELECT
Reservation,
ReservationItem,
BillOfMaterialItemNumber,
BOMItemDescription,
Material,
Plant,
ProductionPlant,
MatlCompRequirementDate,
BaseUnit,
RequiredQuantity,
WithdrawnQuantity,
BOMItem,
cast(StorageLocation as pph_lgort preserving type ) AS StorageLocation,
SupplyArea,
ManufacturingOrderSequence,
ManufacturingOrder,
ManufacturingOrderOperation,
ManufacturingOrderCategory,
ManufacturingOrderType,
OrderInternalBillOfOperations,
BOMItemText2,
BOMItemCategory,
BillOfMaterialCategory,
SortField,
GoodsRecipientName,
UnloadingPointName,
Batch,
BatchSplitType,
MaterialCompOriginalQuantity,
MatlCompIsMarkedForBackflush,
IsBulkMaterialComponent,
MaterialComponentIsPhantomItem,
MaterialCompIsCostRelevant,
ConfirmedAvailableQuantity,
GoodsMovementType,
MatlCompRequirementTime,
SalesOrder,
SalesOrderItem,
ComponentScrapInPercent,
OperationScrapInPercent,
QuantityIsFixed,
IsNetScrap,
ReservationIsFinallyIssued,
WithdrawnQuantityAmount,
Currency,
LeadTimeOffset,
MaterialGroup
FROM I_MfgOrderOperationComponent
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA