C_MaintNotifCodeGroupVH

DDL: C_MAINTNOTIFCODEGROUPVH SQL: CMAINTNOTIFCDGRP Type: view CONSUMPTION

Maintenance Notification Code Group

C_MaintNotifCodeGroupVH is a Consumption CDS View that provides data about "Maintenance Notification Code Group" in SAP S/4HANA. It reads from 1 data source (I_InspectionCodeGroup) and exposes 5 fields with key fields InspectionCatalog, InspectionCodeGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InspectionCodeGroup I_InspectionCodeGroup from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Inspectioncodegrouptext _InspectionCodeGroupText _InspectionCodeGroupText.InspectionCatalog = $projection.InspectionCatalog and _InspectionCodeGroupText.InspectionCodeGroup = $projection.InspectionCodeGroup

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CMAINTNOTIFCDGRP view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Maintenance Notification Code Group view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspectionCatalog I_InspectionCodeGroup InspectionCatalog
KEY InspectionCodeGroup I_InspectionCodeGroup InspectionCodeGroup Code Group
CodeGroupStatus I_InspectionCodeGroup CodeGroupStatus
InspSpecAddlCodeGroupText Code Group Text
_InspectionCodeGroupText _InspectionCodeGroupText
@AbapCatalog.sqlViewName: 'CMAINTNOTIFCDGRP'
@VDM.viewType: #CONSUMPTION

@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations: ['_InspectionCodeGroupText']
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
  usageType: {
    serviceQuality: #B,
    sizeCategory: #M,
    dataClass: #CUSTOMIZING }
}
@EndUserText.label: 'Maintenance Notification Code Group'  
@Search.searchable: true
@ObjectModel.dataCategory: #VALUE_HELP 
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
define view C_MaintNotifCodeGroupVH
  as select from I_InspectionCodeGroup
  association [0..*] to I_Inspectioncodegrouptext as _InspectionCodeGroupText on  _InspectionCodeGroupText.InspectionCatalog   = $projection.InspectionCatalog
                                                                              and _InspectionCodeGroupText.InspectionCodeGroup = $projection.InspectionCodeGroup
{

      @UI.lineItem: [{ position: 10 }]
      @Search.defaultSearchElement: true
  key I_InspectionCodeGroup.InspectionCatalog,
      @UI.lineItem: [{ position: 20 }]
      @Search.defaultSearchElement: true
      @Consumption.valueHelpDefinition: [
        { entity:  { name:    'I_InspectionCodeGroupStdVH',
                     element: 'InspectionCodeGroup' },
          additionalBinding: [{ localElement: 'InspectionCatalog',
                                element: 'InspectionCatalog' }]
        }]
      @ObjectModel.text.element: ['InspSpecAddlCodeGroupText']
      @EndUserText.label: 'Code Group'
  key I_InspectionCodeGroup.InspectionCodeGroup,

      @UI.hidden: true
      I_InspectionCodeGroup.CodeGroupStatus,
      @Search.defaultSearchElement: true
      @EndUserText.label: 'Code Group Text'
      _InspectionCodeGroupText[1: Language = $session.system_language ].InspSpecAddlCodeGroupText,
      @Search.defaultSearchElement: true
      _InspectionCodeGroupText

}