P_MPEInspOpUsageDecision
Usage Decision on Operation Level
P_MPEInspOpUsageDecision is a Composite CDS View that provides data about "Usage Decision on Operation Level" in SAP S/4HANA. It reads from 2 data sources (P_MfgInspOperation, I_InspOperationUsageDecision) and exposes 11 fields with key fields InspectionLot, InspPlanOperationInternalID. Part of development package VDM_QM_INSPECTION.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_MfgInspOperation | inspOp | inner |
| I_InspOperationUsageDecision | UsageDescision | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Usage Decision on Operation Level | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #A | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionLot | I_InspOperationUsageDecision | InspectionLot | |
| KEY | InspPlanOperationInternalID | I_InspOperationUsageDecision | InspPlanOperationInternalID | |
| InspOpUsageDecisionValuation | I_InspOperationUsageDecision | InspOpUsageDecisionValuation | ||
| UsageDecisionCodeGroup | I_InspOperationUsageDecision | UsageDecisionCodeGroup | ||
| UsageDecisionCode | I_InspOperationUsageDecision | UsageDecisionCode | ||
| OrderInternalBillOfOperations | P_MfgInspOperation | OrderInternalBillOfOperations | ||
| Plant | P_MfgInspOperation | Plant | ||
| _InspectionLot | I_InspOperationUsageDecision | _InspectionLot | ||
| _InspectionOperation | I_InspOperationUsageDecision | _InspectionOperation | ||
| _UsageDecisionCodeGroup | I_InspOperationUsageDecision | _UsageDecisionCodeGroup | ||
| _UsageDecisionCode | I_InspOperationUsageDecision | _UsageDecisionCode |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Usage Decision on Operation Level'
@VDM: {
viewType: #COMPOSITE,
private: true
}
@ObjectModel.usageType: { dataClass: #TRANSACTIONAL, sizeCategory: #L, serviceQuality: #A }
define view entity P_MPEInspOpUsageDecision
as select from I_InspOperationUsageDecision as UsageDescision
inner join P_MfgInspOperation as inspOp on UsageDescision.InspectionLot = inspOp.InspectionLot
and UsageDescision.InspPlanOperationInternalID = inspOp.InspPlanOperationInternalID
{
key UsageDescision.InspectionLot,
key UsageDescision.InspPlanOperationInternalID,
UsageDescision.InspOpUsageDecisionValuation,
UsageDescision.UsageDecisionCodeGroup,
UsageDescision.UsageDecisionCode,
inspOp.OrderInternalBillOfOperations,
inspOp.Plant,
// inspOp.OrderOperationInternalID,
// Associations
UsageDescision._InspectionLot,
UsageDescision._InspectionOperation,
UsageDescision._UsageDecisionCodeGroup,
UsageDescision._UsageDecisionCode
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- 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