P_PCPrptyApplicabiltyNoneText

DDL: P_PCPRPTYAPPLICABILTYNONETEXT Type: view BASIC

P_PCPrptyApplicabiltyNoneText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key field ProdCmplncPhrs. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t PCPrptyApplText from

Associations (1)

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

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PPCPRAPPLNONET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ProdCmplncPhrs view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProdCmplncPhrs dd07t domvalue_l
ddlanguageasLanguage
_Language _Language
@AbapCatalog:
{
  sqlViewName: 'PPCPRAPPLNONET',
  compiler.compareFilter: true
}

// authorization check not required as view only reads domain values

@AccessControl.authorizationCheck: #NOT_REQUIRED

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

@VDM.viewType: #BASIC
@VDM.private: true

@ObjectModel:
{
  --Performance annotation
  usageType:
  {
    dataClass: #META,
    serviceQuality: #B,
    sizeCategory: #S
  },
  --Representative Key
  representativeKey: 'ProdCmplncPhrs'
}

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view P_PCPrptyApplicabiltyNoneText
  --Select data from domain value description table
  as select from dd07t as PCPrptyApplText

  --association to I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Domain Value of Basic Data Status
  key hextobin('00000000000000000000000000000000')     as ProdCmplncPhrsUUID,

  key PCPrptyApplText.domvalue_l                       as ProdCmplncPhrs,

      --Language
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key PCPrptyApplText.ddlanguage                       as Language,

      --language-dependent description of domain value
      @Semantics.text: true
      cast(PCPrptyApplText.ddtext as ehfnd_phrs_text ) as ProdCmplncPhrsText,

      /* Associations */
      _Language

}
where
      PCPrptyApplText.domname  = 'EHFND_APPLICABILTY_NONE'
  and PCPrptyApplText.as4local = 'A'