P_EHSCmplRqPmtType

DDL: P_EHSCMPLRQPMTTYPE Type: view COMPOSITE

P_EHSCmplRqPmtType is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 4 fields with key fields DomainName, Status, Low. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l FixedValue from

Associations (1)

CardinalityTargetAliasCondition
[0..1] dd07t ValueText FixedValue.domname = ValueText.domname and FixedValue.domvalue_l = ValueText.domvalue_l and FixedValue.as4local = ValueText.as4local

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PENVPMTTY view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey Low view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DomainName dd07l domname
KEY Status dd07l as4local
KEY Low dd07l domvalue_l
ddtextasText
@AbapCatalog:
{
  sqlViewName: 'PENVPMTTY',
  compiler.compareFilter: true
}
@VDM.viewType: #COMPOSITE
@VDM.private: true
@ObjectModel:
{
  usageType:
  {
    dataClass: #MASTER,
    sizeCategory: #XL,
    serviceQuality: #C
  }
  ,representativeKey: 'Low'
}
@AccessControl: {
  authorizationCheck: #NOT_REQUIRED,
  personalData.blocking: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_EHSCmplRqPmtType
  as select from dd07l as FixedValue
  association [0..1] to dd07t as ValueText on  FixedValue.domname    = ValueText.domname
                                           and FixedValue.domvalue_l = ValueText.domvalue_l
                                           and FixedValue.as4local   = ValueText.as4local
{

      @UI.hidden
  key FixedValue.domname    as DomainName,
      @UI.hidden
  key FixedValue.as4local   as Status,

  key FixedValue.domvalue_l as Low,
      @Semantics.text: true -- identifies the text field
      ValueText.ddtext      as Text
}

where
      FixedValue.domname   = 'EHEWA_WSTRM_CHNL_PERMIT_TYPE'
  and FixedValue.as4local  = 'A' --Active
  and ValueText.ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[
"DD07T"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/