C_MfgOpActyComponentVH
Components
C_MfgOpActyComponentVH is a Consumption CDS View that provides data about "Components" in SAP S/4HANA. It reads from 1 data source (P_MfgOpActyComponent) and exposes 23 fields with key fields OpActyNtwkInstance, OpActyNtwkElement, Reservation, ReservationItem, RecordType. It has 2 associations to related views. Part of development package MPE_EXEC_NON_CONFORMANCE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_MfgOpActyComponent | MfgOpActyComponentVH | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MaterialText | _MaterialText | $projection.Material = _MaterialText.Material and _MaterialText.Language = $session.system_language |
| [1..1] | I_MatlCompAssembleControl | _MatlCompAssembleControl | $projection.MatlCompAssembleControl = _MatlCompAssembleControl.MatlCompAssembleControl |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMFGOPACTYCOMPVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | Material | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| EndUserText.label | Components | view |
Fields (23)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OpActyNtwkInstance | P_MfgOpActyComponent | OpActyNtwkInstance | Instance ID |
| KEY | OpActyNtwkElement | P_MfgOpActyComponent | OpActyNtwkElement | Element Number |
| KEY | Reservation | P_MfgOpActyComponent | Reservation | Reservation |
| KEY | ReservationItem | P_MfgOpActyComponent | ReservationItem | Reservation Item |
| KEY | RecordType | P_MfgOpActyComponent | RecordType | Reservation Record Type |
| KEY | AssemblyShopFloorItem | P_MfgOpActyComponent | AssemblyShopFloorItem | |
| KEY | Material | P_MfgOpActyComponent | Material | Vehicle Model |
| KEY | Plant | P_MfgOpActyComponent | Plant | Valuation Area |
| SerialNumberProfile | MatlPlntCompAssembleControl | SerialNumberProfile | SerialNoProfile | |
| SerialNumberIsRqdForAssembly | MatlPlntCompAssembleControl | SerialNumberIsRqdForAssembly | Serial Number Mgmt Rqt | |
| IsBatchManagementRequired | MatlPlntCompAssembleControl | IsBatchManagementRequired | Batch Mgmt Rqt(Plnt) | |
| MatlCompAssembleControl | MatlPlntCompAssembleControl | MatlCompAssembleControl | ||
| MatlCompInstceAssyIsRequired | P_MfgOpActyComponent | MatlCompInstceAssyIsRequired | Instances Exist | |
| BaseUnit | P_MfgOpActyComponent | BaseUnit | Unit of Measure | |
| EntryUnit | P_MfgOpActyComponent | EntryUnit | Unit of Entry | |
| MfgRefStructureItemDetailUUID | P_MfgOpActyComponent | MfgRefStructureItemDetailUUID | ||
| MfgRefStrucItmDetIsContextual | P_MfgOpActyComponent | MfgRefStrucItmDetIsContextual | ||
| CompIsAssignedToOpActy | ||||
| _MatlCompAssembleControl | _MatlCompAssembleControl | |||
| _Material | P_MfgOpActyComponent | _Material | ||
| _OperationActivityInstance | P_MfgOpActyComponent | _OperationActivityInstance | ||
| _MaterialText | _MaterialText | |||
| _OpActyNtwkInstance | P_MfgOpActyComponent | _OpActyNtwkInstance |
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_MfgOpActyComponentVH.
-- 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: CMFGOPACTYCOMPVH
CREATE VIEW C_MfgOpActyComponentVH AS
SELECT
MfgOpActyComponentVH.OpActyNtwkInstance AS OpActyNtwkInstance,
MfgOpActyComponentVH.OpActyNtwkElement AS OpActyNtwkElement,
MfgOpActyComponentVH.Reservation AS Reservation,
MfgOpActyComponentVH.ReservationItem AS ReservationItem,
MfgOpActyComponentVH.RecordType AS RecordType,
MfgOpActyComponentVH.AssemblyShopFloorItem AS AssemblyShopFloorItem,
MfgOpActyComponentVH.Material AS Material,
MfgOpActyComponentVH.Plant AS Plant,
MatlPlntCompAssembleControl.SerialNumberProfile AS SerialNumberProfile,
MatlPlntCompAssembleControl.SerialNumberIsRqdForAssembly AS SerialNumberIsRqdForAssembly,
MatlPlntCompAssembleControl.IsBatchManagementRequired AS IsBatchManagementRequired,
MatlPlntCompAssembleControl.MatlCompAssembleControl AS MatlCompAssembleControl,
MfgOpActyComponentVH.MatlCompInstceAssyIsRequired AS MatlCompInstceAssyIsRequired,
MfgOpActyComponentVH.BaseUnit AS BaseUnit,
MfgOpActyComponentVH.EntryUnit AS EntryUnit,
MfgOpActyComponentVH.MfgRefStructureItemDetailUUID AS MfgRefStructureItemDetailUUID,
MfgOpActyComponentVH.MfgRefStrucItmDetIsContextual AS MfgRefStrucItmDetIsContextual,
cast('X' as mpe_rtg_assigned_to_oa preserving type) AS CompIsAssignedToOpActy,
MfgOpActyComponentVH._Material AS _Material,
MfgOpActyComponentVH._OperationActivityInstance AS _OperationActivityInstance,
MfgOpActyComponentVH._OpActyNtwkInstance AS _OpActyNtwkInstance
FROM P_MfgOpActyComponent AS MfgOpActyComponentVH
LEFT OUTER JOIN I_MaterialText AS _MaterialText ON Material = _MaterialText.Material AND _MaterialText.Language = $session.system_language -- association [0..1]
LEFT OUTER JOIN I_MatlCompAssembleControl AS _MatlCompAssembleControl ON MatlCompAssembleControl = _MatlCompAssembleControl.MatlCompAssembleControl -- association [1..1]
;
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