P_XFELDDomainText
P_XFELDDomainText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, XFELD.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PXFELDDOMTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | XFELD | |||
| XFELDName | dd07t | ddtext | ||
| _Parent | _Parent |
@AbapCatalog.sqlViewName: 'PXFELDDOMTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #META
}
@VDM.viewType: #BASIC
@VDM.private: true
define view P_XFELDDomainText
as select from dd07t
association to parent P_XFELDDomain as _Parent on $projection.XFELD = _Parent.XFELD
{
@Semantics.language: true
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@ObjectModel.text.element: ['XFELDName']
key cast( dd07t.domvalue_l as xfeld ) as XFELD,
@Semantics.text: true
dd07t.ddtext as XFELDName,
_Parent
}
where
dd07t.domname = 'XFELD'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"P_XFELDDOMAIN"
],
"BASE":
[],
"ANNO_REF":
[],
"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