P_VarConfignValueList
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | P_VarConfignValueListText | _Text | $projection.DomainValue = _Text.DomainValue and $projection.SAPDataDictionaryDomain = _Text.SAPDataDictionaryDomain |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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';
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA