I_PCPrptyProcgStsT

DDL: I_PCPRPTYPROCGSTST Type: view BASIC

Description of Processing Status

I_PCPrptyProcgStsT is a Basic CDS View that provides data about "Description of Processing Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t PropertyProcgStsText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
EndUserText.label Description of Processing Status view
AbapCatalog.sqlViewName IPCPRPPROCSTATT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey PCPrptyProcgSts view

Fields (2)

KeyFieldSource TableSource FieldDescription
ddtextasPCPrptyProcgStsText
_Language _Language
--Label of view
@EndUserText.label: 'Description of Processing Status'

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

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

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

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

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


@ObjectModel:
{
  --data category
  dataCategory: #TEXT,

  --Performance Annotations
  usageType:
  {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #B
  },

  --Representative Key
  representativeKey: 'PCPrptyProcgSts'
}

define view I_PCPrptyProcgStsT
  --Select data from domain value description table
  as select from dd07t as PropertyProcgStsText

  --Link to the language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Domain Value of Processing Status
  key cast( PropertyProcgStsText.domvalue_l as ehfnd_property_status )  as PCPrptyProcgSts,

      --Language
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast(PropertyProcgStsText.ddlanguage as sylangu preserving type ) as Language,

      --language-dependent description of domain value
      @Semantics.text: true
      PropertyProcgStsText.ddtext                                       as PCPrptyProcgStsText,

      /* Associations */
      _Language
}
where
      PropertyProcgStsText.domname  = 'EHFND_PROPERTY_STATUS'
  and PropertyProcgStsText.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/