C_ChmlCmplncRespUnitDngrsGdsVH

DDL: C_CHMLCMPLNCRESPUNITDNGRSGDSVH Type: view CONSUMPTION Package: EHFND_CNS_CCI

Value Help for Responsible Units for DG

C_ChmlCmplncRespUnitDngrsGdsVH is a Consumption CDS View that provides data about "Value Help for Responsible Units for DG" in SAP S/4HANA. It reads from 1 data source (I_ResponsibleUnitDngrsGds) and exposes 2 fields. Part of development package EHFND_CNS_CCI.

Data Sources (1)

SourceAliasJoin Type
I_ResponsibleUnitDngrsGds ResponsibleUnit from

Annotations (13)

NameValueLevelField
EndUserText.label Value Help for Responsible Units for DG view
AbapCatalog.sqlViewName CCCRUDGVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ResponsibleUnit view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
ResponsibleUnit
ResponsibleUnitNameasResponsibleUnitName
--Label of view
@EndUserText.label: 'Value Help for Responsible Units for DG'
--                  area dangerous goods

@AbapCatalog:
{
  -- SQL view name (16 characters)
  sqlViewName: 'CCCRUDGVH',

  --If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
  compiler.compareFilter: true
}

--Access Control: Authorizations Checks
@AccessControl:
{
  authorizationCheck: #NOT_REQUIRED
}

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

--VDM view type
@VDM.viewType: #CONSUMPTION

@ObjectModel:
{
  dataCategory: #VALUE_HELP,
  resultSet.sizeCategory: #XS,
  
  --Performance Annotations
  usageType:
  {
    dataClass: #CUSTOMIZING,
    sizeCategory: #S,
    serviceQuality: #B
  },

  representativeKey: 'ResponsibleUnit'
}

@Metadata.ignorePropagatedAnnotations: true

define view C_ChmlCmplncRespUnitDngrsGdsVH
  --Select data from customizing view 'Responsible Unit'
  as select from I_ResponsibleUnitDngrsGds as ResponsibleUnit
{
      --Responsible Unit
      @ObjectModel.text.element: 'ResponsibleUnitName'
  key ResponsibleUnit.ResponsibleUnit,

      --Responsible Unit Name
      @Semantics.text: true
      _Text[1: Language = $session.system_language ].ResponsibleUnitName as ResponsibleUnitName
}