C_InspectionMethodVersion
Inspection Method Version
C_InspectionMethodVersion is a Consumption CDS View that provides data about "Inspection Method Version" in SAP S/4HANA. It reads from 1 data source (I_InspectionMethodVersion) and exposes 8 fields with key fields InspectionMethodPlant, InspectionMethod, InspectionMethodVersion.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InspectionMethodVersion | I_InspectionMethodVersion | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CINSPMETHODVER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Inspection Method Version | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionMethodPlant | I_InspectionMethodVersion | InspectionMethodPlant | |
| KEY | InspectionMethod | I_InspectionMethodVersion | InspectionMethod | |
| KEY | InspectionMethodVersion | I_InspectionMethodVersion | InspectionMethodVersion | Version |
| InspectionMethodText | ||||
| PlantName | Plant | |||
| InspectionMethodValidFromDate | I_InspectionMethodVersion | InspectionMethodValidFromDate | ||
| QltyMstrDataAuthorizationGroup | QltyMstrDataAuthorizationGroup | |||
| InspectionMethodStatus | InspectionMethodStatus |
@AbapCatalog.sqlViewName: 'CINSPMETHODVER'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Inspection Method Version'
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {
dataClass: #MASTER,
sizeCategory: #M, //expected number of rows < 100.000
serviceQuality: #C // includes A,B as well
}
define view C_InspectionMethodVersion
as select from I_InspectionMethodVersion
{
@UI.hidden: true
@ObjectModel.readOnly: true
key I_InspectionMethodVersion.InspectionMethodPlant,
@ObjectModel.text.element: [ 'InspectionMethodText' ]
@UI.lineItem: [{position:20,importance: #HIGH}]
key I_InspectionMethodVersion.InspectionMethod,
@UI.lineItem: [{position:10,importance: #HIGH}]
@EndUserText.label: 'Version'
key I_InspectionMethodVersion.InspectionMethodVersion,
@UI.hidden: true
I_InspectionMethodVersion._InspectionMethodText[1:Language=$session.system_language].InspectionMethodText,
@UI.lineItem: [{position:30,importance: #HIGH}]
@EndUserText.label: 'Plant'
concat(concat(I_InspectionMethodVersion._InspectionMethodPlant.PlantName, '('), concat(I_InspectionMethodVersion.InspectionMethodPlant,')')) as PlantName,
@UI.lineItem: [{position:40,importance: #HIGH}]
I_InspectionMethodVersion.InspectionMethodValidFromDate,
// For authorization check
@Consumption.hidden: true
QltyMstrDataAuthorizationGroup,
@Consumption.hidden: true
InspectionMethodStatus
}
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