I_Inspspecificationfieldctrlex
Inspection Spec. Field Ctrl. Extn.
I_Inspspecificationfieldctrlex is a Composite CDS View that provides data about "Inspection Spec. Field Ctrl. Extn." in SAP S/4HANA. It reads from 1 data source (I_InspSpecificationVersion) and exposes 3 fields with key fields InspectionSpecificationPlant, InspectionSpecification, InspectionSpecificationVersion. Part of development package VDM_QM_PLANNING.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InspSpecificationVersion | I_InspSpecificationVersion | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_ApplicationMode | qbemod |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPSPECFCEX | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Inspection Spec. Field Ctrl. Extn. | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionSpecificationPlant | InspectionSpecificationPlant | ||
| KEY | InspectionSpecification | InspectionSpecification | ||
| KEY | InspectionSpecificationVersion | InspectionSpecificationVersion |
@AbapCatalog.sqlViewName: 'IINSPSPECFCEX'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Inspection Spec. Field Ctrl. Extn.'
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {
dataClass: #MASTER,
sizeCategory: #M, //expected number of rows < 100.000
serviceQuality: #C // includes A,B as well
}
define view I_Inspspecificationfieldctrlex
//P_MODE = R : Read-Only Modus, U: Update Modus, I: Insert
//Output = 0:Hidden, 1:Read-Only, 3:Option, 7:Mandatory
with parameters
P_ApplicationMode : qbemod
as select from I_InspSpecificationVersion
{
key InspectionSpecificationPlant,
key InspectionSpecification,
key InspectionSpecificationVersion,
case :P_ApplicationMode
when 'R' then 1
else 3
end as DummyMeasure
}
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