P_MM_PUR_DomainText
P_MM_PUR_DomainText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SAPDataDictionaryDomain, DomainValue, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | P_MM_PUR_Domain | _DomainFixedValue | $projection.SAPDataDictionaryDomain = _DomainFixedValue.SAPDataDictionaryDomain and $projection.DomainValue = _DomainFixedValue.DomainValue |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PMMPURDOMAINTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SAPDataDictionaryDomain | domname | ||
| KEY | DomainValue | domvalue_l | ||
| KEY | Language | ddlanguage | ||
| DomainText | ddtext | |||
| _DomainFixedValue | _DomainFixedValue |
@AbapCatalog.sqlViewName: 'PMMPURDOMAINTXT'
@AbapCatalog.compiler.compareFilter: true
@VDM.private : true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_MM_PUR_DomainText as select from dd07t
association [1..1] to P_MM_PUR_Domain as _DomainFixedValue on $projection.SAPDataDictionaryDomain = _DomainFixedValue.SAPDataDictionaryDomain
and $projection.DomainValue = _DomainFixedValue.DomainValue
{
// @ObjectModel.foreignKey.association: '_Domain'
key domname as SAPDataDictionaryDomain,
key domvalue_l as DomainValue,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
ddtext as DomainText,
/* Associations */
_DomainFixedValue
}
where
as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"P_MM_PUR_DOMAIN"
],
"BASE":
[],
"VERSION":0
}
}*/
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