I_InspSpecificationFldCtrlCstm

DDL: I_INSPSPECIFICATIONFLDCTRLCSTM SQL: IINSPSPECFCCSTM Type: view COMPOSITE

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)

SourceAliasJoin Type
I_InspSpecificationVersion I_InspSpecificationVersion from

Parameters (1)

NameTypeDefault
P_ApplicationMode qbemod

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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)

 
}