A_InspectionOperation
Inspection Operations
A_InspectionOperation is a Consumption CDS View that provides data about "Inspection Operations" in SAP S/4HANA. It reads from 1 data source (I_InspectionOperation) and exposes 15 fields with key fields InspectionLot, InspPlanOperationInternalID. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InspectionOperation | I_InspectionOperation | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_InspectionLot | _InspectionLot | $projection.InspectionLot = _InspectionLot.InspectionLot |
| [0..1] | A_WorkCenters | _WorkCenter | $projection.WorkCenterInternalID = _WorkCenter.WorkCenterInternalID and _WorkCenter.WorkCenterTypeCode = 'A' |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | AINSPOPER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| EndUserText.label | Inspection Operations | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.createEnabled | false | view | |
| ObjectModel.updateEnabled | false | view | |
| ObjectModel.deleteEnabled | false | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionLot | InspectionLot | ||
| KEY | InspPlanOperationInternalID | InspPlanOperationInternalID | ||
| OrderInternalBillOfOperations | OrderInternalBillOfOperations | |||
| InspectionOperation | InspectionOperation | |||
| InspectionOperationPlant | InspectionOperationPlant | |||
| BillOfOperationsType | BillOfOperationsType | |||
| BOOOperationInternalID | BOOOperationInternalID | |||
| WorkCenterInternalID | WorkCenterInternalID | |||
| StatusObject | StatusObject | |||
| OperationControlProfile | OperationControlProfile | |||
| OperationConfirmation | OperationConfirmation | |||
| InspectionSubSystem | InspectionSubSystem | |||
| OperationText | OperationText | |||
| _InspectionLot | _InspectionLot | |||
| _WorkCenter | _WorkCenter |
@AbapCatalog.sqlViewName: 'AINSPOPER'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@EndUserText.label: 'Inspection Operations'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
sizeCategory: #L,
serviceQuality: #A
},
createEnabled: false,
updateEnabled: false,
deleteEnabled: false
}
define view A_InspectionOperation
as select from I_InspectionOperation
association [1..1] to A_InspectionLot as _InspectionLot on $projection.InspectionLot = _InspectionLot.InspectionLot
association [0..1] to A_WorkCenters as _WorkCenter on $projection.WorkCenterInternalID = _WorkCenter.WorkCenterInternalID
and _WorkCenter.WorkCenterTypeCode = 'A'
{
key InspectionLot,
key InspPlanOperationInternalID,
OrderInternalBillOfOperations,
InspectionOperation,
InspectionOperationPlant,
BillOfOperationsType,
BOOOperationInternalID,
WorkCenterInternalID,
StatusObject,
OperationControlProfile,
OperationConfirmation,
InspectionSubSystem,
OperationText,
_InspectionLot,
_WorkCenter
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSPECTIONOPERATION"
],
"ASSOCIATED":
[
"A_INSPECTIONLOT",
"A_WORKCENTERS"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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