I_QUALITYCTRLCHARTTRACKTP

CDS View

Quality Control Chart Track

I_QUALITYCTRLCHARTTRACKTP is a CDS View in S/4HANA. Quality Control Chart Track. It contains 14 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_QualityControlChartTrack view_entity from CONSUMPTION Quality Control Chart Track

Fields (14)

KeyField CDS FieldsUsed in Views
KEY QualityControlChart QualityControlChart 1
KEY QualityControlChartTrack QualityControlChartTrack 1
CtrlChartHasLowerActionLimit CtrlChartHasLowerActionLimit 1
CtrlChartHasLowerWarningLimit CtrlChartHasLowerWarningLimit 1
CtrlChartHasMeanValue CtrlChartHasMeanValue 1
CtrlChartHasUpperActionLimit CtrlChartHasUpperActionLimit 1
CtrlChartHasUpperWarningLimit CtrlChartHasUpperWarningLimit 1
CtrlChartLowerActionLimit CtrlChartLowerActionLimit 1
CtrlChartLowerWarningLimit CtrlChartLowerWarningLimit 1
CtrlChartMeanValue CtrlChartMeanValue 1
CtrlChartUpperActionLimit CtrlChartUpperActionLimit 1
CtrlChartUpperWarningLimit CtrlChartUpperWarningLimit 1
Plant Plant 1
QltyCtrlChartAggrgnCriterion QltyCtrlChartAggrgnCriterion 1
@AbapCatalog.sqlViewName: 'IQLTYCTRLCHTTRTP'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Quality Control Chart Track'

@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

@ObjectModel: {
    usageType: { dataClass: #TRANSACTIONAL, sizeCategory: #L, serviceQuality: #A },
/* Draft 2.0 */
    createEnabled: true,
    updateEnabled: true,
    deleteEnabled: true,
    writeDraftPersistence: 'QLTYCTRLCHTTR_D'
}


define view I_QualityCtrlChartTrackTP
  as select from I_QualityControlChartTrack
  //Association to Quality Control Chart (ROOT node)

  association [1..1] to I_QualityCtrlChartTP as _QualityControlChart on $projection.QualityControlChart = _QualityControlChart.QualityControlChart
{

      @ObjectModel.readOnly: true
  key QualityControlChart,
      @ObjectModel.readOnly:true
  key QualityControlChartTrack,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartUpperActionLimit,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartLowerActionLimit,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartUpperWarningLimit,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartLowerWarningLimit,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartHasUpperActionLimit,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartHasLowerActionLimit,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartHasUpperWarningLimit,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartHasLowerWarningLimit,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartMeanValue,
      @ObjectModel.readOnly: 'EXTERNAL_CALCULATION'
      CtrlChartHasMeanValue,

      /*fields are exposed for DCL */
      @ObjectModel.readOnly:true
      @Consumption.hidden: true
      _QualityControlChart.Plant,
      @ObjectModel.readOnly:true
      @Consumption.hidden: true
      _QualityControlChart.QltyCtrlChartAggrgnCriterion,


      // Associations

      @ObjectModel.association.type: [ #TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT ]
      _QualityControlChart


}