C_InspLotForInspSpecRsltRecg
InspSpec Keys with Inspection Lot
C_InspLotForInspSpecRsltRecg is a Consumption CDS View that provides data about "InspSpec Keys with Inspection Lot" in SAP S/4HANA. It reads from 2 data sources (I_InspectionLot, I_InspectionOperation) and exposes 8 fields with key fields InspectionSpecificationPlant, InspectionSpecification, InspectionSpecificationVersion, InspectionLot. It is exposed through 1 OData service (UI_INSPLOT_RSLTRECG). It is used in 1 Fiori application: Record Inspection Results (Version 2). Part of development package ODATA_QM_RSLT_RECG.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_InspectionLot | _InspectionLot | inner |
| I_InspectionOperation | _InspectionOp | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | InspSpec Keys with Inspection Lot | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #CONSUMPTION | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_INSPLOT_RSLTRECG | UI_INSPLOT_RSLTRECG | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F1685A | Record Inspection Results (Version 2) | Transactional | An application to record results for inspection characteristics. |
Record Inspection Results (Version 2)
Business Role: Quality Technician
With the new Record Inspection Results app, you can record and process results for characteristics for one or more inspection lots effectively. You can also use this app to create defects manually for different categories, such as inspection lots, inspection operations, and characteristics.
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionSpecificationPlant | _Characteristic | InspectionSpecificationPlant | |
| KEY | InspectionSpecification | _Characteristic | InspectionSpecification | |
| KEY | InspectionSpecificationVersion | _Characteristic | InspectionSpecificationVersion | |
| KEY | InspectionLot | _Characteristic | InspectionLot | |
| Plant | I_InspectionLot | Plant | ||
| MatlQualityAuthorizationGroup | I_InspectionLot | MatlQualityAuthorizationGroup | ||
| WorkCenter | ||||
| InspectionLotType | I_InspectionLot | InspectionLotType |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'InspSpec Keys with Inspection Lot'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@VDM.viewType: #CONSUMPTION
define view entity C_InspLotForInspSpecRsltRecg
as select distinct from I_InspectionCharacteristic as _Characteristic
inner join I_InspectionLot as _InspectionLot on _Characteristic.InspectionLot = _InspectionLot.InspectionLot
inner join I_InspectionOperation as _InspectionOp on _Characteristic.InspectionLot = _InspectionOp.InspectionLot
and _Characteristic.InspPlanOperationInternalID = _InspectionOp.InspPlanOperationInternalID
{
key _Characteristic.InspectionSpecificationPlant,
key _Characteristic.InspectionSpecification,
key _Characteristic.InspectionSpecificationVersion,
key _Characteristic.InspectionLot,
_InspectionLot.Plant,
_InspectionLot.MatlQualityAuthorizationGroup,
_InspectionOp._WorkCenter.WorkCenter,
_InspectionLot.InspectionLotType
}
where
_InspectionLot.BillOfOperationsType <> 'V'
and _Characteristic.InspectionSpecification <> ' '
and _Characteristic.InspSpecRecordingType <> '*'
and _Characteristic.InspSpecRecordingType <> '-'
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