C_PCSftyEmanationQtyUnitVH

DDL: C_PCSFTYEMANATIONQTYUNITVH Type: view CONSUMPTION

Value Help for Quantity Unit of Decomposition Energy

C_PCSftyEmanationQtyUnitVH is a Consumption CDS View that provides data about "Value Help for Quantity Unit of Decomposition Energy" in SAP S/4HANA. It reads from 1 data source (I_PCPrptyUoM) and exposes 1 field.

Data Sources (1)

SourceAliasJoin Type
I_PCPrptyUoM I_PCPrptyUoM from

Annotations (14)

NameValueLevelField
EndUserText.label Value Help for Quantity Unit of Decomposition Energy view
AbapCatalog.sqlViewName CSRSSTESTUOMVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey 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 PCPrptyUoM view
Metadata.ignorePropagatedAnnotations true view

Fields (1)

KeyFieldSource TableSource FieldDescription
UnitOfMeasureNameasUnitOfMeasureName
--Label of view
@EndUserText.label: 'Value Help for Quantity Unit of Decomposition Energy'


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

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

  --If it's true, the key fields of the CDS database view are defined as dictated by the addition KEY.
    preserveKey: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: 'PCPrptyUoM'
}

@Metadata.ignorePropagatedAnnotations: true

define view C_PCSftyEmanationQtyUnitVH

  --Select data from system table 'Units of Measuremnet for a Product Compliance Property'
  as select from I_PCPrptyUoM
{

      --Name of Business Object in which a Unit of Measure is used
      @UI.hidden: true
  key PCPrptyUoMBusinessObjectName                                              as PCPrptyUoMBusinessObjectName,

      --Name of Node in which a Unit of Measure is used
      @UI.hidden: true
  key PCPrptyUoMNodeName                                                        as PCPrptyUoMNodeName,

      --Name of Filed in which a Unit of Measure is used
      @UI.hidden: true
  key PCPrptyUoMFieldName                                                       as PCPrptyUoMFieldName,

      --Unit of Measure used in a Product Compliance Property
      @ObjectModel.text.element: 'UnitOfMeasureName'
  key PCPrptyUoM                                                                as PCPrptyUoM,

      --Unit of Measure Name
      @Semantics.text: true      
      _Text[1: Language = $session.system_language ].UnitOfMeasureName as UnitOfMeasureName
}
where
      PCPrptyUoMBusinessObjectName = 'I_PCSFTYPROPERTYTP'
  and PCPrptyUoMNodeName           = 'I_PCSFTYSOLVENTSPRTNTESTTP'
  and PCPrptyUoMFieldName          = 'PCSFTYEMANATIONQTYUNIT'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PCPRPTYUOM",
"I_UNITOFMEASURETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/