P_VarConfignValueList

DDL: P_VARCONFIGNVALUELIST SQL: PVARCONFVALLIST Type: view BASIC Package: ODATA_LO_VCHCLF_SIMULATION

Variant Configuration Values List

P_VarConfignValueList is a Basic CDS View that provides data about "Variant Configuration Values List" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key fields SAPDataDictionaryDomain, DomainValue. It has 1 association to related views. Part of development package ODATA_LO_VCHCLF_SIMULATION.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] P_VarConfignValueListText _Text $projection.DomainValue = _Text.DomainValue and $projection.SAPDataDictionaryDomain = _Text.SAPDataDictionaryDomain

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PVARCONFVALLIST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SAPDataDictionaryDomain domname
KEY DomainValue domvalue_l
_Text _Text
@AbapCatalog.sqlViewName: 'PVARCONFVALLIST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC
@VDM.private: true
define view P_VarConfignValueList
  as select from dd07l
  association [0..*] to P_VarConfignValueListText as _Text on  $projection.DomainValue             = _Text.DomainValue
                                                           and $projection.SAPDataDictionaryDomain = _Text.SAPDataDictionaryDomain
{
  key domname     as SAPDataDictionaryDomain,
      @ObjectModel.text.association: '_Text'
  key domvalue_l  as DomainValue,

      _Text
}
where
  as4local = 'A';