I_InspSpecificationFldCtrlCstm
Master Insp. Charc Field Control Custom
I_InspSpecificationFldCtrlCstm is a Composite CDS View that provides data about "Master Insp. Charc Field Control Custom" in SAP S/4HANA. It reads from 1 data source (I_InspSpecificationVersion) and exposes 3 fields with key fields InspectionSpecificationPlant, InspectionSpecification, InspectionSpecificationVersion.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_InspSpecificationVersion | I_InspSpecificationVersion | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_ApplicationMode | qbemod |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINSPSPECFCCSTM | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Master Insp. Charc Field Control Custom | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InspectionSpecificationPlant | InspectionSpecificationPlant | ||
| KEY | InspectionSpecification | InspectionSpecification | ||
| KEY | InspectionSpecificationVersion | InspectionSpecificationVersion |
@AbapCatalog.sqlViewName: 'IINSPSPECFCCSTM'
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Master Insp. Charc Field Control Custom' //same as DDL description
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {
dataClass: #MASTER,
sizeCategory: #M, //expected number of rows < 100.000
serviceQuality: #A
}
@Metadata.ignorePropagatedAnnotations: true
define view I_InspSpecificationFldCtrlCstm
//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
// There are no more fields here. The view can be extended by customer with an own extension view.
// This extension view will define fields in the same way than the SAP composite view I_InspSpecificationFieldCtrl
// for field-control of the object master inspection characteristic.
// The view will be selected from the data provider class (DPC) of the OData service. The selected result be mixed up
// with the select from the view I_InspSpecificationFieldCtrl.
// Rules:
// - The name of the field must be exactly the same that the field which shall be controlled.
// - The type of each field is numeric with the possible values 0,1,3,7 (see above)
}
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